@nrwl/next 15.0.3 → 15.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [15.0.3](https://github.com/nrwl/nx/compare/15.0.2...15.0.3) (2022-10-26)
6
+ ## [15.0.5](https://github.com/nrwl/nx/compare/15.0.4...15.0.5) (2022-11-01)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/next
package/migrations.json CHANGED
@@ -267,6 +267,27 @@
267
267
  "alwaysAddToPackageJson": false
268
268
  }
269
269
  }
270
+ },
271
+ "15.0.4": {
272
+ "version": "15.0.4-beta.0",
273
+ "packages": {
274
+ "next": {
275
+ "version": "13.0.0",
276
+ "alwaysAddToPackageJson": false
277
+ },
278
+ "eslint-config-next": {
279
+ "version": "13.0.0",
280
+ "alwaysAddToPackageJson": false
281
+ },
282
+ "less-loader": {
283
+ "version": "11.1.0",
284
+ "alwaysAddToPackageJson": false
285
+ },
286
+ "stylus-loader": {
287
+ "version": "7.1.0",
288
+ "alwaysAddToPackageJson": false
289
+ }
290
+ }
270
291
  }
271
292
  }
272
293
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/next",
3
- "version": "15.0.3",
3
+ "version": "15.0.5",
4
4
  "private": false,
5
5
  "description": "The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides:\n\n\n- Scaffolding for creating, building, serving, linting, and testing Next.js applications.\n\n- Integration with building, serving, and exporting a Next.js application.\n\n- Integration with React libraries within the workspace. \n\nWhen using Next.js in Nx, you get the out-of-the-box support for TypeScript, Cypress, and Jest. No need to configure anything: watch mode, source maps, and typings just work.",
6
6
  "repository": {
@@ -31,17 +31,17 @@
31
31
  "migrations": "./migrations.json"
32
32
  },
33
33
  "peerDependencies": {
34
- "next": "^12.1.0"
34
+ "next": "^13.0.0"
35
35
  },
36
36
  "dependencies": {
37
37
  "@babel/plugin-proposal-decorators": "^7.14.5",
38
- "@nrwl/cypress": "15.0.3",
39
- "@nrwl/devkit": "15.0.3",
40
- "@nrwl/jest": "15.0.3",
41
- "@nrwl/linter": "15.0.3",
42
- "@nrwl/react": "15.0.3",
43
- "@nrwl/webpack": "15.0.3",
44
- "@nrwl/workspace": "15.0.3",
38
+ "@nrwl/cypress": "15.0.5",
39
+ "@nrwl/devkit": "15.0.5",
40
+ "@nrwl/jest": "15.0.5",
41
+ "@nrwl/linter": "15.0.5",
42
+ "@nrwl/react": "15.0.5",
43
+ "@nrwl/webpack": "15.0.5",
44
+ "@nrwl/workspace": "15.0.5",
45
45
  "@svgr/webpack": "^6.1.2",
46
46
  "chalk": "4.1.0",
47
47
  "dotenv": "~10.0.0",
@@ -57,5 +57,5 @@
57
57
  "access": "public"
58
58
  },
59
59
  "types": "./index.d.ts",
60
- "gitHead": "26b959fc51605cbc338d965e1d76d26474f05245"
60
+ "gitHead": "2d84f2565ff4114dee1f476b0087a2707178efe3"
61
61
  }
@@ -8,104 +8,4 @@ export interface WithNxContext {
8
8
  workspaceRoot: string;
9
9
  libsDir: string;
10
10
  }
