Skip to content

Commit

Permalink
Merge branch 'canary' into fix-export-detect
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Jan 24, 2022
2 parents c709ed7 + 0fb1183 commit e4e8a90
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 19 deletions.
1 change: 0 additions & 1 deletion docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
},
{
"title": "Data Fetching",
"path": "/docs/basic-features/data-fetching/index.md",
"routes": [
{
"title": "Overview",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-next-multilingual/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# with-next-multilingual

The `next-multilingual` module is a unique i18n module for Next.js that offers localized URLs and modular string management on top of other standard features required for multilingual applications.

[View the example](https://github.com/Avansai/next-multilingual-example) or the [main repository](https://github.com/Avansai/next-multilingual).
28 changes: 14 additions & 14 deletions packages/next-swc/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/next-swc/crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pathdiff = "0.2.0"
serde = "1"
serde_json = "1"
styled_components = "0.12.0"
swc = "0.116.6"
swc = "0.116.23"
swc_atoms = "0.2.7"
swc_common = { version = "0.17.0", features = ["concurrent", "sourcemap"] }
swc_css = "0.46.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/next-swc/crates/napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ once_cell = "1.8.0"
serde = "1"
serde_json = "1"
next-swc = { version = "0.0.0", path = "../core" }
swc = "0.116.6"
swc = "0.116.23"
swc_atoms = "0.2.7"
swc_bundler = { version = "0.103.0", features = ["concurrent"] }
swc_common = { version = "0.17.0", features = ["concurrent", "sourcemap"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/next-swc/crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path-clean = "0.1"
serde = {version = "1", features = ["derive"]}
serde_json = "1"
next-swc = { version = "0.0.0", path = "../core" }
swc = "0.116.6"
swc = "0.116.23"
swc_common = { version = "0.17.0", features = ["concurrent", "sourcemap"] }
swc_ecmascript = { version = "0.110.9", features = ["codegen", "minifier", "optimization", "parser", "react", "transforms", "typescript", "utils", "visit"] }
tracing = {version = "0.1.28", features = ["release_max_level_off"]}
Expand Down
5 changes: 4 additions & 1 deletion packages/next/server/config-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ export type NextConfig = { [key: string]: any } & {
>
redirects?: () => Promise<Redirect[]>

/**
* @deprecated This option has been removed as webpack 5 is now default
*/
webpack5?: false
excludeDefaultMomentLocales?: boolean

Expand Down Expand Up @@ -116,7 +119,7 @@ export type NextConfig = { [key: string]: any } & {
httpAgentOptions?: { keepAlive?: boolean }
future?: {
/**
* @deprecated this options was moved to the top level
* @deprecated This option has been removed as webpack 5 is now default
*/
webpack5?: false
}
Expand Down

0 comments on commit e4e8a90

Please sign in to comment.