Skip to content

Commit 57896ee

Browse files
committed
build(deps): update tsup from 8.3.0 to 8.5.1
Update tsup dependency to version 8.5.1 to get latest features and improvements. 升级 tsup 依赖到 8.5.1 版本以获取最新功能和改进。 Change-Id: I5e660e37eee0e8b6b5177eb81b5b08ee3910cb48 Signed-off-by: OhYee <oyohyee@oyohyee.com>
1 parent e0d1c0b commit 57896ee

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: make coverage
3636

3737
- name: Build
38-
run: npm run build
38+
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build
3939

4040
coverage:
4141
runs-on: ubuntu-latest

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
npm install
142142
143143
- name: Build
144-
run: npm run build
144+
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build
145145

146146
- name: Publish test package (Trusted Publishers - no token needed)
147147
run: |
@@ -290,7 +290,7 @@ jobs:
290290
npm install
291291
292292
- name: Build
293-
run: npm run build
293+
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build
294294

295295
- name: Publish to npm (Trusted Publishers - no token needed)
296296
run: |
@@ -394,7 +394,7 @@ jobs:
394394
npm install
395395
396396
- name: Build
397-
run: npm run build
397+
run: NODE_OPTIONS=--max-old-space-size=4096 npm run build
398398

399399
- name: Publish test package (Trusted Publishers - no token needed)
400400
run: |
@@ -408,7 +408,7 @@ jobs:
408408
rm -f /home/runner/work/_temp/.npmrc
409409
410410
# Publish using Trusted Publishers (OIDC)
411-
npm publish --tag test --access public --provenance
411+
NODE_OPTIONS=--max-old-space-size=4096 npm publish --tag test --access public --provenance
412412
env:
413413
# Clear the environment variables that might interfere with OIDC
414414
NPM_CONFIG_USERCONFIG: ''

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"playwright": "^1.57.0",
144144
"prettier": "^3.8.1",
145145
"ts-jest": "^29.2.0",
146-
"tsup": "^8.3.0",
146+
"tsup": "^8.5.1",
147147
"tsx": "^4.19.0",
148148
"typescript": "^5.4.0",
149149
"yaml": "^2.7.0"

0 commit comments

Comments
 (0)