Skip to content

Commit 6e8cbd0

Browse files
committed
chore: fix
1 parent d560ed4 commit 6e8cbd0

File tree

2 files changed

+5
-21
lines changed

2 files changed

+5
-21
lines changed

.github/workflows/CI.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
run: pnpm config set supportedArchitectures.cpu "ia32"
132132
shell: bash
133133
- name: Install dependencies
134-
run: npm install -g [email protected] && pnpm i --frozen-lockfile
134+
run: npm install -g [email protected] && pnpm install --no-frozen-lockfile
135135

136136
- name: Setup node x86
137137
uses: actions/setup-node@v3
@@ -227,7 +227,7 @@ jobs:
227227
node-version: ${{ matrix.node }}
228228
check-latest: true
229229
- name: Install dependencies
230-
run: npm install -g [email protected] && pnpm i --frozen-lockfile
230+
run: npm install -g [email protected] && pnpm install --no-frozen-lockfile
231231

232232
- name: Download artifacts
233233
uses: actions/download-artifact@v3
@@ -258,7 +258,7 @@ jobs:
258258
node-version: ${{ matrix.node }}
259259
check-latest: true
260260
- name: Install dependencies
261-
run: npm install -g [email protected] && pnpm i --frozen-lockfile
261+
run: npm install -g [email protected] && pnpm install --no-frozen-lockfile
262262

263263
- name: Download artifacts
264264
uses: actions/download-artifact@v3
@@ -432,7 +432,7 @@ jobs:
432432
node-version: 18
433433
check-latest: true
434434
- name: Install dependencies
435-
run: npm install -g [email protected] && pnpm i --frozen-lockfile
435+
run: npm install -g [email protected] && pnpm install --no-frozen-lockfile
436436
- name: Download macOS x64 artifact
437437
uses: actions/download-artifact@v3
438438
with:
@@ -471,7 +471,7 @@ jobs:
471471
node-version: 18
472472
check-latest: true
473473
- name: Install dependencies
474-
run: npm install -g [email protected] && pnpm i --frozen-lockfile
474+
run: npm install -g [email protected] && pnpm install --no-frozen-lockfile
475475

476476
- name: Download all artifacts
477477
uses: actions/download-artifact@v3

package.json

-16
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,5 @@
4747
},
4848
"dependencies": {
4949
"@changesets/cli": "^2.27.1"
50-
},
51-
"optionalDependencies": {
52-
"@farmfe/magic-string-win32-x64-msvc": "0.0.0",
53-
"@farmfe/magic-string-darwin-x64": "0.0.0",
54-
"@farmfe/magic-string-linux-x64-gnu": "0.0.0",
55-
"@farmfe/magic-string-darwin-arm64": "0.0.0",
56-
"@farmfe/magic-string-android-arm64": "0.0.0",
57-
"@farmfe/magic-string-linux-arm64-gnu": "0.0.0",
58-
"@farmfe/magic-string-linux-arm64-musl": "0.0.0",
59-
"@farmfe/magic-string-win32-arm64-msvc": "0.0.0",
60-
"@farmfe/magic-string-linux-arm-gnueabihf": "0.0.0",
61-
"@farmfe/magic-string-linux-x64-musl": "0.0.0",
62-
"@farmfe/magic-string-freebsd-x64": "0.0.0",
63-
"@farmfe/magic-string-win32-ia32-msvc": "0.0.0",
64-
"@farmfe/magic-string-android-arm-eabi": "0.0.0",
65-
"@farmfe/magic-string-darwin-universal": "0.0.0"
6650
}
6751
}

0 commit comments

Comments
 (0)