Browse Source

add npm install hook for browserify

patch-2
Manuel Araoz 10 years ago
parent
commit
433cd81543
  1. 4
      gulpfile.js
  2. 3
      package.json

4
gulpfile.js

@ -102,6 +102,10 @@ gulp.task('browser-test', function() {
]);
});
gulp.task('browser-all', function(callback) {
runSequence(['browser'], ['browser-test'], callback);
});
gulp.task('karma', testKarma);
gulp.task('minify', function() {

3
package.json

@ -8,7 +8,8 @@
"lint": "gulp lint",
"test": "gulp test-all",
"coverage": "gulp coverage",
"build": "gulp"
"build": "gulp",
"postinstall": "gulp browser-all"
},
"contributors": [
{

Loading…
Cancel
Save