Skip to content

Commit 62e3d7f

Browse files
authored
fix: yarn clean. Replace shx with native rm. Remove rimraf. (#1343)
1 parent 59168d1 commit 62e3d7f

File tree

23 files changed

+95
-192
lines changed

23 files changed

+95
-192
lines changed

packages/advanced-logic/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"scripts": {
3434
"build": "tsc -b tsconfig.build.json",
35-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
35+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3636
"lint": "eslint . --fix",
3737
"lint:check": "eslint .",
3838
"test": "jest",
@@ -49,7 +49,6 @@
4949
"@types/node": "18.11.9",
5050
"jest": "29.5.0",
5151
"jest-junit": "16.0.0",
52-
"shx": "0.3.2",
5352
"ts-jest": "29.1.0",
5453
"ts-node": "10.9.1",
5554
"typescript": "5.1.3"

packages/currency/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"scripts": {
3535
"build": "tsc -b tsconfig.build.json",
36-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
36+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3737
"lint": "eslint . --fix",
3838
"lint:check": "eslint .",
3939
"prepare": "yarn run build",
@@ -56,7 +56,6 @@
5656
"ethers": "5.5.1",
5757
"jest": "29.5.0",
5858
"jest-junit": "16.0.0",
59-
"shx": "0.3.2",
6059
"source-map-support": "0.5.19",
6160
"ts-jest": "29.1.0",
6261
"ts-node": "10.9.1",

packages/data-access/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"scripts": {
3434
"build": "tsc -b tsconfig.build.json",
35-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
35+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3636
"lint": "eslint . --fix",
3737
"lint:check": "eslint .",
3838
"test": "jest",
@@ -49,7 +49,6 @@
4949
"@types/node": "18.11.9",
5050
"jest": "29.5.0",
5151
"jest-junit": "16.0.0",
52-
"shx": "0.3.2",
5352
"source-map-support": "0.5.19",
5453
"ts-jest": "29.1.0",
5554
"ts-node": "10.9.1",

packages/data-format/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"scripts": {
3535
"build": "tsc -b tsconfig.build.json",
36-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
36+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3737
"lint": "eslint . --fix",
3838
"lint:check": "eslint .",
3939
"test": "jest",
@@ -47,8 +47,6 @@
4747
"devDependencies": {
4848
"@types/node": "18.11.9",
4949
"jest-junit": "16.0.0",
50-
"rimraf": "3.0.2",
51-
"shx": "0.3.2",
5250
"ts-node": "10.9.1",
5351
"typescript": "5.1.3"
5452
},

packages/epk-decryption/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"build": "run-s build:commonjs build:umd",
3535
"build:commonjs": "tsc -b tsconfig.build.json",
3636
"build:umd": "webpack",
37-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
37+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3838
"lint": "eslint . --fix",
3939
"lint:check": "eslint .",
4040
"test": "jest",
@@ -54,7 +54,6 @@
5454
"jest": "29.5.0",
5555
"jest-junit": "16.0.0",
5656
"npm-run-all": "4.1.5",
57-
"shx": "0.3.2",
5857
"source-map-support": "0.5.19",
5958
"stream-browserify": "3.0.0",
6059
"terser-webpack-plugin": "4.2.3",

packages/epk-signature/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"build": "run-s build:commonjs build:umd",
3535
"build:commonjs": "tsc -b tsconfig.build.json",
3636
"build:umd": "webpack",
37-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
37+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3838
"lint": "eslint . --fix",
3939
"lint:check": "eslint .",
4040
"test": "jest",
@@ -53,7 +53,6 @@
5353
"jest": "29.5.0",
5454
"jest-junit": "16.0.0",
5555
"npm-run-all": "4.1.5",
56-
"shx": "0.3.2",
5756
"source-map-support": "0.5.19",
5857
"stream-browserify": "3.0.0",
5958
"terser-webpack-plugin": "4.2.3",

packages/ethereum-storage/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"scripts": {
3434
"build": "tsc -b tsconfig.build.json",
35-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
35+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3636
"lint": "eslint . --fix",
3737
"lint:check": "eslint .",
3838
"test": "jest",
@@ -58,7 +58,6 @@
5858
"jest": "29.5.0",
5959
"jest-junit": "16.0.0",
6060
"msw": "2.0.6",
61-
"shx": "0.3.2",
6261
"solium": "1.2.5",
6362
"source-map-support": "0.5.19",
6463
"ts-jest": "29.1.0",

packages/integration-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
],
2828
"scripts": {
2929
"build": "tsc -b tsconfig.build.json",
30-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
30+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3131
"lint": "eslint \"test/**/*.ts\"",
3232
"test": "run-s test:node test:layers",
3333
"test:scheduled": "run-s test:erc20 test:any test:erc777 test:eth test:btc ",

packages/multi-format/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"scripts": {
3434
"build": "tsc -b tsconfig.build.json",
35-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
35+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
3636
"lint": "eslint . --fix",
3737
"lint:check": "eslint .",
3838
"prepare": "yarn run build",
@@ -47,7 +47,6 @@
4747
"@types/jest": "29.5.6",
4848
"jest": "29.5.0",
4949
"jest-junit": "16.0.0",
50-
"shx": "0.3.2",
5150
"source-map-support": "0.5.19",
5251
"ts-jest": "29.1.0",
5352
"ts-node": "10.9.1",

packages/payment-detection/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"scripts": {
3333
"prebuild": "yarn codegen",
3434
"build": "tsc -b tsconfig.build.json",
35-
"clean": "shx rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo **/generated",
35+
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo **/generated",
3636
"lint": "eslint . --fix",
3737
"lint:check": "eslint .",
3838
"prepare": "yarn run build",
@@ -67,7 +67,6 @@
6767
"@types/lodash": "4.14.161",
6868
"jest": "29.5.0",
6969
"jest-junit": "16.0.0",
70-
"shx": "0.3.2",
7170
"source-map-support": "0.5.19",
7271
"ts-jest": "29.1.0",
7372
"ts-node": "10.9.1",

0 commit comments

Comments
 (0)