@nx/remix 22.7.0-beta.8 → 22.7.0-beta.9
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/executors.json +11 -11
- package/generators.json +93 -93
- package/migrations.json +139 -139
- package/package.json +7 -7
- package/src/executors/build/schema.json +43 -43
- package/src/executors/serve/schema.json +39 -39
- package/src/generators/action/schema.json +16 -16
- package/src/generators/application/schema.json +64 -64
- package/src/generators/convert-to-inferred/schema.json +16 -16
- package/src/generators/cypress-component-configuration/schema.json +38 -38
- package/src/generators/error-boundary/schema.json +23 -23
- package/src/generators/init/schema.json +30 -30
- package/src/generators/library/schema.json +88 -88
- package/src/generators/loader/schema.json +16 -16
- package/src/generators/meta/schema.json +16 -16
- package/src/generators/preset/schema.json +11 -11
- package/src/generators/resource-route/schema.json +41 -41
- package/src/generators/route/schema.json +52 -52
- package/src/generators/setup/schema.json +11 -11
- package/src/generators/setup-tailwind/schema.json +27 -27
- package/src/generators/storybook-configuration/schema.json +76 -76
- package/src/generators/style/schema.json +23 -23
package/executors.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"executors": {
|
|
3
|
+
"serve": {
|
|
4
|
+
"implementation": "./src/executors/serve/serve.impl",
|
|
5
|
+
"schema": "./src/executors/serve/schema.json",
|
|
6
|
+
"description": "Serve a Remix application."
|
|
7
|
+
},
|
|
8
|
+
"build": {
|
|
9
|
+
"implementation": "./src/executors/build/build.impl",
|
|
10
|
+
"schema": "./src/executors/build/schema.json",
|
|
11
|
+
"description": "Build a Remix application."
|
|
12
|
+
}
|
|
12
13
|
}
|
|
13
|
-
}
|
|
14
14
|
}
|
package/generators.json
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
2
|
+
"$schema": "https://json-schema.org/schema",
|
|
3
|
+
"name": "NxRemix",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"extends": ["@nx/react"],
|
|
6
|
+
"generators": {
|
|
7
|
+
"preset": {
|
|
8
|
+
"implementation": "./src/generators/preset/preset.impl",
|
|
9
|
+
"schema": "./src/generators/preset/schema.json",
|
|
10
|
+
"description": "Generate a new Remix workspace",
|
|
11
|
+
"hidden": true
|
|
12
|
+
},
|
|
13
|
+
"setup": {
|
|
14
|
+
"implementation": "./src/generators/setup/setup.impl",
|
|
15
|
+
"schema": "./src/generators/setup/schema.json",
|
|
16
|
+
"description": "Setup a Remix in an existing workspace",
|
|
17
|
+
"hidden": true
|
|
18
|
+
},
|
|
19
|
+
"application": {
|
|
20
|
+
"implementation": "./src/generators/application/application.impl#remixApplicationGeneratorInternal",
|
|
21
|
+
"schema": "./src/generators/application/schema.json",
|
|
22
|
+
"description": "Generate a new Remix application",
|
|
23
|
+
"aliases": ["app"],
|
|
24
|
+
"x-type": "application"
|
|
25
|
+
},
|
|
26
|
+
"cypress-component-configuration": {
|
|
27
|
+
"implementation": "./src/generators/cypress-component-configuration/cypress-component-configuration.impl#cypressComponentConfigurationGeneratorInternal",
|
|
28
|
+
"schema": "./src/generators/cypress-component-configuration/schema.json",
|
|
29
|
+
"description": "Generate a Cypress Component Testing configuration for a Remix project"
|
|
30
|
+
},
|
|
31
|
+
"library": {
|
|
32
|
+
"implementation": "./src/generators/library/library.impl#remixLibraryGeneratorInternal",
|
|
33
|
+
"schema": "./src/generators/library/schema.json",
|
|
34
|
+
"description": "Generate a new library",
|
|
35
|
+
"aliases": ["lib"],
|
|
36
|
+
"x-type": "library"
|
|
37
|
+
},
|
|
38
|
+
"init": {
|
|
39
|
+
"implementation": "./src/generators/init/init#remixInitGeneratorInternal",
|
|
40
|
+
"schema": "./src/generators/init/schema.json",
|
|
41
|
+
"description": "Initialize the `@nx/remix` plugin.",
|
|
42
|
+
"hidden": true
|
|
43
|
+
},
|
|
44
|
+
"route": {
|
|
45
|
+
"implementation": "./src/generators/route/route.impl",
|
|
46
|
+
"schema": "./src/generators/route/schema.json",
|
|
47
|
+
"description": "Generate a new route"
|
|
48
|
+
},
|
|
49
|
+
"resource-route": {
|
|
50
|
+
"implementation": "./src/generators/resource-route/resource-route.impl",
|
|
51
|
+
"schema": "./src/generators/resource-route/schema.json",
|
|
52
|
+
"description": "Generate a new resource route"
|
|
53
|
+
},
|
|
54
|
+
"action": {
|
|
55
|
+
"implementation": "./src/generators/action/action.impl",
|
|
56
|
+
"schema": "./src/generators/action/schema.json",
|
|
57
|
+
"description": "Add an action function to an existing route"
|
|
58
|
+
},
|
|
59
|
+
"loader": {
|
|
60
|
+
"implementation": "./src/generators/loader/loader.impl",
|
|
61
|
+
"schema": "./src/generators/loader/schema.json",
|
|
62
|
+
"description": "Add a loader function to an existing route"
|
|
63
|
+
},
|
|
64
|
+
"style": {
|
|
65
|
+
"implementation": "./src/generators/style/style.impl",
|
|
66
|
+
"schema": "./src/generators/style/schema.json",
|
|
67
|
+
"description": "Generates a new stylesheet and adds it to an existing route"
|
|
68
|
+
},
|
|
69
|
+
"setup-tailwind": {
|
|
70
|
+
"implementation": "./src/generators/setup-tailwind/setup-tailwind.impl",
|
|
71
|
+
"schema": "./src/generators/setup-tailwind/schema.json",
|
|
72
|
+
"description": "Generates a TailwindCSS configuration for the Remix application",
|
|
73
|
+
"x-deprecated": "Generating Tailwind configuration is no longer maintained. This generator will be removed in Nx 23."
|
|
74
|
+
},
|
|
75
|
+
"storybook-configuration": {
|
|
76
|
+
"implementation": "./src/generators/storybook-configuration/storybook-configuration.impl#remixStorybookConfiguration",
|
|
77
|
+
"schema": "./src/generators/storybook-configuration/schema.json",
|
|
78
|
+
"description": "Generates a Storybook configuration for a Remix application"
|
|
79
|
+
},
|
|
80
|
+
"meta": {
|
|
81
|
+
"implementation": "./src/generators/meta/meta.impl",
|
|
82
|
+
"schema": "./src/generators/meta/schema.json",
|
|
83
|
+
"description": "Add a meta function to an existing route"
|
|
84
|
+
},
|
|
85
|
+
"error-boundary": {
|
|
86
|
+
"implementation": "./src/generators/error-boundary/error-boundary.impl",
|
|
87
|
+
"schema": "./src/generators/error-boundary/schema.json",
|
|
88
|
+
"description": "Add an ErrorBoundary to an existing route"
|
|
89
|
+
},
|
|
90
|
+
"convert-to-inferred": {
|
|
91
|
+
"factory": "./src/generators/convert-to-inferred/convert-to-inferred",
|
|
92
|
+
"schema": "./src/generators/convert-to-inferred/schema.json",
|
|
93
|
+
"description": "Convert existing Remix project(s) using `@nx/remix:*` executors to use `@nx/remix/plugin`. Defaults to migrating all projects. Pass '--project' to migrate only one target."
|
|
94
|
+
}
|
|
94
95
|
}
|
|
95
|
-
}
|
|
96
96
|
}
|
package/migrations.json
CHANGED
|
@@ -1,143 +1,143 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
2
|
+
"generators": {},
|
|
3
|
+
"packageJsonUpdates": {
|
|
4
|
+
"20.1.0": {
|
|
5
|
+
"version": "20.1.0-beta.5",
|
|
6
|
+
"packages": {
|
|
7
|
+
"@remix-run/node": {
|
|
8
|
+
"version": "^2.14.0",
|
|
9
|
+
"alwaysAddToPackageJson": true
|
|
10
|
+
},
|
|
11
|
+
"@remix-run/react": {
|
|
12
|
+
"version": "^2.14.0",
|
|
13
|
+
"alwaysAddToPackageJson": true
|
|
14
|
+
},
|
|
15
|
+
"@remix-run/serve": {
|
|
16
|
+
"version": "^2.14.0",
|
|
17
|
+
"alwaysAddToPackageJson": true
|
|
18
|
+
},
|
|
19
|
+
"@remix-run/dev": {
|
|
20
|
+
"version": "^2.14.0",
|
|
21
|
+
"alwaysAddToPackageJson": true
|
|
22
|
+
},
|
|
23
|
+
"@remix-run/css-bundle": {
|
|
24
|
+
"version": "^2.14.0",
|
|
25
|
+
"alwaysAddToPackageJson": true
|
|
26
|
+
},
|
|
27
|
+
"@remix-run/eslint-config": {
|
|
28
|
+
"version": "^2.14.0",
|
|
29
|
+
"alwaysAddToPackageJson": true
|
|
30
|
+
},
|
|
31
|
+
"@remix-run/server-runtime": {
|
|
32
|
+
"version": "^2.14.0",
|
|
33
|
+
"alwaysAddToPackageJson": false
|
|
34
|
+
},
|
|
35
|
+
"@remix-run/testing": {
|
|
36
|
+
"version": "^2.14.0",
|
|
37
|
+
"alwaysAddToPackageJson": false
|
|
38
|
+
},
|
|
39
|
+
"@remix-run/express": {
|
|
40
|
+
"version": "^2.14.0",
|
|
41
|
+
"alwaysAddToPackageJson": false
|
|
42
|
+
},
|
|
43
|
+
"@remix-run/cloudflare": {
|
|
44
|
+
"version": "^2.14.0",
|
|
45
|
+
"alwaysAddToPackageJson": false
|
|
46
|
+
},
|
|
47
|
+
"@remix-run/cloudflare-pages": {
|
|
48
|
+
"version": "^2.14.0",
|
|
49
|
+
"alwaysAddToPackageJson": false
|
|
50
|
+
},
|
|
51
|
+
"@remix-run/cloudflare-workers": {
|
|
52
|
+
"version": "^2.14.0",
|
|
53
|
+
"alwaysAddToPackageJson": false
|
|
54
|
+
},
|
|
55
|
+
"@remix-run/architect": {
|
|
56
|
+
"version": "^2.14.0",
|
|
57
|
+
"alwaysAddToPackageJson": false
|
|
58
|
+
},
|
|
59
|
+
"@remix-run/deno": {
|
|
60
|
+
"version": "^2.14.0",
|
|
61
|
+
"alwaysAddToPackageJson": false
|
|
62
|
+
},
|
|
63
|
+
"@remix-run/route-config": {
|
|
64
|
+
"version": "^2.14.0",
|
|
65
|
+
"alwaysAddToPackageJson": false
|
|
66
|
+
},
|
|
67
|
+
"@remix-run/fs-routes": {
|
|
68
|
+
"version": "^2.14.0",
|
|
69
|
+
"alwaysAddToPackageJson": false
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"22.3.4": {
|
|
74
|
+
"version": "22.3.4-beta.0",
|
|
75
|
+
"packages": {
|
|
76
|
+
"@remix-run/node": {
|
|
77
|
+
"version": "2.17.3",
|
|
78
|
+
"alwaysAddToPackageJson": true
|
|
79
|
+
},
|
|
80
|
+
"@remix-run/react": {
|
|
81
|
+
"version": "2.17.3",
|
|
82
|
+
"alwaysAddToPackageJson": true
|
|
83
|
+
},
|
|
84
|
+
"@remix-run/serve": {
|
|
85
|
+
"version": "2.17.3",
|
|
86
|
+
"alwaysAddToPackageJson": true
|
|
87
|
+
},
|
|
88
|
+
"@remix-run/dev": {
|
|
89
|
+
"version": "2.17.3",
|
|
90
|
+
"alwaysAddToPackageJson": true
|
|
91
|
+
},
|
|
92
|
+
"@remix-run/css-bundle": {
|
|
93
|
+
"version": "2.17.3",
|
|
94
|
+
"alwaysAddToPackageJson": true
|
|
95
|
+
},
|
|
96
|
+
"@remix-run/eslint-config": {
|
|
97
|
+
"version": "2.17.3",
|
|
98
|
+
"alwaysAddToPackageJson": true
|
|
99
|
+
},
|
|
100
|
+
"@remix-run/server-runtime": {
|
|
101
|
+
"version": "2.17.3",
|
|
102
|
+
"alwaysAddToPackageJson": false
|
|
103
|
+
},
|
|
104
|
+
"@remix-run/testing": {
|
|
105
|
+
"version": "2.17.3",
|
|
106
|
+
"alwaysAddToPackageJson": false
|
|
107
|
+
},
|
|
108
|
+
"@remix-run/express": {
|
|
109
|
+
"version": "2.17.3",
|
|
110
|
+
"alwaysAddToPackageJson": false
|
|
111
|
+
},
|
|
112
|
+
"@remix-run/cloudflare": {
|
|
113
|
+
"version": "2.17.3",
|
|
114
|
+
"alwaysAddToPackageJson": false
|
|
115
|
+
},
|
|
116
|
+
"@remix-run/cloudflare-pages": {
|
|
117
|
+
"version": "2.17.3",
|
|
118
|
+
"alwaysAddToPackageJson": false
|
|
119
|
+
},
|
|
120
|
+
"@remix-run/cloudflare-workers": {
|
|
121
|
+
"version": "2.17.3",
|
|
122
|
+
"alwaysAddToPackageJson": false
|
|
123
|
+
},
|
|
124
|
+
"@remix-run/architect": {
|
|
125
|
+
"version": "2.17.3",
|
|
126
|
+
"alwaysAddToPackageJson": false
|
|
127
|
+
},
|
|
128
|
+
"@remix-run/deno": {
|
|
129
|
+
"version": "2.17.3",
|
|
130
|
+
"alwaysAddToPackageJson": false
|
|
131
|
+
},
|
|
132
|
+
"@remix-run/route-config": {
|
|
133
|
+
"version": "2.17.3",
|
|
134
|
+
"alwaysAddToPackageJson": false
|
|
135
|
+
},
|
|
136
|
+
"@remix-run/fs-routes": {
|
|
137
|
+
"version": "2.17.3",
|
|
138
|
+
"alwaysAddToPackageJson": false
|
|
139
|
+
}
|
|
140
|
+
}
|
|
139
141
|
}
|
|
140
|
-
}
|
|
141
142
|
}
|
|
142
|
-
}
|
|
143
143
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "22.7.0-beta.
|
|
3
|
+
"version": "22.7.0-beta.9",
|
|
4
4
|
"description": "The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, routes, loaders, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
"migrations": "./migrations.json"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@nx/devkit": "22.7.0-beta.
|
|
34
|
-
"@nx/js": "22.7.0-beta.
|
|
35
|
-
"@nx/react": "22.7.0-beta.
|
|
36
|
-
"@nx/workspace": "22.7.0-beta.
|
|
33
|
+
"@nx/devkit": "22.7.0-beta.9",
|
|
34
|
+
"@nx/js": "22.7.0-beta.9",
|
|
35
|
+
"@nx/react": "22.7.0-beta.9",
|
|
36
|
+
"@nx/workspace": "22.7.0-beta.9",
|
|
37
37
|
"tslib": "^2.3.0",
|
|
38
38
|
"@phenomnomnominal/tsquery": "~6.1.4"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"nx": "22.7.0-beta.
|
|
42
|
-
"@nx/vitest": "22.7.0-beta.
|
|
41
|
+
"nx": "22.7.0-beta.9",
|
|
42
|
+
"@nx/vitest": "22.7.0-beta.9"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@remix-run/dev": "^2.17.3"
|
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
"version": 2,
|
|
3
|
+
"outputCapture": "pipe",
|
|
4
|
+
"$schema": "https://json-schema.org/schema",
|
|
5
|
+
"cli": "nx",
|
|
6
|
+
"title": "Remix Build",
|
|
7
|
+
"description": "Build a Remix app.",
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"outputPath": {
|
|
11
|
+
"type": "string",
|
|
12
|
+
"description": "The output path of the generated files.",
|
|
13
|
+
"x-completion-type": "directory",
|
|
14
|
+
"x-priority": "important"
|
|
15
|
+
},
|
|
16
|
+
"includeDevDependenciesInPackageJson": {
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
"description": "Include `devDependencies` in the generated package.json file. By default only production `dependencies` are included.",
|
|
19
|
+
"default": false
|
|
20
|
+
},
|
|
21
|
+
"generatePackageJson": {
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"description": "Generate package.json file in the output folder.",
|
|
24
|
+
"default": false
|
|
25
|
+
},
|
|
26
|
+
"generateLockfile": {
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"description": "Generate a lockfile (e.g. package-lock.json) that matches the workspace lockfile to ensure package versions match.",
|
|
29
|
+
"default": false
|
|
30
|
+
},
|
|
31
|
+
"skipOverrides": {
|
|
32
|
+
"type": "boolean",
|
|
33
|
+
"description": "Do not add a `overrides` and `resolutions` entries to the generated package.json file. Only works in conjunction with `generatePackageJson` option."
|
|
34
|
+
},
|
|
35
|
+
"skipPackageManager": {
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"description": "Do not add a `packageManager` entry to the generated package.json file. Only works in conjunction with `generatePackageJson` option."
|
|
38
|
+
},
|
|
39
|
+
"sourcemap": {
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"description": "Generate source maps for production.",
|
|
42
|
+
"default": false
|
|
43
|
+
}
|
|
15
44
|
},
|
|
16
|
-
"
|
|
17
|
-
"type": "boolean",
|
|
18
|
-
"description": "Include `devDependencies` in the generated package.json file. By default only production `dependencies` are included.",
|
|
19
|
-
"default": false
|
|
20
|
-
},
|
|
21
|
-
"generatePackageJson": {
|
|
22
|
-
"type": "boolean",
|
|
23
|
-
"description": "Generate package.json file in the output folder.",
|
|
24
|
-
"default": false
|
|
25
|
-
},
|
|
26
|
-
"generateLockfile": {
|
|
27
|
-
"type": "boolean",
|
|
28
|
-
"description": "Generate a lockfile (e.g. package-lock.json) that matches the workspace lockfile to ensure package versions match.",
|
|
29
|
-
"default": false
|
|
30
|
-
},
|
|
31
|
-
"skipOverrides": {
|
|
32
|
-
"type": "boolean",
|
|
33
|
-
"description": "Do not add a `overrides` and `resolutions` entries to the generated package.json file. Only works in conjunction with `generatePackageJson` option."
|
|
34
|
-
},
|
|
35
|
-
"skipPackageManager": {
|
|
36
|
-
"type": "boolean",
|
|
37
|
-
"description": "Do not add a `packageManager` entry to the generated package.json file. Only works in conjunction with `generatePackageJson` option."
|
|
38
|
-
},
|
|
39
|
-
"sourcemap": {
|
|
40
|
-
"type": "boolean",
|
|
41
|
-
"description": "Generate source maps for production.",
|
|
42
|
-
"default": false
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"required": ["outputPath"]
|
|
45
|
+
"required": ["outputPath"]
|
|
46
46
|
}
|