Skip to content

Commit

Permalink
fix: replace cpy and rimraf with shx commands (#369)
Browse files Browse the repository at this point in the history
* chore: fixed pods cpy

* chore: replaced rimraf with shx
  • Loading branch information
lem-onade authored Jul 22, 2021
1 parent aef3483 commit 9350f16
Show file tree
Hide file tree
Showing 14 changed files with 354 additions and 295 deletions.
44 changes: 44 additions & 0 deletions packages/solid-crs-client/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/solid-crs-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dist"
],
"scripts": {
"build": "rimraf ./dist && webpack",
"build": "shx rm -rf dist && webpack",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged": "lint-staged"
Expand All @@ -20,7 +20,7 @@
"@types/node": "^15.0.2",
"eslint": "^7.16.0",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-loader": "9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
Expand Down
36 changes: 36 additions & 0 deletions packages/solid-crs-components/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/solid-crs-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"start": "npm run start:watch",
"start:watch": "vite --config vite.config.ts",
"build": "rimraf ./dist && vite build --config vite.config.ts && tsc",
"build": "shx rm -rf dist && vite build --config vite.config.ts && tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged": "lint-staged",
Expand All @@ -46,7 +46,7 @@
"jest-coverage-thresholds-bumper": "0.0.4",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vite": "2.2.3"
Expand Down
36 changes: 36 additions & 0 deletions packages/solid-crs-core/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/solid-crs-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dist"
],
"scripts": {
"build": "rimraf ./dist && vite build && tsc",
"build": "shx rm -rf dist && vite build && tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged": "lint-staged",
Expand All @@ -35,7 +35,7 @@
"jest": "^26.6.3",
"jest-coverage-thresholds-bumper": "0.0.4",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vite": "2.2.3"
Expand Down Expand Up @@ -74,4 +74,4 @@
"displayName": "core",
"preset": "@digita-ai/jest-config"
}
}
}
36 changes: 36 additions & 0 deletions packages/solid-crs-manage/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/solid-crs-manage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"scripts": {
"start": "http-server -p 3002 --gzip --brotli --proxy 'http://localhost:3002?' dist/",
"start:watch": "vite serve --config vite.config.ts",
"build": "rimraf ./dist && vite build --config vite.config.ts && tsc",
"build": "shx rm -rf dist && vite build --config vite.config.ts && tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged": "lint-staged",
Expand Down Expand Up @@ -57,7 +57,7 @@
"jest-environment-jsdom-sixteen": "^1.0.3",
"jest-fetch-mock": "3.0.3",
"rdf-js": "^4.0.2",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
Expand Down Expand Up @@ -110,4 +110,4 @@
}
}
}
}
}
Loading

0 comments on commit 9350f16

Please sign in to comment.