Skip to content

Remove rimraf devdep #156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove rimraf
  • Loading branch information
bcomnes committed Oct 18, 2024
commit c77e0856c65115b32788c3e9a1e441ba69fbd430
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
Loading