@breadstone-infrastructure/nx-tasks 0.0.68 → 0.0.69
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/alias-replace/schema.json +1 -0
- package/executors/clean/schema.json +1 -0
- package/executors/copy/schema.json +1 -0
- package/executors/docs/schema.json +1 -0
- package/executors/doppler-config-sync/schema.json +1 -0
- package/executors/icon-collection-builder/schema.json +1 -0
- package/executors/icon-collection-downloader/schema.json +1 -0
- package/executors/lit-docs/schema.json +1 -0
- package/executors/lit-style-transform/schema.json +1 -0
- package/executors/localizator/schema.json +10 -0
- package/executors/markdown-to-typescript-transform/schema.json +1 -0
- package/executors/ng-packagr-build/schema.json +1 -0
- package/executors/ng-proxy-transform/schema.json +1 -0
- package/executors/openapi-generator/schema.json +1 -0
- package/executors/react-proxy-transform/schema.json +1 -0
- package/executors/release-package/schema.json +1 -0
- package/executors/release-package-json/schema.json +1 -0
- package/executors/scss-style-bundle/schema.json +1 -0
- package/executors/scss-style-transform/schema.json +1 -0
- package/executors/svelte-proxy-transform/schema.json +1 -0
- package/executors/unrelease-package/schema.json +1 -0
- package/executors/vercel-edge-config-sync/schema.json +1 -0
- package/executors/vue-proxy-transform/schema.json +1 -0
- package/executors.json +46 -23
- package/package.json +9 -9
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
package/executors.json
CHANGED
|
@@ -2,95 +2,118 @@
|
|
|
2
2
|
"executors": {
|
|
3
3
|
"alias-replace": {
|
|
4
4
|
"description": "alias-replace task executor",
|
|
5
|
-
"implementation": "./executors/alias-replace/executor"
|
|
5
|
+
"implementation": "./executors/alias-replace/executor",
|
|
6
|
+
"schema": "./executors/alias-replace/schema.json"
|
|
6
7
|
},
|
|
7
8
|
"clean": {
|
|
8
9
|
"description": "clean task executor",
|
|
9
|
-
"implementation": "./executors/clean/executor"
|
|
10
|
+
"implementation": "./executors/clean/executor",
|
|
11
|
+
"schema": "./executors/clean/schema.json"
|
|
10
12
|
},
|
|
11
13
|
"copy": {
|
|
12
14
|
"description": "copy task executor",
|
|
13
|
-
"implementation": "./executors/copy/executor"
|
|
15
|
+
"implementation": "./executors/copy/executor",
|
|
16
|
+
"schema": "./executors/copy/schema.json"
|
|
14
17
|
},
|
|
15
18
|
"docs": {
|
|
16
19
|
"description": "docs task executor",
|
|
17
|
-
"implementation": "./executors/docs/executor"
|
|
20
|
+
"implementation": "./executors/docs/executor",
|
|
21
|
+
"schema": "./executors/docs/schema.json"
|
|
18
22
|
},
|
|
19
23
|
"doppler-config-sync": {
|
|
20
24
|
"description": "doppler-config-sync task executor",
|
|
21
|
-
"implementation": "./executors/doppler-config-sync/executor"
|
|
25
|
+
"implementation": "./executors/doppler-config-sync/executor",
|
|
26
|
+
"schema": "./executors/doppler-config-sync/schema.json"
|
|
22
27
|
},
|
|
23
28
|
"icon-collection-builder": {
|
|
24
29
|
"description": "icon-collection-builder task executor",
|
|
25
|
-
"implementation": "./executors/icon-collection-builder/executor"
|
|
30
|
+
"implementation": "./executors/icon-collection-builder/executor",
|
|
31
|
+
"schema": "./executors/icon-collection-builder/schema.json"
|
|
26
32
|
},
|
|
27
33
|
"icon-collection-downloader": {
|
|
28
34
|
"description": "icon-collection-downloader task executor",
|
|
29
|
-
"implementation": "./executors/icon-collection-downloader/executor"
|
|
35
|
+
"implementation": "./executors/icon-collection-downloader/executor",
|
|
36
|
+
"schema": "./executors/icon-collection-downloader/schema.json"
|
|
30
37
|
},
|
|
31
38
|
"lit-style-transform": {
|
|
32
39
|
"description": "lit-style-transform task executor",
|
|
33
|
-
"implementation": "./executors/lit-style-transform/executor"
|
|
40
|
+
"implementation": "./executors/lit-style-transform/executor",
|
|
41
|
+
"schema": "./executors/lit-style-transform/schema.json"
|
|
34
42
|
},
|
|
35
43
|
"lit-docs": {
|
|
36
44
|
"description": "lit-docs task executor",
|
|
37
|
-
"implementation": "./executors/lit-docs/executor"
|
|
45
|
+
"implementation": "./executors/lit-docs/executor",
|
|
46
|
+
"schema": "./executors/lit-docs/schema.json"
|
|
38
47
|
},
|
|
39
48
|
"localizator": {
|
|
40
49
|
"description": "localizator task executor",
|
|
41
|
-
"implementation": "./executors/localizator/executor"
|
|
50
|
+
"implementation": "./executors/localizator/executor",
|
|
51
|
+
"schema": "./executors/localizator/schema.json"
|
|
42
52
|
},
|
|
43
53
|
"markdown-to-typescript-transform": {
|
|
44
54
|
"description": "markdown-to-typescript-transform task executor",
|
|
45
|
-
"implementation": "./executors/markdown-to-typescript-transform/executor"
|
|
55
|
+
"implementation": "./executors/markdown-to-typescript-transform/executor",
|
|
56
|
+
"schema": "./executors/markdown-to-typescript-transform/schema.json"
|
|
46
57
|
},
|
|
47
58
|
"ng-packagr-build": {
|
|
48
59
|
"description": "ng-packagr-build task executor",
|
|
49
|
-
"implementation": "./executors/ng-packagr-build/executor"
|
|
60
|
+
"implementation": "./executors/ng-packagr-build/executor",
|
|
61
|
+
"schema": "./executors/ng-packagr-build/schema.json"
|
|
50
62
|
},
|
|
51
63
|
"ng-proxy-transform": {
|
|
52
64
|
"description": "ng-proxy-transform task executor",
|
|
53
|
-
"implementation": "./executors/ng-proxy-transform/executor"
|
|
65
|
+
"implementation": "./executors/ng-proxy-transform/executor",
|
|
66
|
+
"schema": "./executors/ng-proxy-transform/schema.json"
|
|
54
67
|
},
|
|
55
68
|
"openapi-generator": {
|
|
56
69
|
"description": "openapi-generator task executor",
|
|
57
|
-
"implementation": "./executors/openapi-generator/executor"
|
|
70
|
+
"implementation": "./executors/openapi-generator/executor",
|
|
71
|
+
"schema": "./executors/openapi-generator/schema.json"
|
|
58
72
|
},
|
|
59
73
|
"react-proxy-transform": {
|
|
60
74
|
"description": "react-proxy-transform task executor",
|
|
61
|
-
"implementation": "./executors/react-proxy-transform/executor"
|
|
75
|
+
"implementation": "./executors/react-proxy-transform/executor",
|
|
76
|
+
"schema": "./executors/react-proxy-transform/schema.json"
|
|
62
77
|
},
|
|
63
78
|
"release-package": {
|
|
64
79
|
"description": "release package task executor",
|
|
65
|
-
"implementation": "./executors/release-package/executor"
|
|
80
|
+
"implementation": "./executors/release-package/executor",
|
|
81
|
+
"schema": "./executors/release-package/schema.json"
|
|
66
82
|
},
|
|
67
83
|
"release-package-json": {
|
|
68
84
|
"description": "release-package-json task executor",
|
|
69
|
-
"implementation": "./executors/release-package-json/executor"
|
|
85
|
+
"implementation": "./executors/release-package-json/executor",
|
|
86
|
+
"schema": "./executors/release-package-json/schema.json"
|
|
70
87
|
},
|
|
71
88
|
"scss-style-bundle": {
|
|
72
89
|
"description": "scss-style-bundle task executor",
|
|
73
|
-
"implementation": "./executors/scss-style-bundle/executor"
|
|
90
|
+
"implementation": "./executors/scss-style-bundle/executor",
|
|
91
|
+
"schema": "./executors/scss-style-bundle/schema.json"
|
|
74
92
|
},
|
|
75
93
|
"scss-style-transform": {
|
|
76
94
|
"description": "scss-style-transform task executor",
|
|
77
|
-
"implementation": "./executors/scss-style-transform/executor"
|
|
95
|
+
"implementation": "./executors/scss-style-transform/executor",
|
|
96
|
+
"schema": "./executors/scss-style-transform/schema.json"
|
|
78
97
|
},
|
|
79
98
|
"svelte-proxy-transform": {
|
|
80
99
|
"description": "svelte-proxy-transform task executor",
|
|
81
|
-
"implementation": "./executors/svelte-proxy-transform/executor"
|
|
100
|
+
"implementation": "./executors/svelte-proxy-transform/executor",
|
|
101
|
+
"schema": "./executors/svelte-proxy-transform/schema.json"
|
|
82
102
|
},
|
|
83
103
|
"unrelease-package": {
|
|
84
104
|
"description": "unrelease package task executor",
|
|
85
|
-
"implementation": "./executors/unrelease-package/executor"
|
|
105
|
+
"implementation": "./executors/unrelease-package/executor",
|
|
106
|
+
"schema": "./executors/unrelease-package/schema.json"
|
|
86
107
|
},
|
|
87
108
|
"vercel-edge-config-sync": {
|
|
88
109
|
"description": "vercel-edge-config-sync task executor",
|
|
89
|
-
"implementation": "./executors/vercel-edge-config-sync/executor"
|
|
110
|
+
"implementation": "./executors/vercel-edge-config-sync/executor",
|
|
111
|
+
"schema": "./executors/vercel-edge-config-sync/schema.json"
|
|
90
112
|
},
|
|
91
113
|
"vue-proxy-transform": {
|
|
92
114
|
"description": "vue-proxy-transform task executor",
|
|
93
|
-
"implementation": "./executors/vue-proxy-transform/executor"
|
|
115
|
+
"implementation": "./executors/vue-proxy-transform/executor",
|
|
116
|
+
"schema": "./executors/vue-proxy-transform/schema.json"
|
|
94
117
|
}
|
|
95
118
|
}
|
|
96
119
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone-infrastructure/nx-tasks",
|
|
3
3
|
"description": "Common nx tasks",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.69",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
7
7
|
"repository": {
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"types": "./Index.d.ts",
|
|
15
15
|
"executors": "./executors.json",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@breadstone-infrastructure/utilities": "^0.0.
|
|
18
|
-
"@breadstone-tools/cem-app": "^0.0.
|
|
19
|
-
"@breadstone-tools/cem-plugins-custom-js-doc-tags": "^0.0.
|
|
20
|
-
"@breadstone-tools/cem-plugins-expand-types": "^0.0.
|
|
21
|
-
"@breadstone-tools/localizator-app": "^0.0.
|
|
22
|
-
"@breadstone-tools/localizator-core": "^0.0.
|
|
23
|
-
"@breadstone-tools/openapi-app": "^0.0.
|
|
24
|
-
"@breadstone-tools/openapi-core": "^0.0.
|
|
17
|
+
"@breadstone-infrastructure/utilities": "^0.0.69",
|
|
18
|
+
"@breadstone-tools/cem-app": "^0.0.69",
|
|
19
|
+
"@breadstone-tools/cem-plugins-custom-js-doc-tags": "^0.0.69",
|
|
20
|
+
"@breadstone-tools/cem-plugins-expand-types": "^0.0.69",
|
|
21
|
+
"@breadstone-tools/localizator-app": "^0.0.69",
|
|
22
|
+
"@breadstone-tools/localizator-core": "^0.0.69",
|
|
23
|
+
"@breadstone-tools/openapi-app": "^0.0.69",
|
|
24
|
+
"@breadstone-tools/openapi-core": "^0.0.69",
|
|
25
25
|
"@microsoft/api-extractor": "^7.52.8",
|
|
26
26
|
"@nx/devkit": "^21.2.1",
|
|
27
27
|
"autoprefixer": "^10.4.21",
|