11
- export declare function withNx(nextConfig?: WithNxOptions, context?: WithNxContext): {
12
- webpack: (config: any, options: any) => any;
13
- exportPathMap?: (defaultMap: import("next/dist/server/config-shared").ExportPathMap, ctx: {
14
- dev: boolean;
15
- dir: string;
16
- outDir: string;
17
- distDir: string;
18
- buildId: string;
19
- }) => import("next/dist/server/config-shared").ExportPathMap | Promise<import("next/dist/server/config-shared").ExportPathMap>;
20
- i18n?: import("next/dist/server/config-shared").I18NConfig;
21
- eslint: import("next/dist/server/config-shared").ESLintConfig;
22
- typescript?: import("next/dist/server/config-shared").TypeScriptConfig;
23
- headers?: () => Promise<import("next/dist/lib/load-custom-routes").Header[]>;
24
- rewrites?: () => Promise<import("next/dist/lib/load-custom-routes").Rewrite[] | {
25
- beforeFiles: import("next/dist/lib/load-custom-routes").Rewrite[];
26
- afterFiles: import("next/dist/lib/load-custom-routes").Rewrite[];
27
- fallback: import("next/dist/lib/load-custom-routes").Rewrite[];
28
- }>;
29
- redirects?: () => Promise<import("next/dist/lib/load-custom-routes").Redirect[]>;
30
- webpack5?: false;
31
- excludeDefaultMomentLocales?: boolean;
32
- trailingSlash?: boolean;
33
- env?: Record<string, string>;
34
- distDir?: string;
35
- cleanDistDir?: boolean;
36
- assetPrefix?: string;
37
- useFileSystemPublicRoutes?: boolean;
38
- generateBuildId?: () => string | Promise<string>;
39
- generateEtags?: boolean;
40
- pageExtensions?: string[];
41
- compress?: boolean;
42
- analyticsId?: string;
43
- poweredByHeader?: boolean;
44
- images?: Partial<import("next/dist/shared/lib/image-config").ImageConfigComplete>;
45
- devIndicators?: {
46
- buildActivity?: boolean;
47
- buildActivityPosition?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
48
- };
49
- onDemandEntries?: {
50
- maxInactiveAge?: number;
51
- pagesBufferLength?: number;
52
- };
53
- amp?: {
54
- canonicalBase?: string;
55
- };
56
- basePath?: string;
57
- sassOptions?: {
58
- [key: string]: any;
59
- };
60
- productionBrowserSourceMaps?: boolean;
61
- optimizeFonts?: boolean;
62
- reactStrictMode?: boolean;
63
- publicRuntimeConfig?: {
64
- [key: string]: any;
65
- };
66
- serverRuntimeConfig?: {
67
- [key: string]: any;
68
- };
69
- httpAgentOptions?: {
70
- keepAlive?: boolean;
71
- };
72
- future?: {
73
- webpack5?: false;
74
- };
75
- outputFileTracing?: boolean;
76
- staticPageGenerationTimeout?: number;
77
- crossOrigin?: false | "anonymous" | "use-credentials";
78
- swcMinify?: boolean;
79
- compiler?: {
80
- reactRemoveProperties?: boolean | {
81
- properties?: string[];
82
- };
83
- relay?: {
84
- src: string;
85
- artifactDirectory?: string;
86
- language?: "typescript" | "flow";
87
- };
88
- removeConsole?: boolean | {
89
- exclude?: string[];
90
- };
91
- styledComponents?: boolean | {
92
- displayName?: boolean;
93
- topLevelImportPaths?: string[];
94
- ssr?: boolean;
95
- fileName?: boolean;
96
- meaninglessFileNames?: string[];
97
- minify?: boolean;
98
- transpileTemplateLiterals?: boolean;
99
- namespace?: string;
100
- pure?: boolean;
101
- cssProp?: boolean;
102
- };
103
- emotion?: boolean | {
104
- sourceMap?: boolean;
105
- autoLabel?: "dev-only" | "always" | "never";
106
- labelFormat?: string;
107
- };
108
- };
109
- output?: "standalone";
110
- experimental?: import("next/dist/server/config-shared").ExperimentalConfig;
111
- };
11
+ export declare function withNx(nextConfig?: WithNxOptions, context?: WithNxContext): NextConfig;
@@ -1,9 +1,9 @@
1
1
  export declare const nxVersion: any;
2
- export declare const nextVersion = "12.3.1";
3
- export declare const eslintConfigNextVersion = "12.3.1";
2
+ export declare const nextVersion = "13.0.0";
3
+ export declare const eslintConfigNextVersion = "13.0.0";
4
4
  export declare const sassVersion = "1.55.0";
5
- export declare const lessLoader = "11.0.0";
6
- export declare const stylusLoader = "7.0.0";
5
+ export declare const lessLoader = "11.1.0";
6
+ export declare const stylusLoader = "7.1.0";
7
7
  export declare const emotionServerVersion = "11.10.0";
8
8
  export declare const babelPluginStyledComponentsVersion = "1.10.7";
9
9
  export declare const tsLibVersion = "^2.3.0";
@@ -2,11 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.tsLibVersion = exports.babelPluginStyledComponentsVersion = exports.emotionServerVersion = exports.stylusLoader = exports.lessLoader = exports.sassVersion = exports.eslintConfigNextVersion = exports.nextVersion = exports.nxVersion = void 0;
4
4
  exports.nxVersion = require('../../package.json').version;
5
- exports.nextVersion = '12.3.1';
6
- exports.eslintConfigNextVersion = '12.3.1';
5
+ exports.nextVersion = '13.0.0';
6
+ exports.eslintConfigNextVersion = '13.0.0';
7
7
  exports.sassVersion = '1.55.0';
8
- exports.lessLoader = '11.0.0';
9
- exports.stylusLoader = '7.0.0';
8
+ exports.lessLoader = '11.1.0';
9
+ exports.stylusLoader = '7.1.0';
10
10
  exports.emotionServerVersion = '11.10.0';
11
11
  exports.babelPluginStyledComponentsVersion = '1.10.7';
12
12
  exports.tsLibVersion = '^2.3.0';