Skip to content

Commit 5d26805

Browse files
Fix clean script in query-devtools
1 parent 5c92a85 commit 5d26805

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

packages/query-devtools/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@
2929
"./package.json": "./package.json"
3030
},
3131
"scripts": {
32-
"clean": "rimraf ./build && rimraf ./coverage",
32+
"clean": "rimraf ./dist && rimraf ./coverage",
3333
"test:eslint": "eslint --ext .ts,.tsx ./src",
3434
"test:types": "tsc --noEmit",
3535
"test:lib": "vitest run --coverage",
3636
"test:lib:dev": "pnpm run test:lib --watch",
3737
"test:build": "publint --strict",
38-
"build": "pnpm build:rollup",
39-
"build:rollup": "rollup --config rollup.config.js"
38+
"build": "rollup --config rollup.config.js"
4039
},
4140
"files": [
4241
"dist",

packages/query-devtools/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"compilerOptions": {
44
"jsx": "preserve",
55
"jsxImportSource": "solid-js",
6-
"outDir": "./build/lib",
6+
"outDir": "./dist",
77
"types": ["vitest/globals"]
88
},
99
"include": ["src"]

0 commit comments

Comments
 (0)