Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand All @@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/realease-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: echo "RELEASE_TAG=beta" >> $GITHUB_ENV

- name: Install pnpm
run: npm install -g pnpm@v9
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Install dependencies
if: env.ABORT != 'true'
run: pnpm install --no-frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Run Build
if: env.ABORT != 'true'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm install -g pnpm@v9
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --no-frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Run Build
if: env.ABORT != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-h5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-taro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install pnpm
run: npm i -g pnpm
run: npm i -g pnpm@10

- uses: actions/setup-node@v4
with:
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"pnpm": ">=10.0.0"
},
"scripts": {
"add": "node scripts/create-component-mode.js && npm run prepare",
"add:taro:config": "node scripts/taro/generate-taro-route.js",
Expand Down