Skip to content

Commit

Permalink
Replace rimraf with shx
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Nov 10, 2023
1 parent 101082b commit e697a65
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -23,8 +23,8 @@
"eslint-plugin-no-null": "^1.0.2",
"lerna": "^7.3.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"semver": "^7.5.4",
"shx": "^0.3.4",
"typescript": "~5.2.2",
"@vitest/coverage-v8": "~0.34.6",
"vitest": "~0.34.6"
Expand Down
2 changes: 1 addition & 1 deletion packages/generator-sprotty/package.json
Expand Up @@ -38,7 +38,7 @@
"yeoman-test": "^7.4.0"
},
"scripts": {
"clean": "rimraf app",
"clean": "shx rm -fr app",
"build": "tsc --skipLibCheck",
"watch": "tsc --watch --skipLibCheck",
"run": "yo sprotty",
Expand Down
2 changes: 1 addition & 1 deletion packages/sprotty-elk/package.json
Expand Up @@ -28,7 +28,7 @@
"inversify": "^6.0.1"
},
"scripts": {
"clean": "rimraf lib artifacts tsconfig.tsbuildinfo",
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc -p ./tsconfig.json",
"test": "vitest run --config ../../vite.config.ts",
"watch": "tsc -w -p ./tsconfig.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/sprotty-protocol/package.json
Expand Up @@ -23,7 +23,7 @@
},

"scripts": {
"clean": "rimraf lib artifacts tsconfig.tsbuildinfo",
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc -p ./tsconfig.json",
"test": "vitest run --config ../../vite.config.ts",
"watch": "tsc -w -p ./tsconfig.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/sprotty/package.json
Expand Up @@ -37,7 +37,7 @@
"snabbdom-to-html": "^7.1.0"
},
"scripts": {
"clean": "rimraf lib artifacts tsconfig.tsbuildinfo",
"clean": "shx rm -fr lib artifacts *.tsbuildinfo",
"build": "tsc -p ./tsconfig.json",
"test": "vitest run --config ../../vite.config.ts",
"watch": "tsc -w -p ./tsconfig.json"
Expand Down
19 changes: 10 additions & 9 deletions yarn.lock
Expand Up @@ -3138,7 +3138,7 @@ glob@7.1.4:
once "^1.3.0"
path-is-absolute "^1.0.0"

glob@^10.2.2, glob@^10.3.7:
glob@^10.2.2:
version "10.3.10"
resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
Expand Down Expand Up @@ -4269,7 +4269,7 @@ minimist-options@4.1.0:
is-plain-obj "^1.1.0"
kind-of "^6.0.3"

minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6:
version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
Expand Down Expand Up @@ -5403,13 +5403,6 @@ rimraf@^4.4.1:
dependencies:
glob "^9.2.0"

rimraf@^5.0.5:
version "5.0.5"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.5.tgz#9be65d2d6e683447d2e9013da2bf451139a61ccf"
integrity sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==
dependencies:
glob "^10.3.7"

rollup@^3.27.1:
version "3.29.4"
resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.29.4.tgz#4d70c0f9834146df8705bfb69a9a19c9e1109981"
Expand Down Expand Up @@ -5565,6 +5558,14 @@ shelljs@^0.8.5:
interpret "^1.0.0"
rechoir "^0.6.2"

shx@^0.3.4:
version "0.3.4"
resolved "https://registry.yarnpkg.com/shx/-/shx-0.3.4.tgz#74289230b4b663979167f94e1935901406e40f02"
integrity sha512-N6A9MLVqjxZYcVn8hLmtneQWIJtp8IKzMP4eMnx+nqkvXoqinUPCbUFLp2UcWTEIUONhlk0ewxr/jaVGlc+J+g==
dependencies:
minimist "^1.2.3"
shelljs "^0.8.5"

side-channel@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
Expand Down

0 comments on commit e697a65

Please sign in to comment.