Skip to content

Commit df414e6

Browse files
committed
chore: rebase against origin
2 parents fb98933 + 82a7dec commit df414e6

126 files changed

Lines changed: 4272 additions & 2185 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ test_script:
2222
- node --version
2323
- npm --version
2424
- which npm
25+
- npm run appveyor:build
2526
- npm run appveyor:lint
2627
- npm run appveyor:test
2728

.eslintignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
**/__testfixtures__/*
22
coverage
3-
test
43
docs
5-
node_modules
4+
node_modules
5+
test/binCases/errors/parse/index.js
6+
test/**/bundle.js
7+
test/**/*.bundle.js
8+
test/**/null.js
9+
test/**/main.js
10+
test/**/cliEntry.js
11+
test/**/foo.js

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A clear and concise description of what you expected to happen.
2525
**Screenshots**
2626
If applicable, add screenshots to help explain your problem.
2727

28-
**Please paste the results of `webpack-cli info` here, and mention other relevant information*
28+
**Please paste the results of `webpack-cli info` here, and mention other relevant information**
2929

3030
**Additional context**
3131
Add any other context about the problem here like linking to an similar issue you might think is the cause.

package-lock.json

Lines changed: 1234 additions & 757 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"bin"
2626
],
2727
"scripts": {
28-
"appveyor:lint": "lerna bootstrap && npm run lint",
28+
"appveyor:build": "lerna bootstrap && npm run build",
29+
"appveyor:lint": "npm run lint && npm run tslint",
2930
"appveyor:test": "npm run test",
3031
"bootstrap": "npm run clean:all && npm install && lerna bootstrap",
3132
"build": "tsc",
@@ -35,13 +36,13 @@
3536
"format": "prettier-eslint ./bin/*.js ./test/**/*.js ./packages/**/*.js --write",
3637
"jsdoc": "jsdoc -c jsdoc.json -r -d docs",
3738
"lint:codeOnly": "eslint \"{bin}/**/!(__testfixtures__)/*.js\" \"{bin}/**.js\"",
38-
"lint": "eslint \"./bin/*.js\" \"./test/**/*.js\" \"{packages}/**/!(node_modules)/*.test.js\"",
39+
"lint": "eslint \"./bin/*.js\" \"./test/**/*.js\" \"packages/**/!(node_modules)/*.test.js\"",
3940
"precommit": "lint-staged",
40-
"pretest": "npm run lint && npm run build && npm run tslint",
41+
"pretest": "npm run build && npm run lint && npm run tslint",
4142
"reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov",
4243
"test": "nyc jest",
43-
"travis:integration": "npm run test && npm run reportCoverage",
44-
"travis:lint": "lerna bootstrap && npm run lint && npm run bundlesize",
44+
"travis:integration": "npm run build && npm run test && npm run reportCoverage",
45+
"travis:lint": "lerna bootstrap && npm run build && npm run lint && npm run tslint && npm run bundlesize",
4546
"tslint": "tslint -c tslint.json \"packages/**/*.ts\"",
4647
"watch": "tsc -w"
4748
},
@@ -102,7 +103,7 @@
102103
"loader-utils": "^1.1.0",
103104
"supports-color": "^5.4.0",
104105
"v8-compile-cache": "^2.0.0",
105-
"yargs": "^11.1.0"
106+
"yargs": "^12.0.1"
106107
},
107108
"peerDependencies": {
108109
"webpack": "^4.x.x"
@@ -120,7 +121,7 @@
120121
"conventional-changelog-cli": "^2.0.0",
121122
"conventional-changelog-lint-config-cz": "^0.3.0",
122123
"cz-customizable": "^5.2.0",
123-
"eslint": "^4.19.1",
124+
"eslint": "^5.0.1",
124125
"eslint-plugin-node": "^6.0.1",
125126
"husky": "^0.14.3",
126127
"jest": "^22.4.4",

packages/add/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generate-loader/package-lock.json

Lines changed: 3 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generate-plugin/package-lock.json

Lines changed: 3 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/generators/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.js
2+
**/*.js
3+
!*.test.js
4+
!/**/*.test.js

packages/generators/.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
**/*.ts
2+
*.ts
13
*.test.*
4+
tsconfig.json

0 commit comments

Comments
 (0)