Skip to content

Commit

Permalink
io.js
Browse files Browse the repository at this point in the history
removing dependencies on node
  • Loading branch information
larsthorup committed Jan 16, 2015
1 parent 0aba369 commit 5b0209d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ gulp.task('end2end', function () {
// run
var shell = require('gulp-shell');
gulp.task('run', shell.task(['node src/cli.js']));
gulp.task('run-recreate', shell.task(['node src/cli.js --db-recreate']));
gulp.task('run-demo', shell.task(['node src/cli.js --db-recreate']));

// demo
var webserver = require('gulp-webserver');
Expand Down Expand Up @@ -96,4 +96,4 @@ gulp.task('watch', function () {
});

gulp.task('live', ['watch']);
gulp.task('demo', ['serve-demo', 'run-recreate']);
gulp.task('demo', ['serve-demo', 'run-demo']);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"scripts": {
"-- fast feedback ": "--",
"lint": "node node_modules/gulp/bin/gulp lint",
"lint": "gulp lint",
"unittest": "node node_modules/gulp/bin/gulp test",
"cover": "node node_modules/gulp/bin/gulp cover",
"demotest": "node node_modules/gulp/bin/gulp demotest",
Expand Down

0 comments on commit 5b0209d

Please sign in to comment.