Skip to content

Commit b172b31

Browse files
fix: correct --offline ternary in blockPackageJson (#1893)
## PR Checklist - [x] Addresses an existing open issue: fixes #1890 - [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) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview _sigh_ 💖
1 parent 024e347 commit b172b31

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/next/blocks/blockPackageJson.test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe("blockPackageJson", () => {
2121
"scripts": [
2222
{
2323
"commands": [
24-
"pnpm install --offline",
24+
"pnpm install",
2525
],
2626
"phase": 1,
2727
},
@@ -44,7 +44,7 @@ describe("blockPackageJson", () => {
4444
"scripts": [
4545
{
4646
"commands": [
47-
"pnpm install --offline",
47+
"pnpm install",
4848
],
4949
"phase": 1,
5050
},
@@ -82,7 +82,7 @@ describe("blockPackageJson", () => {
8282
"scripts": [
8383
{
8484
"commands": [
85-
"pnpm install --offline",
85+
"pnpm install",
8686
"pnpm dedupe",
8787
],
8888
"phase": 1,
@@ -117,7 +117,7 @@ describe("blockPackageJson", () => {
117117
"scripts": [
118118
{
119119
"commands": [
120-
"pnpm install --offline",
120+
"pnpm install",
121121
"pnpm dedupe",
122122
],
123123
"phase": 1,

src/next/blocks/blockPackageJson.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const blockPackageJson = base.createBlock({
101101
scripts: [
102102
{
103103
commands: [
104-
offline ? "pnpm install" : "pnpm install --offline",
104+
offline ? "pnpm install --offline" : "pnpm install",
105105
...addons.cleanupCommands,
106106
],
107107
phase: CommandPhase.Install,

0 commit comments

Comments
 (0)