srod/node-minify

How To Use Run A Config File?

pihish opened this issue · 0 comments

How do you run a config file that looks like:

const minify = require('node-minify');

minify({
	compressor: 'uglifyjs',
	input: './project/js/vendor/**/*.js',
	output: './project/js/vendor.js',
	callback: function(err, min){}
});

from the command line?