Skip to content

Commit e132695

Browse files
committed
Merge branch 'main' into zod
2 parents 37c825b + 78a4683 commit e132695

File tree

322 files changed

+1064
-1950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

322 files changed

+1064
-1950
lines changed

.github/workflows/deduplicate-yarn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: ⬇️ Checkout repo
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: ⎔ Setup node
2727
uses: actions/setup-node@v3

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: ⬇️ Checkout repo
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: ⎔ Setup node
2222
uses: actions/setup-node@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: ⬇️ Checkout repo
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: ⎔ Setup node
2222
uses: actions/setup-node@v3

__template/app/routes/_index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export default function Index() {
2+
return (
3+
<div style={{ fontFamily: "system-ui, sans-serif", lineHeight: "1.8" }}>
4+
<h1>Welcome to Remix</h1>
5+
</div>
6+
);
7+
}

__template/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
"typecheck": "tsc"
99
},
1010
"dependencies": {
11-
"@remix-run/node": "~1.14.2",
12-
"@remix-run/react": "~1.14.2",
13-
"@remix-run/serve": "~1.14.2",
11+
"@remix-run/node": "^1.19.3",
12+
"@remix-run/react": "^1.19.3",
13+
"@remix-run/serve": "^1.19.3",
1414
"isbot": "^3.6.5",
1515
"react": "^18.2.0",
1616
"react-dom": "^18.2.0"
1717
},
1818
"devDependencies": {
19-
"@remix-run/dev": "~1.14.2",
20-
"@remix-run/eslint-config": "~1.14.2",
19+
"@remix-run/dev": "^1.19.3",
20+
"@remix-run/eslint-config": "^1.19.3",
2121
"@types/react": "^18.0.25",
2222
"@types/react-dom": "^18.0.8",
2323
"eslint": "^8.27.0",
2424
"typescript": "^4.8.4"
2525
},
2626
"engines": {
27-
"node": ">=14"
27+
"node": ">=14.0.0"
2828
}
2929
}

__template/remix.config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/** @type {import('@remix-run/dev').AppConfig} */
22
module.exports = {
3+
future: {
4+
v2_routeConvention: true,
5+
},
36
ignoredRouteFiles: ["**/.*"],
47
// appDirectory: "app",
58
// assetsBuildDirectory: "public/build",
6-
// serverBuildPath: "build/index.js",
79
// publicPath: "/build/",
10+
// serverBuildPath: "build/index.js",
811
};

_official-blog-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"vitest": "^0.34.1"
7676
},
7777
"engines": {
78-
"node": ">=14"
78+
"node": ">=14.0.0"
7979
},
8080
"prisma": {
8181
"seed": "ts-node --require tsconfig-paths/register prisma/seed.ts"

_official-contacts-tutorial/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"typecheck": "tsc"
99
},
1010
"dependencies": {
11-
"@remix-run/node": "nightly",
12-
"@remix-run/react": "nightly",
13-
"@remix-run/serve": "nightly",
11+
"@remix-run/node": "^2.0.0-pre.8",
12+
"@remix-run/react": "^2.0.0-pre.8",
13+
"@remix-run/serve": "^2.0.0-pre.8",
1414
"isbot": "^3.6.8",
1515
"match-sorter": "^6.3.1",
1616
"react": "^18.2.0",
@@ -19,8 +19,8 @@
1919
"tiny-invariant": "^1.3.1"
2020
},
2121
"devDependencies": {
22-
"@remix-run/dev": "nightly",
23-
"@remix-run/eslint-config": "nightly",
22+
"@remix-run/dev": "^2.0.0-pre.8",
23+
"@remix-run/eslint-config": "^2.0.0-pre.8",
2424
"@types/react": "^18.2.20",
2525
"@types/react-dom": "^18.2.7",
2626
"eslint": "^8.38.0",

_official-jokes/remix.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ module.exports = {
1212
serverModuleFormat: "cjs",
1313
// appDirectory: "app",
1414
// assetsBuildDirectory: "public/build",
15-
// serverBuildPath: "build/index.js",
1615
// publicPath: "/build/",
16+
// serverBuildPath: "build/index.js",
1717
};

0 commit comments

Comments
 (0)