Skip to content

Commit

Permalink
Move rimraf to dependencies (#954)
Browse files Browse the repository at this point in the history
`rimraf` is used in the `install` script (via rebuild -> clean) and as such is always required, not just in dev. `devDependencies` are not installed transitively, so when using rclnodejs in a package that is used in another project, rimraf is not installed, leading to an error during installation.
  • Loading branch information
chfritz authored and minggangw committed Feb 4, 2024
1 parent 62dd620 commit 90ede83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
"lint-staged": "^14.0.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"tree-kill": "^1.2.2",
"typescript": "^4.9.3"
Expand All @@ -78,6 +77,7 @@
"mkdirp": "^3.0.1",
"mz": "^2.7.0",
"nan": "^2.17.0",
"rimraf": "^5.0.1",
"uuid": "^9.0.0",
"walk": "^2.3.15"
},
Expand Down

0 comments on commit 90ede83

Please sign in to comment.