Skip to content

Commit

Permalink
Fix clean script in query-devtools
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jun 12, 2023
1 parent 5c92a85 commit 5d26805
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions packages/query-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@
"./package.json": "./package.json"
},
"scripts": {
"clean": "rimraf ./build && rimraf ./coverage",
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types": "tsc --noEmit",
"test:lib": "vitest run --coverage",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "pnpm build:rollup",
"build:rollup": "rollup --config rollup.config.js"
"build": "rollup --config rollup.config.js"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/query-devtools/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"outDir": "./build/lib",
"outDir": "./dist",
"types": ["vitest/globals"]
},
"include": ["src"]
Expand Down

0 comments on commit 5d26805

Please sign in to comment.