Skip to content

Commit c661ffc

Browse files
authoredOct 18, 2024··
Merge pull request #156 from bcomnes/rm-rf-rimraf
2 parents 6f6c445 + c77e085 commit c661ffc

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed
 

‎.knip.jsonc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"$schema": "https://unpkg.com/knip@5/schema.json",
33
"entry": ["lib/index.js", "bin/*/*.js", "test-workspace/tasks/*.js"],
4-
"ignoreDependencies": ["rimraf", "yarn"]
4+
"ignoreDependencies": ["yarn"]
55
}

‎docs/npm-run-all.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ For example:
5858
```json
5959
{
6060
"scripts": {
61-
"clean": "rimraf dist",
61+
"clean": "rm -rf dist",
6262
"lint": "eslint src",
6363
"build": "babel src -o lib"
6464
}

‎docs/run-p.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ For example:
5656
```json
5757
{
5858
"scripts": {
59-
"clean": "rimraf dist",
59+
"clean": "rm -rf dist",
6060
"lint": "eslint src",
6161
"build": "babel src -o lib"
6262
}

‎docs/run-s.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For example:
5050
```json
5151
{
5252
"scripts": {
53-
"clean": "rimraf dist",
53+
"clean": "rm -rf dist",
5454
"lint": "eslint src",
5555
"build": "babel src -o lib"
5656
}

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
"knip": "^5.23.3",
5050
"mocha": "^10.0.0",
5151
"neostandard": "^0.11.0",
52-
"rimraf": "^5.0.7",
5352
"yarn": "^1.12.3"
5453
},
5554
"repository": {

‎test-workspace/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"test-task:stdout": "node tasks/stdout.js > test.txt",
3232
"test-task:stderr": "node tasks/stderr.js 2> test.txt",
3333
"test-task:stdin": "echo STDIN | node tasks/stdin.js",
34-
"test-task:issue14:win32": "..\\node_modules\\.bin\\rimraf build && mkdir %npm_package_config_DEST% && cd build",
35-
"test-task:issue14:posix": "../node_modules/.bin/rimraf build && mkdir $npm_package_config_DEST && cd build",
34+
"test-task:issue14:win32": "rm -rf build && mkdir %npm_package_config_DEST% && cd build",
35+
"test-task:issue14:posix": "rm -rf build && mkdir $npm_package_config_DEST && cd build",
3636
"test-task:echo": "node tasks/echo.js",
3737
"test-task:dump": "node tasks/dump.js",
3838
"test-task:nest-append:npm-run-all": "node ../bin/npm-run-all/index.js test-task:append",

0 commit comments

Comments
 (0)
Please sign in to comment.