Skip to content

Commit

Permalink
Replace gulp with raw Mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Sep 12, 2017
1 parent 6effbfe commit 4b1b841
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 49 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
coverage
.nyc_output
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ node_js:
- 4
- 6
- node
after_success: ./deploy.sh
after_success:
- npm run coverage
- ./deploy.sh
env:
global:
- COMMIT_AUTHOR_EMAIL: yeoman@yeoman.io
Expand Down
41 changes: 0 additions & 41 deletions gulpfile.js

This file was deleted.

12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
},
"scripts": {
"pretest": "xo",
"test": "gulp",
"test": "nyc mocha",
"doc": "jsdoc -c jsdoc.json",
"prepublish": "nsp check"
"prepublish": "nsp check",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"lib"
Expand Down Expand Up @@ -60,16 +61,13 @@
"yeoman-environment": "^1.1.0"
},
"devDependencies": {
"gulp": "^3.6.0",
"gulp-coveralls": "^0.1.0",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^3.0.1",
"gulp-plumber": "^1.0.0",
"coveralls": "^2.13.1",
"inquirer": "^3.0.1",
"jsdoc": "^3.3.0-beta1",
"mockery": "^2.0.0",
"nock": "^9.0.5",
"nsp": "^2.8.0",
"nyc": "^11.2.1",
"proxyquire": "^1.0.0",
"sinon": "^2.1.0",
"tui-jsdoc-template": "^1.0.4",
Expand Down

0 comments on commit 4b1b841

Please sign in to comment.