Skip to content

Commit

Permalink
Merge pull request #156 from bcomnes/rm-rf-rimraf
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes authored Oct 18, 2024
2 parents 6f6c445 + c77e085 commit c661ffc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .knip.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://unpkg.com/knip@5/schema.json",
"entry": ["lib/index.js", "bin/*/*.js", "test-workspace/tasks/*.js"],
"ignoreDependencies": ["rimraf", "yarn"]
"ignoreDependencies": ["yarn"]
}
2 changes: 1 addition & 1 deletion docs/npm-run-all.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ For example:
```json
{
"scripts": {
"clean": "rimraf dist",
"clean": "rm -rf dist",
"lint": "eslint src",
"build": "babel src -o lib"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/run-p.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ For example:
```json
{
"scripts": {
"clean": "rimraf dist",
"clean": "rm -rf dist",
"lint": "eslint src",
"build": "babel src -o lib"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/run-s.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ For example:
```json
{
"scripts": {
"clean": "rimraf dist",
"clean": "rm -rf dist",
"lint": "eslint src",
"build": "babel src -o lib"
}
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"knip": "^5.23.3",
"mocha": "^10.0.0",
"neostandard": "^0.11.0",
"rimraf": "^5.0.7",
"yarn": "^1.12.3"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions test-workspace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"test-task:stdout": "node tasks/stdout.js > test.txt",
"test-task:stderr": "node tasks/stderr.js 2> test.txt",
"test-task:stdin": "echo STDIN | node tasks/stdin.js",
"test-task:issue14:win32": "..\\node_modules\\.bin\\rimraf build && mkdir %npm_package_config_DEST% && cd build",
"test-task:issue14:posix": "../node_modules/.bin/rimraf build && mkdir $npm_package_config_DEST && cd build",
"test-task:issue14:win32": "rm -rf build && mkdir %npm_package_config_DEST% && cd build",
"test-task:issue14:posix": "rm -rf build && mkdir $npm_package_config_DEST && cd build",
"test-task:echo": "node tasks/echo.js",
"test-task:dump": "node tasks/dump.js",
"test-task:nest-append:npm-run-all": "node ../bin/npm-run-all/index.js test-task:append",
Expand Down

0 comments on commit c661ffc

Please sign in to comment.