Skip to content

Commit f323e2a

Browse files
committed
fix(v1-endpoint): Build and test workspace configuration were corrected
1 parent 364ca9f commit f323e2a

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

packages/v1-endpoint/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@
9696
"date-fns": "^4.1.0",
9797
"lodash.isequal": "^4.5.0",
9898
"playwright": "1.58.2",
99+
"vite": "^7.2.7",
100+
"vite-plugin-dts": "^4.5.4",
99101
"vitest": "4.0.15"
100102
},
101103
"publishConfig": {

packages/v1-endpoint/vitest.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import { defineConfig } from 'vitest/config'
33
export default defineConfig({
44
test: {
55
environment: 'jsdom',
6-
exclude: ['packages/v1-endpoint/tests/**/*.e2e.ts'],
6+
exclude: [
7+
'**/node_modules/**',
8+
'**/dist/**',
9+
'packages/v1-endpoint/tests/**/*.e2e.ts',
10+
],
711
},
812
})

yarn.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,6 +1283,8 @@ __metadata:
12831283
date-fns: "npm:^4.1.0"
12841284
lodash.isequal: "npm:^4.5.0"
12851285
playwright: "npm:1.58.2"
1286+
vite: "npm:^7.2.7"
1287+
vite-plugin-dts: "npm:^4.5.4"
12861288
vitest: "npm:4.0.15"
12871289
peerDependencies:
12881290
"@remote-ui/rpc": ^1.4

0 commit comments

Comments
 (0)