@nrwl/next 15.5.0 → 15.5.2

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.5.0](https://github.com/nrwl/nx/compare/15.4.8...15.5.0) (2023-01-13)
6
+ ## [15.5.2](https://github.com/nrwl/nx/compare/15.5.1...15.5.2) (2023-01-18)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/next
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/next",
3
- "version": "15.5.0",
3
+ "version": "15.5.2",
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": {
@@ -35,15 +35,15 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@babel/plugin-proposal-decorators": "^7.14.5",
38
- "@nrwl/cypress": "15.5.0",
39
- "@nrwl/devkit": "15.5.0",
40
- "@nrwl/jest": "15.5.0",
41
- "@nrwl/linter": "15.5.0",
42
- "@nrwl/react": "15.5.0",
43
- "@nrwl/webpack": "15.5.0",
44
- "@nrwl/workspace": "15.5.0",
38
+ "@nrwl/cypress": "15.5.2",
39
+ "@nrwl/devkit": "15.5.2",
40
+ "@nrwl/jest": "15.5.2",
41
+ "@nrwl/linter": "15.5.2",
42
+ "@nrwl/react": "15.5.2",
43
+ "@nrwl/webpack": "15.5.2",
44
+ "@nrwl/workspace": "15.5.2",
45
45
  "@svgr/webpack": "^6.1.2",
46
- "chalk": "4.1.0",
46
+ "chalk": "^4.1.0",
47
47
  "dotenv": "~10.0.0",
48
48
  "fs-extra": "^11.1.0",
49
49
  "ignore": "^5.0.4",
@@ -57,5 +57,5 @@
57
57
  "access": "public"
58
58
  },
59
59
  "types": "./index.d.ts",
60
- "gitHead": "d7d1bcf17b472cd84704717f7242eca22e2e98cd"
60
+ "gitHead": "22d6519948033a60c7281fe4bb7e0a594d9fc5a6"
61
61
  }
