Skip to content

Commit 5093661

Browse files
chore: a couple small fixes to hydration
1 parent 55f71e0 commit 5093661

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/hydrate/steps/clearUnnecessaryFiles.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const globPaths = [
77
...extensions("babel.config", "cjs", "cts", "js", "json", "mjs"),
88
...extensions("jest.config", "cjs", "js", "json", "mjs", "ts"),
99
"./src/**/*.js",
10+
".circleci/config.yml",
1011
".babelrc",
1112
".npmignore",
1213
"CODE_OF_CONDUCT.md",
@@ -15,6 +16,7 @@ const globPaths = [
1516
"dist",
1617
"lib",
1718
"package-lock.json",
19+
"travis.yml",
1820
"yarn.lock",
1921
];
2022

src/setup/steps/uninstallPackages.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ import { $ } from "execa";
33
export async function uninstallPackages() {
44
await $`pnpm remove @clack/prompts chalk execa git-remote-origin-url git-url-parse js-yaml npm-user octokit prettier replace-in-file title-case`;
55
await $`pnpm remove @octokit/request-error @types/git-url-parse @types/js-yaml @types/prettier all-contributors-cli c8 globby tsx -D`;
6-
await $`pnpm add prettier -D`;
76
}

0 commit comments

Comments
 (0)