Skip to content

Commit 41ab495

Browse files
authoredJan 17, 2024
fix: switch rimraf to full dependency (#1256)
## PR Checklist - [x] Addresses an existing open issue: fixes #1253 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [ ] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Switches `rimraf` from a `devDependency` to a full production dependency. Whoops.
1 parent 1140275 commit 41ab495

File tree

3 files changed

+6
-21
lines changed

3 files changed

+6
-21
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"parse-author": "^2.0.0",
5757
"prettier": "^3.1.0",
5858
"replace-in-file": "^7.0.2",
59+
"rimraf": "^5.0.5",
5960
"title-case": "^4.1.2",
6061
"zod": "^3.22.4",
6162
"zod-validation-error": "^2.1.0"
@@ -99,7 +100,6 @@
99100
"prettier-plugin-curly": "^0.1.3",
100101
"prettier-plugin-packagejson": "^2.4.7",
101102
"release-it": "^17.0.0",
102-
"rimraf": "^5.0.5",
103103
"sentences-per-line": "^0.2.1",
104104
"should-semantic-release": "^0.2.1",
105105
"tsup": "^8.0.1",

‎pnpm-lock.yaml

+4-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/steps/uninstallPackages.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export async function uninstallPackages(offline: boolean | undefined) {
1717
"js-yaml",
1818
"npm-user",
1919
"parse-author",
20+
"rimraf",
2021
"octokit",
2122
"prettier",
2223
"replace-in-file",
@@ -38,7 +39,6 @@ export async function uninstallPackages(offline: boolean | undefined) {
3839
"c8",
3940
"eslint-config-prettier",
4041
"globby",
41-
"rimraf",
4242
"tsx",
4343
],
4444
packageData.devDependencies,

0 commit comments

Comments
 (0)
Please sign in to comment.