You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project uses ESLint for detecting issues in code, as well as Prettier for formatting.
62
51
63
-
For ESLint to work correctly, you should open individual packages you work on as the workspace root (e.g. `./packages/next-intl`).
52
+
It's recommended to use [an editor integration](https://github.com/molindo/eslint-config-molindo?tab=readme-ov-file#editor-integration) for both, so that autofixable issues are automatically resolved. For editor plugins to work correctly, you should open individual packages you work on as the workspace root (e.g. `next-intl/packages/next-intl` instead of `next-intl`).
64
53
65
-
Alternatively, you can run ESLint via the command line:
54
+
Alternatively, you can run ESLint and Prettier via the command line:
66
55
67
56
```sh
57
+
cd packages/next-intl
68
58
pnpm eslint src --fix
59
+
pnpm prettier src --write
69
60
```
70
61
71
62
### Pull requests
@@ -93,7 +84,7 @@ Due to this, it's important to clean up commit messages of merged PRs since the
93
84
94
85
Note that the exclamation mark syntax (`!`) for indicating breaking changes is currently [not supported by Lerna](https://github.com/lerna/lerna/issues/2668#issuecomment-1467902595). Instead, a block like `BREAKING CHANGE: Dropped support for Node.js 12` should be added to the body of the commit message.
95
86
96
-
Other prefixes that are allowed and will *not* create a release are the following:
87
+
Other prefixes that are allowed and will _not_ create a release are the following:
97
88
98
89
1.`docs`: Documentation-only changes
99
90
2.`test`: Missing tests were added or existing ones corrected
Copy file name to clipboardexpand all lines: docs/pages/blog/next-intl-3-0.mdx
+4-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,10 @@ Typically, you'll want to call this factory function in a central place in your
56
56
These changes bring the existing APIs in line with the new [`createLocalizedPathnamesNavigation` API](/docs/routing/navigation) that allows you to localize pathnames:
Copy file name to clipboardexpand all lines: examples/example-app-router-mixed-routing/README.md
+2
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,12 @@
3
3
An example of how to achieve locale prefixes on public routes while reading the locale from user settings on pages for logged-in users.
4
4
5
5
**Relevant docs:**
6
+
6
7
1.[Setting up `next-intl` with i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/with-i18n-routing)
7
8
2.[Setting up `next-intl` without i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/without-i18n-routing)
8
9
9
10
**Relevant parts in app code:**
11
+
10
12
1.`src/middleware.ts`: Add a hint if it's a non-public route that we can read in `i18n.ts`.
11
13
2.`src/i18n.ts`: Uses the locale from the pathname segment for public routes or returns a locale from the user profile for internal app routes.
12
14
3.`src/navigation.public.ts`: Navigation APIs that automatically consider the `[locale]` segment for public routes. For internal app routes, the navigation APIs from Next.js should be used directly (see `PublicNavigation.tsx` vs `AppNavigation.tsx`).
0 commit comments