Skip to content

Commit

Permalink
fix: 修复2.8分支的test项目中的依赖基础库版本校验失败问题
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackgan3 committed Dec 18, 2023
1 parent 75b92c7 commit 5993189
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: install deps
if: steps.cache.outputs.cache-hit != 'true'
run: npm i && npm i --prefix test/e2e/miniprogram-project && npm i --prefix test/e2e/plugin-project && npx lerna bootstrap --no-ci
run: npm i && npm ci --prefix test/e2e/miniprogram-project && npm ci --prefix test/e2e/plugin-project && npx lerna bootstrap --no-ci

- name: copy-webpack-plugin
run: npm run copyPlugin --prefix test/e2e/miniprogram-project && npm run copyPlugin --prefix test/e2e/plugin-project
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/miniprogram-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"author": "xuegan <[email protected]>",
"license": "ISC",
"dependencies": {
"@mpxjs/api-proxy": "^2.7.1",
"@mpxjs/api-proxy": "^2.8.63",
"@mpxjs/core": "^2.8.62",
"vue": "^2.6.10",
"vue-i18n": "^8.15.3",
"@mpxjs/core": "^2.7.2"
"vue-i18n": "^8.15.3"
},
"browserslist": [
"ios >= 9",
Expand All @@ -39,7 +39,7 @@
"@babel/runtime-corejs3": "^7.10.4",
"@mpxjs/miniprogram-simulate": "1.4.9",
"@mpxjs/mpx-jest": "0.0.27",
"@mpxjs/webpack-plugin": "^2.7.2",
"@mpxjs/webpack-plugin": "^2.8.64",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.0.1",
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/miniprogram-wxss-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"author": "octoberluobin <[email protected]>",
"license": "ISC",
"dependencies": {
"@mpxjs/api-proxy": "^2.7.1",
"@mpxjs/core": "^2.7.2",
"@mpxjs/api-proxy": "^2.8.63",
"@mpxjs/core": "^2.8.62",
"vue": "^2.6.10",
"vue-i18n": "^8.15.3"
},
Expand All @@ -41,7 +41,7 @@
"@babel/runtime-corejs3": "^7.10.4",
"@mpxjs/miniprogram-simulate": "1.4.9",
"@mpxjs/mpx-jest": "0.0.27",
"@mpxjs/webpack-plugin": "^2.7.55",
"@mpxjs/webpack-plugin": "^2.8.64",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.0.1",
Expand Down
6 changes: 3 additions & 3 deletions test/e2e/plugin-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"author": "xuegan <[email protected]>",
"license": "ISC",
"dependencies": {
"@mpxjs/api-proxy": "^2.7.1",
"@mpxjs/core": "^2.7.2",
"@mpxjs/api-proxy": "^2.8.63",
"@mpxjs/core": "^2.8.62",
"@mpxjs/store": "^2.8.15",
"vue": "^2.6.10",
"vue-i18n": "^8.15.3"
Expand All @@ -41,7 +41,7 @@
"@babel/runtime-corejs3": "^7.10.4",
"@mpxjs/miniprogram-simulate": "^1.4.17",
"@mpxjs/mpx-jest": "0.0.27",
"@mpxjs/webpack-plugin": "^2.7.2",
"@mpxjs/webpack-plugin": "^2.8.64",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^6.3.1",
Expand Down

0 comments on commit 5993189

Please sign in to comment.