@razorwind/nx 0.0.21 → 0.0.22
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razorwind/nx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "A Nx plugin to support Razorwind development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -111,9 +111,9 @@
|
|
|
111
111
|
"typings": "dist/index.d.ts",
|
|
112
112
|
"dependencies": {
|
|
113
113
|
"@nx/devkit": "23.1.0",
|
|
114
|
-
"@power-plant/core": "^0.0.
|
|
115
|
-
"@razorwind/core": "
|
|
116
|
-
"@storm-software/workspace-tools": "^1.296.
|
|
114
|
+
"@power-plant/core": "^0.0.75",
|
|
115
|
+
"@razorwind/core": "0.0.27",
|
|
116
|
+
"@storm-software/workspace-tools": "^1.296.93",
|
|
117
117
|
"@stryke/hash": "^0.13.56",
|
|
118
118
|
"@stryke/path": "^0.29.29",
|
|
119
119
|
"@stryke/string-format": "^0.17.44",
|
|
@@ -124,15 +124,15 @@
|
|
|
124
124
|
"untyped": "^2.0.0"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
|
-
"@powerlines/plugin-tsdown": "^0.1.
|
|
128
|
-
"@powerlines/plugin-untyped": "^0.2.
|
|
127
|
+
"@powerlines/plugin-tsdown": "^0.1.589",
|
|
128
|
+
"@powerlines/plugin-untyped": "^0.2.602",
|
|
129
129
|
"@types/node": "^25.9.5",
|
|
130
130
|
"eslint-flat-config-utils": "^3.2.0",
|
|
131
|
-
"jsonc-eslint-parser": "^3.
|
|
131
|
+
"jsonc-eslint-parser": "^3.2.0"
|
|
132
132
|
},
|
|
133
133
|
"peerDependencies": { "nx": ">=23.0.0" },
|
|
134
134
|
"publishConfig": { "access": "public" },
|
|
135
135
|
"executors": "./executors.json",
|
|
136
136
|
"generators": "./generators.json",
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "556f2499e0ef94c0463e86c2d8f9b42bbdb0bc08"
|
|
138
138
|
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
3
|
-
// Do not edit this file directly
|
|
4
|
-
|
|
5
|
-
export interface GenerateExecutorSchema {
|
|
6
|
-
/**
|
|
7
|
-
* The path to the configuration file
|
|
8
|
-
*
|
|
9
|
-
* @default "{projectRoot}/razorwind.config.ts"
|
|
10
|
-
*/
|
|
11
|
-
configFile: string,
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* The mode to use
|
|
15
|
-
*
|
|
16
|
-
* @default "production"
|
|
17
|
-
*
|
|
18
|
-
* @enum development,production
|
|
19
|
-
*/
|
|
20
|
-
mode: string,
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* The path to a directory containing component directories or files, or an array of paths
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* @oneOf [object Object],[object Object]
|
|
27
|
-
*/
|
|
28
|
-
componentsPath?: string | string[],
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* The path to the tokens.json file, or an array of paths
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
* @oneOf [object Object],[object Object]
|
|
35
|
-
*/
|
|
36
|
-
tokensPath?: string | string[],
|
|
37
|
-
}
|
|
38
|
-
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "#",
|
|
3
|
-
"title": "Generate Executor",
|
|
4
|
-
"description": "A type definition for the Powerlines - Generate executor schema",
|
|
5
|
-
"required": [
|
|
6
|
-
"configFile",
|
|
7
|
-
"mode"
|
|
8
|
-
],
|
|
9
|
-
"properties": {
|
|
10
|
-
"configFile": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"description": "The path to the configuration file",
|
|
13
|
-
"default": "{projectRoot}/razorwind.config.ts"
|
|
14
|
-
},
|
|
15
|
-
"mode": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"description": "The mode to use",
|
|
18
|
-
"default": "production",
|
|
19
|
-
"enum": [
|
|
20
|
-
"development",
|
|
21
|
-
"production"
|
|
22
|
-
]
|
|
23
|
-
},
|
|
24
|
-
"componentsPath": {
|
|
25
|
-
"oneOf": [
|
|
26
|
-
{
|
|
27
|
-
"type": "string"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"type": "array",
|
|
31
|
-
"items": {
|
|
32
|
-
"type": "string"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
"tsType": "string | string[]",
|
|
37
|
-
"description": "The path to a directory containing component directories or files, or an array of paths"
|
|
38
|
-
},
|
|
39
|
-
"tokensPath": {
|
|
40
|
-
"oneOf": [
|
|
41
|
-
{
|
|
42
|
-
"type": "string"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"type": "array",
|
|
46
|
-
"items": {
|
|
47
|
-
"type": "string"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
|
-
"tsType": "string | string[]",
|
|
52
|
-
"description": "The path to the tokens.json file, or an array of paths"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
"additionalProperties": false,
|
|
56
|
-
"type": "object",
|
|
57
|
-
"default": {
|
|
58
|
-
"configFile": "{projectRoot}/razorwind.config.ts",
|
|
59
|
-
"mode": "production"
|
|
60
|
-
}
|
|
61
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
3
|
-
// Do not edit this file directly
|
|
4
|
-
|
|
5
|
-
export interface SyncGeneratorSchema {
|
|
6
|
-
/**
|
|
7
|
-
* Mode
|
|
8
|
-
*
|
|
9
|
-
* The mode to use when running Razorwind generate
|
|
10
|
-
*
|
|
11
|
-
* @default "production"
|
|
12
|
-
*
|
|
13
|
-
* @enum development,production
|
|
14
|
-
*/
|
|
15
|
-
mode?: string,
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Razorwind Config File
|
|
19
|
-
*
|
|
20
|
-
* The path to the Razorwind config file to use when running generate. If not provided, the default config file will be used.
|
|
21
|
-
*
|
|
22
|
-
*/
|
|
23
|
-
configFile?: string,
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Target Name
|
|
27
|
-
*
|
|
28
|
-
* The name of the target to use when running Razorwind generate
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
* @$default generate
|
|
32
|
-
*/
|
|
33
|
-
targetName?: string,
|
|
34
|
-
|
|
35
|
-
/**
|
|
36
|
-
* Out of Sync Message
|
|
37
|
-
*
|
|
38
|
-
* The message to display when Razorwind generated files are out of sync
|
|
39
|
-
*
|
|
40
|
-
* @default "Razorwind generated files are out of sync. Run `nx sync` to regenerate."
|
|
41
|
-
*/
|
|
42
|
-
outOfSyncMessage?: string,
|
|
43
|
-
}
|
|
44
|
-
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "#",
|
|
3
|
-
"title": "Sync Generator",
|
|
4
|
-
"description": "A type definition for the Razorwind - Sync generator's options",
|
|
5
|
-
"required": [],
|
|
6
|
-
"properties": {
|
|
7
|
-
"mode": {
|
|
8
|
-
"title": "Mode",
|
|
9
|
-
"type": "string",
|
|
10
|
-
"description": "The mode to use when running Razorwind generate",
|
|
11
|
-
"enum": [
|
|
12
|
-
"development",
|
|
13
|
-
"production"
|
|
14
|
-
],
|
|
15
|
-
"id": "#mode",
|
|
16
|
-
"default": "production"
|
|
17
|
-
},
|
|
18
|
-
"configFile": {
|
|
19
|
-
"title": "Razorwind Config File",
|
|
20
|
-
"type": "string",
|
|
21
|
-
"description": "The path to the Razorwind config file to use when running generate. If not provided, the default config file will be used.",
|
|
22
|
-
"id": "#configFile"
|
|
23
|
-
},
|
|
24
|
-
"targetName": {
|
|
25
|
-
"title": "Target Name",
|
|
26
|
-
"type": "string",
|
|
27
|
-
"description": "The name of the target to use when running Razorwind generate",
|
|
28
|
-
"$default": "generate",
|
|
29
|
-
"id": "#targetName"
|
|
30
|
-
},
|
|
31
|
-
"outOfSyncMessage": {
|
|
32
|
-
"title": "Out of Sync Message",
|
|
33
|
-
"type": "string",
|
|
34
|
-
"description": "The message to display when Razorwind generated files are out of sync",
|
|
35
|
-
"id": "#outOfSyncMessage",
|
|
36
|
-
"default": "Razorwind generated files are out of sync. Run `nx sync` to regenerate."
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"type": "object",
|
|
40
|
-
"default": {
|
|
41
|
-
"mode": "production",
|
|
42
|
-
"outOfSyncMessage": "Razorwind generated files are out of sync. Run `nx sync` to regenerate."
|
|
43
|
-
}
|
|
44
|
-
}
|