Skip to content

Commit

Permalink
chore: use long version numbers (#6551)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Jun 8, 2023
1 parent 3e58915 commit 72d7377
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/guides/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The Remix compiler will not do any type checking (it simply removes the types).
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion integration/compiler-mjs-output-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test.beforeAll(async () => {
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
`,
Expand Down
2 changes: 1 addition & 1 deletion integration/helpers/cf-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/helpers/deno-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"@remix-run/dev": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/helpers/node-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
"typescript": "0.0.0-local-version"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion integration/hmr-log-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ let fixture = (options: { appPort: number; devPort: number }): FixtureInit => ({
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),

Expand Down
2 changes: 1 addition & 1 deletion integration/hmr-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ let fixture = (options: { appPort: number; devPort: number }): FixtureInit => ({
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),

Expand Down
2 changes: 1 addition & 1 deletion integration/server-entry-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ test.describe("Default Server Entry (React 17)", () => {
typescript: "0.0.0-local-version",
},
engines: {
node: ">=14",
node: ">=14.0.0",
},
}),
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/playground/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
},
"prisma": {
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"
Expand Down
2 changes: 1 addition & 1 deletion templates/arc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/cloudflare-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"wrangler": "^2.15.1"
},
"engines": {
"node": ">=16.13"
"node": ">=16.13.0"
}
}
2 changes: 1 addition & 1 deletion templates/cloudflare-workers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
"wrangler": "^2.15.1"
},
"engines": {
"node": ">=16.13"
"node": ">=16.13.0"
}
}
2 changes: 1 addition & 1 deletion templates/deno/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/fly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/netlify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/vercel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14"
"node": ">=14.0.0"
}
}

0 comments on commit 72d7377

Please sign in to comment.