Skip to content

Commit

Permalink
Adds travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoElias committed Feb 13, 2018
1 parent e000bf8 commit 0a324e0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
node_js:
- "8"
before_install:
- npm i -g npm
install:
- npm install
before_script:
- npm install -g gulp-cli
script: gulp
cache:
directories:
- "node_modules"
Empty file removed circle.yml
Empty file.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,5 @@ gulp.task('watch', gulp.series('js', () => {
gulp.watch(['./src/**/*'], gulp.series('js'));
}));

gulp.task('default', gulp.parallel('eslint', 'build'));
gulp.task('default', gulp.parallel('eslint', 'test'));

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holonet/holonet",
"version": "1.0.0",
"version": "1.0.0-alpha.0",
"description": "Decentralized WebVR metaverse where each user is the owner of their data",
"main": "build/holonet.umd.js",
"module": "build/holonet.js",
Expand Down

0 comments on commit 0a324e0

Please sign in to comment.