Skip to content

Commit

Permalink
Replace rimraf with premove
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jan 13, 2025
1 parent 2acaed8 commit 26ca115
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 58 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
"jsdom": "^25.0.1",
"knip": "^5.42.0",
"nx": "^20.3.0",
"premove": "^4.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"publint": "^0.3.2",
"rimraf": "^6.0.1",
"sherif": "^1.1.1",
"typescript": "5.6.3",
"typescript50": "npm:[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
"angular"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "tsc",
"test:lib": "vitest",
"test:lib:dev": "pnpm run test:lib --watch",
"test:build": "publint --strict",
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./dist/package.json"
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && premove ./dist/package.json"
},
"type": "module",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/solid-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"typescript"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"typescript"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"svelte"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:types": "svelte-check --tsconfig ./tsconfig.json",
"test:eslint": "eslint ./src ./tests",
"test:lib": "vitest",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"vue"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"clean": "premove ./dist ./coverage",
"test:eslint": "eslint ./src ./tests",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts50": "node ../../node_modules/typescript50/lib/tsc.js",
Expand Down
60 changes: 10 additions & 50 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 26ca115

Please sign in to comment.