Skip to content

Commit 874bfed

Browse files
authored
Merge pull request #67 from expatfile/development
🏗️ Release stable version
2 parents abe9185 + 6aeaaea commit 874bfed

16 files changed

+2049
-1956
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
'eol-last': ['error', 'always'],
2020
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
2121
'import/extensions': ['off'],
22+
'import/order': ['off'],
2223
'import/prefer-default-export': ['off'],
2324
'simple-import-sort/imports': 'warn',
2425
'simple-import-sort/exports': 'warn',

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ same build.
3838
Our approach is compatible with
3939
[static site generation][static-generation-link] and supports middleware.
4040

41+
> 🏗️ We are actively working on supporting the new App directory and Server
42+
> Components released in Next.js 13.
43+
4144
### Getting started 🚀
4245

4346
1. Add the following lines to your `next.config.js`:

examples/with-app-router/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Getting Started
22

3+
> NOTE: This example is a work in progress and is not yet functional.
4+
35
First, run the development server:
46

57
```bash

examples/with-app-router/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12-
"@types/node": "20.1.4",
13-
"@types/react": "18.2.6",
14-
"@types/react-dom": "18.2.4",
15-
"eslint": "8.40.0",
16-
"eslint-config-next": "13.4.2",
17-
"next": "13.4.2",
12+
"@types/node": "20.4.9",
13+
"@types/react": "18.2.19",
14+
"@types/react-dom": "18.2.7",
15+
"eslint": "8.46.0",
16+
"eslint-config-next": "13.4.13",
17+
"next": "13.4.13",
1818
"next-runtime-env": "link:../..",
1919
"react": "18.2.0",
2020
"react-dom": "18.2.0",
21-
"typescript": "5.0.4"
21+
"typescript": "5.1.6"
2222
}
2323
}

0 commit comments

Comments
 (0)