Extracts only the dist files from packages
$ npm install distiller --global$ distiller -h
Usage
$ distiller [options] <package>
Options
-l, --list lists locally defined custom packages
-o, --output-dir destination for output
-t, --temp-dir destination for temporary build files
-k, --keep-temp do not remove the temporary directory
-h, --help shows usage help
- Use
DISTILLER_DISTto override the default output location$HOME/.distiller/dist - Use
DISTILLER_TEMPto override the default temporary build location$HOME/.distiller/temp- the temp directory is removed after every execution
$ distiller react
Distilled into: ~/.distiller/dist/react
$ tree ~/.distiller/dist/react
~/.distiller/dist/react/
├── react.js
├── react-with-addons.js
├── react-with-addons.min.js
└── react.min.js
var distill = require('distiller').distill;
distill({
package: 'react', // can be any NPM discoverable package
outputDir: '/Users/hotdog/Desktop/react-dist/', // defaults to $HOME/.distiller/dist/${package}
tempDir: '/Users/hotdog/.temp-folder-for-distiller' // defaults to $HOME/.distiller/temp
}, error => {
if (error) {
return console.log('error', error);
}
console.log('carry on');
});-
Required Type
object -
Required Type
stringThe official NPM package name.
-
Type:
stringDefault:
$HOME/.distiller/dist/${package}The absolute path to place output files.
-
Type:
stringDefault:
$HOME/.distiller/temp/distilled-${package}The absolute path to use for building the package.
-
Type:
booleanDefault:
falseCan prevent the
tempDirfrom being removed after execution.
- Document API
- Document custom package creation
- More test coverage
- Allow multiple packages on CLI
- Consider other sources, e.g. bower
ISC © Buster Collings