UNPKG

inklecate

Version:

A tiny wrapper around the desktop executables for ink's command-line Ink language compiler.

11 lines (9 loc) 228 B
const getBinDir = require('./getBinDir'); const { join, } = require('path'); module.exports = () => ( process.platform === 'darwin' ? join(getBinDir(), 'inklecate') : join(getBinDir(), 'inklecate.exe') );