Skip to content

Commit c1d9751

Browse files
authoredFeb 1, 2025··
chore: simplify e2e utils by removing build step (#3301)
1 parent 74afefe commit c1d9751

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed
 

‎e2e/e2e-utils/package.json

+2-13
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,12 @@
44
"scripts": {
55
"clean": "rimraf ./dist && rimraf ./coverage",
66
"test:eslint": "eslint ./src",
7-
"test:unit": "exit 0; vitest --typecheck",
8-
"build": "vite build && tsc --noEmit"
7+
"test:unit": "exit 0; vitest --typecheck"
98
},
109
"type": "module",
11-
"types": "dist/esm/index.d.ts",
12-
"main": "dist/cjs/index.cjs",
13-
"module": "dist/esm/index.js",
1410
"exports": {
1511
".": {
16-
"import": {
17-
"types": "./dist/esm/index.d.ts",
18-
"default": "./dist/esm/index.js"
19-
},
20-
"require": {
21-
"types": "./dist/cjs/index.d.cts",
22-
"default": "./dist/cjs/index.cjs"
23-
}
12+
"import": "./src/index.ts"
2413
},
2514
"./package.json": "./package.json"
2615
},

0 commit comments

Comments
 (0)
Please sign in to comment.