Skip to content

Commit 46e1258

Browse files
fix: promote prettier to full dependency
1 parent d13f27a commit 46e1258

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"git-url-parse": "^13.1.0",
5050
"js-yaml": "^4.1.0",
5151
"npm-user": "^5.0.1",
52+
"prettier": "^2.8.8",
5253
"title-case": "^3.0.3"
5354
},
5455
"devDependencies": {
@@ -88,7 +89,6 @@
8889
"npm-package-json-lint": "^6.4.0",
8990
"npm-package-json-lint-config-default": "^5.0.0",
9091
"octokit": "^2.0.14",
91-
"prettier": "^2.8.8",
9292
"prettier-plugin-curly": "^0.0.2",
9393
"prettier-plugin-packagejson": "^2.4.3",
9494
"release-it": "^15.10.3",

pnpm-lock.yaml

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/setup/steps/uninstallPackages.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { $ } from "execa";
22

33
export async function uninstallPackages() {
4-
await $`pnpm remove @clack/prompts chalk execa git-remote-origin-url git-url-parse js-yaml npm-user title-case`;
4+
await $`pnpm remove @clack/prompts chalk execa git-remote-origin-url git-url-parse js-yaml npm-user prettier title-case`;
55
await $`pnpm remove @octokit/request-error @types/git-url-parse @types/js-yaml @types/prettier all-contributors-cli c8 globby octokit replace-in-file tsx -D`;
6+
await $`pnpm add prettier -D`;
67
}

0 commit comments

Comments
 (0)