Skip to content

Commit

Permalink
fix(deps): add missing devDependencies in e2e/ projects (for 4.x) (#356)
Browse files Browse the repository at this point in the history
* chore(deps): add devDeps in babel-in-package

- coffeescript
- typescript

* chore(deps): add missing devDeps in basic

* chore(deps-dev): add missing devDeps in style

* chore(deps): remove vue-jest deps
  • Loading branch information
nogic1008 authored Jun 15, 2021
1 parent 01ccb4b commit 8adc5d0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
5 changes: 3 additions & 2 deletions e2e/__projects__/babel-in-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@vue/test-utils": "^1.1.0",
"coffeescript": "^2.3.2",
"jest": "26.x",
"ts-jest": "^26.3.0",
"vue-jest": "file:../../../"
"typescript": "^3.2.2"
},
"jest": {
"moduleFileExtensions": [
Expand All @@ -28,7 +29,7 @@
],
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.vue$": "file:../../../"
"^.+\\.vue$": "vue-jest"
}
},
"babel": {
Expand Down
7 changes: 6 additions & 1 deletion e2e/__projects__/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"coffeescript": "^2.3.2",
"jade": "^1.11.0",
"jest": "26.x",
"vue-jest": "file:../../../"
"pug": "^3.0.1",
"sass": "^1.23.7",
"ts-jest": "^26.3.0",
"typescript": "^3.2.2"
},
"jest": {
"moduleFileExtensions": [
Expand Down
3 changes: 1 addition & 2 deletions e2e/__projects__/custom-transformers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
"jest": "26.x",
"postcss": "^7.0.13",
"postcss-color-function": "^4.0.1",
"sass": "^1.23.7",
"vue-jest": "file:../../../"
"sass": "^1.23.7"
},
"jest": {
"moduleFileExtensions": [
Expand Down
6 changes: 4 additions & 2 deletions e2e/__projects__/style/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"jest": "26.x",
"@vue/test-utils": "^1.1.0",
"jest": "26.x",
"less": "^3.9.0",
"postcss": "^7.0.13",
"sass": "^1.23.7"
"sass": "^1.23.7",
"stylus": "^0.54.5"
},
"jest": {
"moduleFileExtensions": [
Expand Down

0 comments on commit 8adc5d0

Please sign in to comment.