@@ -9,12 +9,14 @@
9
9
  "properties": {
10
10
  "root": {
11
11
  "description": "The source root",
12
- "type": "string"
12
+ "type": "string",
13
+ "x-priority": "important"
13
14
  },
14
15
  "outputPath": {
15
16
  "type": "string",
16
17
  "description": "The output path of the generated files.",
17
- "x-completion-type": "directory"
18
+ "x-completion-type": "directory",
19
+ "x-priority": "important"
18
20
  },
19
21
  "fileReplacements": {
20
22
  "description": "Replace files with other files in the build.",
@@ -42,7 +44,8 @@
42
44
  "description": "Path (relative to workspace root) to a function which takes phase, config, and builder options, and returns the resulting config. This is an advanced option and should not be used with a normal Next.js config file (i.e. `next.config.js`).",
43
45
  "type": "string",
44
46
  "x-completion-type": "file",
45
- "x-completion-glob": "next?(*).js"
47
+ "x-completion-glob": "next?(*).js",
48
+ "x-priority": "important"
46
49
  },
47
50
  "buildLibsFromSource": {
48
51
  "type": "boolean",
@@ -57,7 +60,8 @@
57
60
  "generateLockfile": {
58
61
  "type": "boolean",
59
62
  "description": "Generate a lockfile (e.g. yarn.lock) that matches the workspace lockfile to ensure package versions match.",
60
- "default": false
63
+ "default": false,
64
+ "x-priority": "internal"
61
65
  }
62
66
  },
63
67
  "required": ["root", "outputPath"]
@@ -8,7 +8,8 @@
8
8
  "properties": {
9
9
  "buildTarget": {
10
10
  "type": "string",
11
- "description": "Target which builds the application"
11
+ "description": "Target which builds the application",
12
+ "x-priority": "important"
12
13
  },
13
14
  "silent": {
14
15
  "type": "boolean",
@@ -13,12 +13,14 @@
13
13
  },
14
14
  "buildTarget": {
15
15
  "type": "string",
16
- "description": "Target which builds the application."
16
+ "description": "Target which builds the application.",
17
+ "x-priority": "important"
17
18
  },
18
19
  "port": {
19
20
  "type": "number",
20
21
  "description": "Port to listen on.",
21
- "default": 4200
22
+ "default": 4200,
23
+ "x-priority": "important"
22
24
  },
23
25
  "staticMarkup": {
24
26
  "type": "boolean",
@@ -14,12 +14,14 @@
14
14
  "index": 0
15
15
  },
16
16
  "x-prompt": "What name would you like to use for the application?",
17
- "pattern": "^[a-zA-Z].*$"
17
+ "pattern": "^[a-zA-Z].*$",
18
+ "x-priority": "important"
18
19
  },
19
20
  "directory": {
20
21
  "description": "The directory of the new application.",
21
22
  "type": "string",
22
- "alias": "d"
23
+ "alias": "d",
24
+ "x-priority": "important"
23
25
  },
24
26
  "style": {
25
27
  "description": "The file extension to be used for style files.",
@@ -71,12 +73,14 @@
71
73
  "skipFormat": {
72
74
  "description": "Skip formatting files.",
73
75
  "type": "boolean",
74
- "default": false
76
+ "default": false,
77
+ "x-priority": "internal"
75
78
  },
76
79
  "skipWorkspaceJson": {
77
80
  "description": "Skip updating `workspace.json` with default options based on values provided to this app (e.g. `babel`, `style`).",
78
81
  "type": "boolean",
79
- "default": false
82
+ "default": false,
83
+ "x-priority": "internal"
80
84
  },
81
85
  "unitTestRunner": {
82
86
  "type": "string",
@@ -13,7 +13,8 @@
13
13
  "$default": {
14
14
  "$source": "projectName"
15
15
  },
16
- "x-prompt": "What is the name of the project for this component?"
16
+ "x-prompt": "What is the name of the project for this component?",
17
+ "x-priority": "important"
17
18
  },
18
19
  "name": {
19
20
  "type": "string",
@@ -22,7 +23,8 @@
22
23
  "$source": "argv",
23
24
  "index": 0
24
25
  },
25
- "x-prompt": "What name would you like to use for the component?"
26
+ "x-prompt": "What name would you like to use for the component?",
27
+ "x-priority": "important"
26
28
  },
27
29
  "style": {
28
30
  "description": "The file extension to be used for style files.",
@@ -64,12 +66,14 @@
64
66
  "skipTests": {
65
67
  "type": "boolean",
66
68
  "description": "When true, does not create `spec.ts` test files for the new component.",
67
- "default": false
69
+ "default": false,
70
+ "x-priority": "internal"
68
71
  },
69
72
  "directory": {
70
73
  "type": "string",
71
74
  "description": "Create the component under this directory (can be nested).",
72
- "alias": "dir"
75
+ "alias": "dir",
76
+ "x-priority": "important"
73
77
  },
74
78
  "export": {
75
79
  "type": "boolean",
@@ -15,7 +15,8 @@
15
15
  "index": 0
16
16
  },
17
17
  "x-dropdown": "project",
18
- "x-prompt": "What is the name of the project to set up a custom server for?"
18
+ "x-prompt": "What is the name of the project to set up a custom server for?",
19
+ "x-priority": "important"
19
20
  },
20
21
  "compiler": {
21
22
  "type": "string",
@@ -14,12 +14,14 @@
14
14
  "index": 0
15
15
  },
16
16
  "x-prompt": "What name would you like to use for the library?",
17
- "pattern": "^[a-zA-Z].*$"
17
+ "pattern": "^[a-zA-Z].*$",
18
+ "x-priority": "important"
18
19
  },
19
20
  "directory": {
20
21
  "type": "string",
21
22
  "description": "A directory where the lib is placed.",
22
- "alias": "dir"
23
+ "alias": "dir",
24
+ "x-priority": "important"
23
25
  },
24
26
  "style": {
25
27
  "description": "The file extension to be used for style files.",
@@ -13,7 +13,8 @@
13
13
  "$default": {
14
14
  "$source": "projectName"
15
15
  },
16
- "x-prompt": "What is the name of the project for this component?"
16
+ "x-prompt": "What is the name of the project for this component?",
17
+ "x-priority": "important"
17
18
  },
18
19
  "name": {
19
20
  "type": "string",
@@ -22,12 +23,14 @@
22
23
  "$source": "argv",
23
24
  "index": 0
24
25
  },
25
- "x-prompt": "What name would you like to use for the component?"
26
+ "x-prompt": "What name would you like to use for the component?",
27
+ "x-priority": "important"
26
28
  },
27
29
  "directory": {
28
30
  "type": "string",
29
31
  "description": "Create the page under this directory (can be nested). Will be created under `pages/`.",
30
- "alias": "dir"
32
+ "alias": "dir",
33
+ "x-priority": "important"
31
34
  },
32
35
  "style": {
33
36
  "description": "The file extension to be used for style files.",
@@ -68,7 +71,8 @@
68
71
  "label": "None"
69
72
  }
70
73
  ]
71
- }
74
+ },
75
+ "x-priority": "important"
72
76
  },
73
77
  "withTests": {
74
78
  "type": "boolean",