Used in pnpm for command line application support
The cmd-shim used in pnpm to create executable scripts.
npm install --save @zkochan/cmd-shimCreate a cmd shim at to for the command line program at from.
e.g.
const cmdShim = require('@zkochan/cmd-shim')
cmdShim(__dirname + '/cli.js', '/usr/bin/command-name')
.catch(err => console.error(err))The same as above, but will just continue if the file does not exist.
opts.preserveSymlinks- Boolean - if true,--preserve-symlinksis added to the options passed to NodeJS.opts.nodePath- String - sets the NODE_PATH env variable.opts.createCmdFile- Boolean - istrueon Windows by default. If true, creates a cmd file.opts.createPwshFile- Boolean - istrueby default. If true, creates a powershell file.opts.progArgs- String - optional arguments that will be prepend to any CLI arguments
const cmdShim = require('@zkochan/cmd-shim')
cmdShim(__dirname + '/cli.js', '/usr/bin/command-name', { preserveSymlinks: true })
.catch(err => console.error(err))