Skip to content

Commit aca8527

Browse files
committedSep 30, 2017
Bump versions + Drop gulp
1 parent 0ea7e54 commit aca8527

File tree

7 files changed

+9407
-63
lines changed

7 files changed

+9407
-63
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
coverage
3+
.nyc_output/

‎gulpfile.js

-41
This file was deleted.

‎package-lock.json

+6,410
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+18-21
Original file line numberDiff line numberDiff line change
@@ -24,44 +24,41 @@
2424
"license": "BSD-2-Clause",
2525
"repository": "yeoman/environment",
2626
"scripts": {
27-
"test": "xo && gulp",
27+
"pretest": "xo",
28+
"test": "nyc mocha",
2829
"doc": "jsdoc -c ./jsdoc.json ./readme.md",
2930
"benchmark": "matcha benchmark/**",
30-
"prepublish": "gulp prepublish"
31+
"prepublish": "nsp check",
32+
"coverage": "nyc report --reporter=text-lcov | coveralls"
3133
},
3234
"dependencies": {
33-
"chalk": "^1.0.0",
34-
"debug": "^2.0.0",
35-
"diff": "^3.2.0",
35+
"chalk": "^2.1.0",
36+
"debug": "^3.1.0",
37+
"diff": "^3.3.1",
3638
"escape-string-regexp": "^1.0.2",
3739
"globby": "^6.1.0",
38-
"grouped-queue": "^0.3.0",
39-
"inquirer": "^3.0.1",
40+
"grouped-queue": "^0.3.3",
41+
"inquirer": "^3.3.0",
4042
"is-scoped": "^1.0.0",
41-
"lodash": "^4.11.1",
42-
"log-symbols": "^1.0.1",
43+
"lodash": "^4.17.4",
44+
"log-symbols": "^2.1.0",
4345
"mem-fs": "^1.1.0",
4446
"text-table": "^0.2.0",
4547
"untildify": "^3.0.2"
4648
},
4749
"devDependencies": {
48-
"coveralls": "^2.11.6",
49-
"gulp": "^3.6.0",
50-
"gulp-coveralls": "^0.1.0",
51-
"gulp-istanbul": "^1.1.1",
52-
"gulp-mocha": "^3.0.1",
53-
"gulp-nsp": "^2.1.0",
54-
"gulp-plumber": "^1.0.0",
55-
"istanbul": "^0.4.1",
56-
"jsdoc": "^3.3.0-alpha9",
50+
"coveralls": "^2.13.3",
51+
"jsdoc": "^3.5.5",
5752
"matcha": "^0.7.0",
58-
"mocha": "^3.2.0",
59-
"shelljs": "^0.7.0",
53+
"mocha": "^3.5.3",
54+
"nsp": "^2.8.1",
55+
"nyc": "^11.2.1",
56+
"shelljs": "^0.7.8",
6057
"sinon": "^2.1.0",
6158
"sinon-test": "^1.0.1",
6259
"xo": "^0.18.1",
6360
"yeoman-assert": "^3.0.0",
64-
"yeoman-generator": "^1.1.0"
61+
"yeoman-generator": "^1.1.1"
6562
},
6663
"xo": {
6764
"space": true,

‎test/fixtures/lookup-project/package-lock.json

+2,965
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎test/fixtures/lookup-project/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "lookup-dummy-env",
33
"dependencies": {
44
"generator-commonjs": "*",
5-
"generator-dummy": "~0.1.0"
5+
"generator-dummy": "~0.1.0",
6+
"generator-jquery": "^1.2.3"
67
}
78
}

‎test/fixtures/lookup-project/subdir/package-lock.json

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.