pulsar/script/grunt
Jussi Kalliokoski 9944e660ed 🎨 💚 Fixed the test script.
Also removed duplicated logic to run grunt.
2015-04-04 01:11:06 +03:00

7 lines
171 B
JavaScript
Executable File

#!/usr/bin/env node
var runGrunt = require('./utils/run-grunt.js');
// build/node_modules/.bin/grunt "$@"
var args = process.argv.slice(2);
runGrunt(args, process.exit);