1.1.5 • Published 7 years ago

scriptup v1.1.5

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

Install: npm install -g scriptup

Examples:

/**
* Main command: scriptup|sup <script_name> [options] [cmds...]
*
* Examples: */

// Create a script 'start' which runs index.js w/ node

sup start 'node index.js'

// Create a set of NPM scripts

[
 'prebuild',
 'build',
 'postbuild'
]

//    to

[
 'remove the existing folder `./dist` if there is one',
 'run webpack using a config file at path `webpack.config.js`',
 'run the file at path `dist/index.js` w/ node'
]

sup build 'webpack --config webpack.config.js' -e 'rm -rf ./dist' -o 'node dist/index.js'

// Remove a script 'build'

sup -r build

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago