Skip to content

Commit d276554

Browse files
authored
fix: deps
1 parent a0dfd0f commit d276554

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Production build test
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
faency:
8+
name: Production build test
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
14+
- name: enable corepack
15+
run: corepack enable
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version-file: .nvmrc
21+
cache: yarn
22+
23+
- name: Install production dependencies
24+
run: yarn workspaces focus --all --production
25+
26+
- name: Patch
27+
run: yarn patch-package
28+
29+
- name: Build
30+
run: yarn build

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@
124124
"tinycolor2": "^1.4.2",
125125
"typescript": "^5.8.3",
126126
"use-debounce": "9.0.2",
127-
"vite": "^5.1.5"
127+
"vite": "^5.1.5",
128+
"vite-plugin-dts": "^4.5.4"
128129
},
129130
"devDependencies": {
130131
"@eslint/compat": "^1.1.1",
@@ -144,7 +145,6 @@
144145
"jest": "^27.5.1",
145146
"jest-axe": "^6.0.0",
146147
"typescript-eslint": "^8.11.0",
147-
"vite-plugin-dts": "^4.5.4",
148148
"webpack": "^5.94.0"
149149
},
150150
"publishConfig": {

0 commit comments

Comments
 (0)