Skip to content

Commit

Permalink
Try using local gulp
Browse files Browse the repository at this point in the history
  • Loading branch information
sdesai committed Mar 20, 2015
1 parent 301fb74 commit 696adc8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ branches:
only:
- master

before_install: npm install -g linklocal; npm install -g gulp;
# travic runs 'npm install' by default, as the install step
before_install: npm install -g linklocal;
# travis runs 'npm install' by default, as the install step

before_script: linklocal -r; gulp build.node;
# travic runs 'npm test' by default, as the script step
before_script: linklocal -r; npm run dist;
# travis runs 'npm test' by default, as the script step


notifications:
email:
[email protected]
[email protected]
1 change: 1 addition & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ gulp.task('doc-d', ['clean.doc', 'doc-p'], function() {
});

gulp.task('default', ['build']);
gulp.task('build', ['build.all']);
gulp.task('alt', ['build.alt']);
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"version": "0.0.3",
"main": "dist/Falcor.js",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha ./test/index"
"test": "./node_modules/mocha/bin/_mocha ./test/index",
"dist": "./node_modules/gulp/bin/gulp.js default"
},
"files": [
"build",
Expand Down

0 comments on commit 696adc8

Please sign in to comment.