Skip to content

Commit

Permalink
update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
YuChenLi committed Dec 4, 2017
1 parent 9b96e1f commit b8b32e8
Show file tree
Hide file tree
Showing 20 changed files with 52 additions and 2,028 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
.DS_Store
package-lock.json
.coveralls.yml
/coverage
node_modules/
coverage/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
*.suo
*.ntvs*
Expand Down
24 changes: 24 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.DS_Store

test/
node_modules/
mochawesome-report/
coverage/
test/
build/
docs/
.idea/

.babelrc
.eslintrc.js
mocha-webpack.opts
.eslintrc.js

npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: node_js
install:
- npm install
node_js:
- "8.9.0"
script:
- npm run test
2 changes: 1 addition & 1 deletion build/webpack.test.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
externals: [nodeExternals()], // in order to ignore all modules in node_modules folder
resolve: {
alias: {
"async-task-manager" : path.resolve(__dirname, '../src/')
'async-task-manager' : path.resolve(__dirname, '../src/')
}
}
};
5 changes: 5 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
var gulp = require('gulp');
var coveralls = require('gulp-coveralls');
gulp.task('coveralls', function () {
return gulp.src('./coverage/lcov.info').pipe(coveralls());
});
Binary file removed mochawesome-report/assets/MaterialIcons-Regular.woff
Binary file not shown.
Binary file not shown.
4 changes: 0 additions & 4 deletions mochawesome-report/assets/app.css

This file was deleted.

45 changes: 0 additions & 45 deletions mochawesome-report/assets/app.js

This file was deleted.

Binary file removed mochawesome-report/assets/roboto-light-webfont.woff
Binary file not shown.
Binary file removed mochawesome-report/assets/roboto-light-webfont.woff2
Binary file not shown.
Binary file removed mochawesome-report/assets/roboto-medium-webfont.woff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
985 changes: 0 additions & 985 deletions mochawesome-report/mochawesome.html

This file was deleted.

0 comments on commit b8b32e8

Please sign in to comment.