@storm-software/workspace-tools 1.264.18 → 1.264.20
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 +20 -0
- package/README.md +1 -1
- package/dist/{chunk-HXCWS5GR.mjs → chunk-5OWPWITA.mjs} +58 -59
- package/dist/{chunk-YX566HFQ.js → chunk-TLFV74ZV.js} +12 -7
- package/dist/{chunk-5SK55RA7.js → chunk-W25HMODD.js} +58 -59
- package/dist/{chunk-OBMMNTJQ.mjs → chunk-WGRKPUAV.mjs} +7 -2
- package/dist/executors.js +2 -2
- package/dist/executors.mjs +1 -1
- package/dist/generators.js +2 -2
- package/dist/generators.mjs +1 -1
- package/dist/index.js +3 -3
- package/dist/index.mjs +2 -2
- package/dist/src/executors/esbuild/executor.js +2 -2
- package/dist/src/executors/esbuild/executor.mjs +1 -1
- package/dist/src/generators/release-version/generator.js +2 -2
- package/dist/src/generators/release-version/generator.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Changelog for Storm Ops - Workspace Tools
|
|
4
|
+
|
|
5
|
+
## [1.264.20](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.20) (2025-03-17)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([90d1828f9](https://github.com/storm-software/storm-ops/commit/90d1828f9))
|
|
11
|
+
|
|
12
|
+
## [1.264.19](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.264.19) (2025-03-17)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Reformat CHANGELOG markdown files
|
|
17
|
+
([8d5d61c71](https://github.com/storm-software/storm-ops/commit/8d5d61c71))
|
|
18
|
+
- **monorepo:** Regenerate README markdown files
|
|
19
|
+
([d085829dc](https://github.com/storm-software/storm-ops/commit/d085829dc))
|
|
20
|
+
|
|
1
21
|

|
|
2
22
|
|
|
3
23
|
# Changelog for Storm Ops - Workspace Tools
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -28,6 +28,7 @@ import { updateLockFile } from "@nx/js/src/generators/release-version/utils/upda
|
|
|
28
28
|
|
|
29
29
|
// ../git-tools/src/types.ts
|
|
30
30
|
var DEFAULT_COMMIT_TYPES = {
|
|
31
|
+
/* --- Bumps version when selected --- */
|
|
31
32
|
chore: {
|
|
32
33
|
description: "Other changes that don't modify src or test files",
|
|
33
34
|
title: "Chore",
|
|
@@ -38,36 +39,16 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
38
39
|
hidden: false
|
|
39
40
|
}
|
|
40
41
|
},
|
|
41
|
-
|
|
42
|
-
description: "
|
|
43
|
-
title: "
|
|
44
|
-
emoji: "\u{
|
|
45
|
-
semverBump: "patch",
|
|
46
|
-
changelog: {
|
|
47
|
-
title: "Continuous Integration",
|
|
48
|
-
hidden: false
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
deps: {
|
|
52
|
-
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
53
|
-
title: "Dependencies",
|
|
54
|
-
emoji: "\u{1F4E6} ",
|
|
42
|
+
fix: {
|
|
43
|
+
description: "A change that resolves an issue previously identified with the package",
|
|
44
|
+
title: "Bug Fix",
|
|
45
|
+
emoji: "\u{1FAB2} ",
|
|
55
46
|
semverBump: "patch",
|
|
56
47
|
changelog: {
|
|
57
|
-
title: "
|
|
48
|
+
title: "Bug Fixes",
|
|
58
49
|
hidden: false
|
|
59
50
|
}
|
|
60
51
|
},
|
|
61
|
-
docs: {
|
|
62
|
-
description: "A change that only includes documentation updates",
|
|
63
|
-
title: "Documentation",
|
|
64
|
-
emoji: "\u{1F4DC} ",
|
|
65
|
-
semverBump: "none",
|
|
66
|
-
changelog: {
|
|
67
|
-
title: "Documentation",
|
|
68
|
-
hidden: true
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
52
|
feat: {
|
|
72
53
|
description: "A change that adds a new feature to the package",
|
|
73
54
|
title: "Feature",
|
|
@@ -78,23 +59,13 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
78
59
|
hidden: false
|
|
79
60
|
}
|
|
80
61
|
},
|
|
81
|
-
|
|
82
|
-
description: "
|
|
83
|
-
title: "
|
|
84
|
-
emoji: "\u{
|
|
62
|
+
ci: {
|
|
63
|
+
description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
64
|
+
title: "Continuous Integration",
|
|
65
|
+
emoji: "\u{1F9F0} ",
|
|
85
66
|
semverBump: "patch",
|
|
86
67
|
changelog: {
|
|
87
|
-
title: "
|
|
88
|
-
hidden: false
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
perf: {
|
|
92
|
-
description: "A code change that improves performance",
|
|
93
|
-
title: "Performance Improvement",
|
|
94
|
-
emoji: "\u23F1\uFE0F ",
|
|
95
|
-
semverBump: "none",
|
|
96
|
-
changelog: {
|
|
97
|
-
title: "Performance Improvements",
|
|
68
|
+
title: "Continuous Integration",
|
|
98
69
|
hidden: false
|
|
99
70
|
}
|
|
100
71
|
},
|
|
@@ -104,27 +75,38 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
104
75
|
emoji: "\u{1F9EA} ",
|
|
105
76
|
semverBump: "patch",
|
|
106
77
|
changelog: {
|
|
107
|
-
title: "Code Improvements",
|
|
78
|
+
title: "Source Code Improvements",
|
|
108
79
|
hidden: false
|
|
109
80
|
}
|
|
110
81
|
},
|
|
111
|
-
|
|
112
|
-
description: "
|
|
113
|
-
title: "
|
|
114
|
-
emoji: "\u{
|
|
82
|
+
style: {
|
|
83
|
+
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
84
|
+
title: "Style Improvements",
|
|
85
|
+
emoji: "\u{1F48E} ",
|
|
115
86
|
semverBump: "patch",
|
|
116
87
|
changelog: {
|
|
117
|
-
title: "
|
|
88
|
+
title: "Style Improvements",
|
|
118
89
|
hidden: false
|
|
119
90
|
}
|
|
120
91
|
},
|
|
121
|
-
|
|
122
|
-
description: "
|
|
123
|
-
title: "
|
|
124
|
-
emoji: "\
|
|
125
|
-
semverBump: "
|
|
92
|
+
perf: {
|
|
93
|
+
description: "A code change that improves performance",
|
|
94
|
+
title: "Performance Improvement",
|
|
95
|
+
emoji: "\u23F1\uFE0F ",
|
|
96
|
+
semverBump: "patch",
|
|
126
97
|
changelog: {
|
|
127
|
-
title: "
|
|
98
|
+
title: "Performance Improvements",
|
|
99
|
+
hidden: false
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
/* --- Does not bump version when selected --- */
|
|
103
|
+
docs: {
|
|
104
|
+
description: "A change that only includes documentation updates",
|
|
105
|
+
title: "Documentation",
|
|
106
|
+
emoji: "\u{1F4DC} ",
|
|
107
|
+
semverBump: "none",
|
|
108
|
+
changelog: {
|
|
109
|
+
title: "Documentation",
|
|
128
110
|
hidden: false
|
|
129
111
|
}
|
|
130
112
|
},
|
|
@@ -138,16 +120,30 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
138
120
|
hidden: true
|
|
139
121
|
}
|
|
140
122
|
},
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
123
|
+
/* --- Not included in commitlint but included in changelog --- */
|
|
124
|
+
deps: {
|
|
125
|
+
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
126
|
+
title: "Dependencies",
|
|
127
|
+
emoji: "\u{1F4E6} ",
|
|
128
|
+
hidden: true,
|
|
129
|
+
semverBump: "patch",
|
|
146
130
|
changelog: {
|
|
147
|
-
title: "
|
|
131
|
+
title: "Dependency Upgrades",
|
|
148
132
|
hidden: false
|
|
149
133
|
}
|
|
150
134
|
},
|
|
135
|
+
/* --- Not included in commitlint or changelog --- */
|
|
136
|
+
build: {
|
|
137
|
+
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
138
|
+
title: "Build",
|
|
139
|
+
emoji: "\u{1F6E0} ",
|
|
140
|
+
hidden: true,
|
|
141
|
+
semverBump: "none",
|
|
142
|
+
changelog: {
|
|
143
|
+
title: "Build",
|
|
144
|
+
hidden: true
|
|
145
|
+
}
|
|
146
|
+
},
|
|
151
147
|
release: {
|
|
152
148
|
description: "Publishing a commit containing a newly released version",
|
|
153
149
|
title: "Publish Release",
|
|
@@ -165,7 +161,10 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
165
161
|
type: "select",
|
|
166
162
|
title: "Commit Type",
|
|
167
163
|
description: "Select the commit type that best describes your changes",
|
|
168
|
-
enum: DEFAULT_COMMIT_TYPES,
|
|
164
|
+
enum: Object.keys(DEFAULT_COMMIT_TYPES).filter((type) => DEFAULT_COMMIT_TYPES[type].hidden !== true).reduce((ret, type) => {
|
|
165
|
+
ret[type] = DEFAULT_COMMIT_TYPES[type];
|
|
166
|
+
return ret;
|
|
167
|
+
}, {}),
|
|
169
168
|
defaultValue: "chore",
|
|
170
169
|
maxLength: 20,
|
|
171
170
|
minLength: 3
|
|
@@ -1060,12 +1060,16 @@ var resolveOptions = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, async
|
|
|
1060
1060
|
};
|
|
1061
1061
|
}, {})
|
|
1062
1062
|
},
|
|
1063
|
-
inject:
|
|
1063
|
+
inject: [
|
|
1064
1064
|
options.format === "cjs" && options.injectShims ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/cjs_shims.js") : "",
|
|
1065
1065
|
options.format === "esm" && options.injectShims && options.platform === "node" ? _chunkJTAXCQX6js.joinPaths.call(void 0, __dirname, "../assets/esm_shims.js") : ""
|
|
1066
|
-
]
|
|
1066
|
+
]
|
|
1067
1067
|
};
|
|
1068
1068
|
result.plugins = _nullishCoalesce(userOptions.plugins, () => ( getDefaultBuildPlugins(userOptions, result)));
|
|
1069
|
+
if (options.inject) {
|
|
1070
|
+
options.inject = _defu2.default.call(void 0, result.inject, options.inject);
|
|
1071
|
+
}
|
|
1072
|
+
_optionalChain([options, 'access', _45 => _45.inject, 'optionalAccess', _46 => _46.filter, 'call', _47 => _47(Boolean)]);
|
|
1069
1073
|
delete result.entry;
|
|
1070
1074
|
delete result.outputPath;
|
|
1071
1075
|
stopwatch();
|
|
@@ -1177,6 +1181,7 @@ async function executeEsBuild(context2) {
|
|
|
1177
1181
|
delete options.renderers;
|
|
1178
1182
|
delete options.config;
|
|
1179
1183
|
delete options.injectShims;
|
|
1184
|
+
delete options.external;
|
|
1180
1185
|
_chunkSPRQWSBEjs.writeTrace.call(void 0, `Run esbuild (${context2.options.name}) with the following options:
|
|
1181
1186
|
${_chunkSPRQWSBEjs.formatLogMessage.call(void 0, options)}`, context2.options.config);
|
|
1182
1187
|
const result = await esbuild2.build(options);
|
|
@@ -1190,7 +1195,7 @@ ${_chunkSPRQWSBEjs.formatLogMessage.call(void 0, options)}`, context2.options.co
|
|
|
1190
1195
|
}
|
|
1191
1196
|
_chunk3GQAWCBQjs.__name.call(void 0, executeEsBuild, "executeEsBuild");
|
|
1192
1197
|
async function copyBuildAssets(context2) {
|
|
1193
|
-
if (_optionalChain([context2, 'access',
|
|
1198
|
+
if (_optionalChain([context2, 'access', _48 => _48.result, 'optionalAccess', _49 => _49.errors, 'access', _50 => _50.length]) === 0) {
|
|
1194
1199
|
_chunkSPRQWSBEjs.writeDebug.call(void 0, ` \u{1F4CB} Copying asset files to output directory: ${context2.options.outdir}`, context2.options.config);
|
|
1195
1200
|
const stopwatch = _chunkSPRQWSBEjs.getStopwatch.call(void 0, `${context2.options.name} asset copy`);
|
|
1196
1201
|
await copyAssets(context2.options.config, _nullishCoalesce(context2.options.assets, () => ( [])), context2.options.outdir, context2.options.projectRoot, context2.options.sourceRoot, true, false);
|
|
@@ -1200,7 +1205,7 @@ async function copyBuildAssets(context2) {
|
|
|
1200
1205
|
}
|
|
1201
1206
|
_chunk3GQAWCBQjs.__name.call(void 0, copyBuildAssets, "copyBuildAssets");
|
|
1202
1207
|
async function reportResults(context2) {
|
|
1203
|
-
if (_optionalChain([context2, 'access',
|
|
1208
|
+
if (_optionalChain([context2, 'access', _51 => _51.result, 'optionalAccess', _52 => _52.errors, 'access', _53 => _53.length]) === 0) {
|
|
1204
1209
|
if (context2.result.warnings.length > 0) {
|
|
1205
1210
|
_chunkSPRQWSBEjs.writeWarning.call(void 0, ` \u{1F6A7} The following warnings occurred during the build: ${context2.result.warnings.map((warning) => warning.text).join("\n")}`, context2.options.config);
|
|
1206
1211
|
}
|
|
@@ -1301,14 +1306,14 @@ var watch = /* @__PURE__ */ _chunk3GQAWCBQjs.__name.call(void 0, (context2, opti
|
|
|
1301
1306
|
// src/executors/esbuild/executor.ts
|
|
1302
1307
|
async function esbuildExecutorFn(options, context2, config) {
|
|
1303
1308
|
_chunkSPRQWSBEjs.writeInfo.call(void 0, "\u{1F4E6} Running Storm ESBuild executor on the workspace", config);
|
|
1304
|
-
if (!_optionalChain([context2, 'access',
|
|
1309
|
+
if (!_optionalChain([context2, 'access', _54 => _54.projectsConfigurations, 'optionalAccess', _55 => _55.projects]) || !context2.projectName || !context2.projectsConfigurations.projects[context2.projectName] || !_optionalChain([context2, 'access', _56 => _56.projectsConfigurations, 'access', _57 => _57.projects, 'access', _58 => _58[context2.projectName], 'optionalAccess', _59 => _59.root])) {
|
|
1305
1310
|
throw new Error("The Build process failed because the context is not valid. Please run this command from a workspace.");
|
|
1306
1311
|
}
|
|
1307
1312
|
await build3({
|
|
1308
1313
|
...options,
|
|
1309
|
-
projectRoot: _optionalChain([context2, 'access',
|
|
1314
|
+
projectRoot: _optionalChain([context2, 'access', _60 => _60.projectsConfigurations, 'access', _61 => _61.projects, 'optionalAccess', _62 => _62[context2.projectName], 'access', _63 => _63.root]),
|
|
1310
1315
|
projectName: context2.projectName,
|
|
1311
|
-
sourceRoot: _optionalChain([context2, 'access',
|
|
1316
|
+
sourceRoot: _optionalChain([context2, 'access', _64 => _64.projectsConfigurations, 'access', _65 => _65.projects, 'optionalAccess', _66 => _66[context2.projectName], 'optionalAccess', _67 => _67.sourceRoot]),
|
|
1312
1317
|
format: options.format,
|
|
1313
1318
|
platform: options.format
|
|
1314
1319
|
});
|
|
@@ -28,6 +28,7 @@ var _updatelockfile = require('@nx/js/src/generators/release-version/utils/updat
|
|
|
28
28
|
|
|
29
29
|
// ../git-tools/src/types.ts
|
|
30
30
|
var DEFAULT_COMMIT_TYPES = {
|
|
31
|
+
/* --- Bumps version when selected --- */
|
|
31
32
|
chore: {
|
|
32
33
|
description: "Other changes that don't modify src or test files",
|
|
33
34
|
title: "Chore",
|
|
@@ -38,36 +39,16 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
38
39
|
hidden: false
|
|
39
40
|
}
|
|
40
41
|
},
|
|
41
|
-
|
|
42
|
-
description: "
|
|
43
|
-
title: "
|
|
44
|
-
emoji: "\u{
|
|
45
|
-
semverBump: "patch",
|
|
46
|
-
changelog: {
|
|
47
|
-
title: "Continuous Integration",
|
|
48
|
-
hidden: false
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
deps: {
|
|
52
|
-
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
53
|
-
title: "Dependencies",
|
|
54
|
-
emoji: "\u{1F4E6} ",
|
|
42
|
+
fix: {
|
|
43
|
+
description: "A change that resolves an issue previously identified with the package",
|
|
44
|
+
title: "Bug Fix",
|
|
45
|
+
emoji: "\u{1FAB2} ",
|
|
55
46
|
semverBump: "patch",
|
|
56
47
|
changelog: {
|
|
57
|
-
title: "
|
|
48
|
+
title: "Bug Fixes",
|
|
58
49
|
hidden: false
|
|
59
50
|
}
|
|
60
51
|
},
|
|
61
|
-
docs: {
|
|
62
|
-
description: "A change that only includes documentation updates",
|
|
63
|
-
title: "Documentation",
|
|
64
|
-
emoji: "\u{1F4DC} ",
|
|
65
|
-
semverBump: "none",
|
|
66
|
-
changelog: {
|
|
67
|
-
title: "Documentation",
|
|
68
|
-
hidden: true
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
52
|
feat: {
|
|
72
53
|
description: "A change that adds a new feature to the package",
|
|
73
54
|
title: "Feature",
|
|
@@ -78,23 +59,13 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
78
59
|
hidden: false
|
|
79
60
|
}
|
|
80
61
|
},
|
|
81
|
-
|
|
82
|
-
description: "
|
|
83
|
-
title: "
|
|
84
|
-
emoji: "\u{
|
|
62
|
+
ci: {
|
|
63
|
+
description: "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
|
|
64
|
+
title: "Continuous Integration",
|
|
65
|
+
emoji: "\u{1F9F0} ",
|
|
85
66
|
semverBump: "patch",
|
|
86
67
|
changelog: {
|
|
87
|
-
title: "
|
|
88
|
-
hidden: false
|
|
89
|
-
}
|
|
90
|
-
},
|
|
91
|
-
perf: {
|
|
92
|
-
description: "A code change that improves performance",
|
|
93
|
-
title: "Performance Improvement",
|
|
94
|
-
emoji: "\u23F1\uFE0F ",
|
|
95
|
-
semverBump: "none",
|
|
96
|
-
changelog: {
|
|
97
|
-
title: "Performance Improvements",
|
|
68
|
+
title: "Continuous Integration",
|
|
98
69
|
hidden: false
|
|
99
70
|
}
|
|
100
71
|
},
|
|
@@ -104,27 +75,38 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
104
75
|
emoji: "\u{1F9EA} ",
|
|
105
76
|
semverBump: "patch",
|
|
106
77
|
changelog: {
|
|
107
|
-
title: "Code Improvements",
|
|
78
|
+
title: "Source Code Improvements",
|
|
108
79
|
hidden: false
|
|
109
80
|
}
|
|
110
81
|
},
|
|
111
|
-
|
|
112
|
-
description: "
|
|
113
|
-
title: "
|
|
114
|
-
emoji: "\u{
|
|
82
|
+
style: {
|
|
83
|
+
description: "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
|
|
84
|
+
title: "Style Improvements",
|
|
85
|
+
emoji: "\u{1F48E} ",
|
|
115
86
|
semverBump: "patch",
|
|
116
87
|
changelog: {
|
|
117
|
-
title: "
|
|
88
|
+
title: "Style Improvements",
|
|
118
89
|
hidden: false
|
|
119
90
|
}
|
|
120
91
|
},
|
|
121
|
-
|
|
122
|
-
description: "
|
|
123
|
-
title: "
|
|
124
|
-
emoji: "\
|
|
125
|
-
semverBump: "
|
|
92
|
+
perf: {
|
|
93
|
+
description: "A code change that improves performance",
|
|
94
|
+
title: "Performance Improvement",
|
|
95
|
+
emoji: "\u23F1\uFE0F ",
|
|
96
|
+
semverBump: "patch",
|
|
126
97
|
changelog: {
|
|
127
|
-
title: "
|
|
98
|
+
title: "Performance Improvements",
|
|
99
|
+
hidden: false
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
/* --- Does not bump version when selected --- */
|
|
103
|
+
docs: {
|
|
104
|
+
description: "A change that only includes documentation updates",
|
|
105
|
+
title: "Documentation",
|
|
106
|
+
emoji: "\u{1F4DC} ",
|
|
107
|
+
semverBump: "none",
|
|
108
|
+
changelog: {
|
|
109
|
+
title: "Documentation",
|
|
128
110
|
hidden: false
|
|
129
111
|
}
|
|
130
112
|
},
|
|
@@ -138,16 +120,30 @@ var DEFAULT_COMMIT_TYPES = {
|
|
|
138
120
|
hidden: true
|
|
139
121
|
}
|
|
140
122
|
},
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
123
|
+
/* --- Not included in commitlint but included in changelog --- */
|
|
124
|
+
deps: {
|
|
125
|
+
description: "Changes that add, update, or remove dependencies. This includes devDependencies and peerDependencies",
|
|
126
|
+
title: "Dependencies",
|
|
127
|
+
emoji: "\u{1F4E6} ",
|
|
128
|
+
hidden: true,
|
|
129
|
+
semverBump: "patch",
|
|
146
130
|
changelog: {
|
|
147
|
-
title: "
|
|
131
|
+
title: "Dependency Upgrades",
|
|
148
132
|
hidden: false
|
|
149
133
|
}
|
|
150
134
|
},
|
|
135
|
+
/* --- Not included in commitlint or changelog --- */
|
|
136
|
+
build: {
|
|
137
|
+
description: "Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)",
|
|
138
|
+
title: "Build",
|
|
139
|
+
emoji: "\u{1F6E0} ",
|
|
140
|
+
hidden: true,
|
|
141
|
+
semverBump: "none",
|
|
142
|
+
changelog: {
|
|
143
|
+
title: "Build",
|
|
144
|
+
hidden: true
|
|
145
|
+
}
|
|
146
|
+
},
|
|
151
147
|
release: {
|
|
152
148
|
description: "Publishing a commit containing a newly released version",
|
|
153
149
|
title: "Publish Release",
|
|
@@ -165,7 +161,10 @@ var DEFAULT_COMMIT_QUESTIONS = {
|
|
|
165
161
|
type: "select",
|
|
166
162
|
title: "Commit Type",
|
|
167
163
|
description: "Select the commit type that best describes your changes",
|
|
168
|
-
enum: DEFAULT_COMMIT_TYPES,
|
|
164
|
+
enum: Object.keys(DEFAULT_COMMIT_TYPES).filter((type) => DEFAULT_COMMIT_TYPES[type].hidden !== true).reduce((ret, type) => {
|
|
165
|
+
ret[type] = DEFAULT_COMMIT_TYPES[type];
|
|
166
|
+
return ret;
|
|
167
|
+
}, {}),
|
|
169
168
|
defaultValue: "chore",
|
|
170
169
|
maxLength: 20,
|
|
171
170
|
minLength: 3
|
|
@@ -1061,12 +1061,16 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
|
|
|
1061
1061
|
};
|
|
1062
1062
|
}, {})
|
|
1063
1063
|
},
|
|
1064
|
-
inject:
|
|
1064
|
+
inject: [
|
|
1065
1065
|
options.format === "cjs" && options.injectShims ? joinPaths(__dirname, "../assets/cjs_shims.js") : "",
|
|
1066
1066
|
options.format === "esm" && options.injectShims && options.platform === "node" ? joinPaths(__dirname, "../assets/esm_shims.js") : ""
|
|
1067
|
-
]
|
|
1067
|
+
]
|
|
1068
1068
|
};
|
|
1069
1069
|
result.plugins = userOptions.plugins ?? getDefaultBuildPlugins(userOptions, result);
|
|
1070
|
+
if (options.inject) {
|
|
1071
|
+
options.inject = defu(result.inject, options.inject);
|
|
1072
|
+
}
|
|
1073
|
+
options.inject?.filter(Boolean);
|
|
1070
1074
|
delete result.entry;
|
|
1071
1075
|
delete result.outputPath;
|
|
1072
1076
|
stopwatch();
|
|
@@ -1178,6 +1182,7 @@ async function executeEsBuild(context2) {
|
|
|
1178
1182
|
delete options.renderers;
|
|
1179
1183
|
delete options.config;
|
|
1180
1184
|
delete options.injectShims;
|
|
1185
|
+
delete options.external;
|
|
1181
1186
|
writeTrace(`Run esbuild (${context2.options.name}) with the following options:
|
|
1182
1187
|
${formatLogMessage(options)}`, context2.options.config);
|
|
1183
1188
|
const result = await esbuild2.build(options);
|
package/dist/executors.js
CHANGED
|
@@ -19,7 +19,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
|
|
|
19
19
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
|
|
@@ -53,4 +53,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
|
|
56
|
-
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn =
|
|
56
|
+
exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn;
|
package/dist/executors.mjs
CHANGED
package/dist/generators.js
CHANGED
|
@@ -7,7 +7,7 @@ var _chunkIRPD2M2Ijs = require('./chunk-IRPD2M2I.js');
|
|
|
7
7
|
var _chunkIFB5HNMTjs = require('./chunk-IFB5HNMT.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
10
|
+
var _chunkW25HMODDjs = require('./chunk-W25HMODD.js');
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
var _chunkKFT2TAHEjs = require('./chunk-KFT2TAHE.js');
|
|
@@ -38,4 +38,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.neutralLibraryGeneratorFn = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.nodeLibraryGeneratorFn; exports.presetGeneratorFn = _chunkIFB5HNMTjs.presetGeneratorFn; exports.releaseVersionGeneratorFn =
|
|
41
|
+
exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.neutralLibraryGeneratorFn = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.nodeLibraryGeneratorFn; exports.presetGeneratorFn = _chunkIFB5HNMTjs.presetGeneratorFn; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn;
|
package/dist/generators.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -66,7 +66,7 @@ var _chunkDJJEQUOEjs = require('./chunk-DJJEQUOE.js');
|
|
|
66
66
|
var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
|
|
67
67
|
|
|
68
68
|
|
|
69
|
-
var
|
|
69
|
+
var _chunkTLFV74ZVjs = require('./chunk-TLFV74ZV.js');
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
var _chunkDYKPDBZQjs = require('./chunk-DYKPDBZQ.js');
|
|
@@ -102,7 +102,7 @@ var _chunkIRPD2M2Ijs = require('./chunk-IRPD2M2I.js');
|
|
|
102
102
|
var _chunkIFB5HNMTjs = require('./chunk-IFB5HNMT.js');
|
|
103
103
|
|
|
104
104
|
|
|
105
|
-
var
|
|
105
|
+
var _chunkW25HMODDjs = require('./chunk-W25HMODD.js');
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
var _chunkKFT2TAHEjs = require('./chunk-KFT2TAHE.js');
|
|
@@ -282,4 +282,4 @@ require('./chunk-3GQAWCBQ.js');
|
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
|
|
285
|
-
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn =
|
|
285
|
+
exports.INVALID_CARGO_ARGS = _chunkULBTYC2Bjs.INVALID_CARGO_ARGS; exports.LARGE_BUFFER = _chunkGJQKCDGCjs.LARGE_BUFFER; exports.LOCK_FILES = _chunkPK2SUBWIjs.LOCK_FILES; exports.NPM_LOCK_FILE = _chunkPK2SUBWIjs.NPM_LOCK_FILE; exports.NPM_LOCK_PATH = _chunkPK2SUBWIjs.NPM_LOCK_PATH; exports.PNPM_LOCK_FILE = _chunkPK2SUBWIjs.PNPM_LOCK_FILE; exports.PNPM_LOCK_PATH = _chunkPK2SUBWIjs.PNPM_LOCK_PATH; exports.PackageManagerTypes = _chunk7AXFMX2Tjs.PackageManagerTypes; exports.ProjectTagConstants = _chunk7YRW5HNXjs.ProjectTagConstants; exports.ProjectTagDistStyleValue = _chunk4NOLUAQNjs.ProjectTagDistStyleValue; exports.ProjectTagLanguageValue = _chunk4NOLUAQNjs.ProjectTagLanguageValue; exports.ProjectTagPlatformValue = _chunk4NOLUAQNjs.ProjectTagPlatformValue; exports.ProjectTagRegistryValue = _chunk4NOLUAQNjs.ProjectTagRegistryValue; exports.ProjectTagTypeValue = _chunk4NOLUAQNjs.ProjectTagTypeValue; exports.ProjectTagVariant = _chunk4NOLUAQNjs.ProjectTagVariant; exports.YARN_LOCK_FILE = _chunkPK2SUBWIjs.YARN_LOCK_FILE; exports.YARN_LOCK_PATH = _chunkPK2SUBWIjs.YARN_LOCK_PATH; exports.addPluginProjectTag = _chunk7YRW5HNXjs.addPluginProjectTag; exports.addProjectTag = _chunk7YRW5HNXjs.addProjectTag; exports.applyWorkspaceExecutorTokens = _chunkAC5SI4YZjs.applyWorkspaceExecutorTokens; exports.baseExecutorSchema = _chunkI734UVDTjs.base_executor_untyped_default; exports.baseGeneratorSchema = _chunk7CJRMBX3js.base_generator_untyped_default; exports.browserLibraryGeneratorFn = _chunkKFT2TAHEjs.browserLibraryGeneratorFn; exports.buildCargoCommand = _chunkULBTYC2Bjs.buildCargoCommand; exports.cargoBaseExecutorSchema = _chunk6QO3KMZAjs.cargo_base_executor_untyped_default; exports.cargoBuildExecutor = _chunkDYKPDBZQjs.cargoBuildExecutor; exports.cargoCheckExecutor = _chunkVGWC25SXjs.cargoCheckExecutor; exports.cargoClippyExecutor = _chunkI44JBB55js.cargoClippyExecutor; exports.cargoCommand = _chunkULBTYC2Bjs.cargoCommand; exports.cargoCommandSync = _chunkULBTYC2Bjs.cargoCommandSync; exports.cargoDocExecutor = _chunk3MWOC5X7js.cargoDocExecutor; exports.cargoFormatExecutor = _chunkDJJEQUOEjs.cargoFormatExecutor; exports.cargoMetadata = _chunkULBTYC2Bjs.cargoMetadata; exports.cargoRunCommand = _chunkULBTYC2Bjs.cargoRunCommand; exports.childProcess = _chunkULBTYC2Bjs.childProcess; exports.configSchemaGeneratorFn = _chunkYCDNXKRBjs.configSchemaGeneratorFn; exports.createCliOptions = _chunkDHGZTMNDjs.createCliOptions; exports.createProjectTsConfigJson = _chunkRBU35LQWjs.createProjectTsConfigJson; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn; exports.eslintVersion = _chunkHI4G4OOGjs.eslintVersion; exports.formatProjectTag = _chunk7YRW5HNXjs.formatProjectTag; exports.getLockFileDependencies = _chunkPK2SUBWIjs.getLockFileDependencies; exports.getLockFileName = _chunkPK2SUBWIjs.getLockFileName; exports.getLockFileNodes = _chunkPK2SUBWIjs.getLockFileNodes; exports.getOutputPath = _chunkRBU35LQWjs.getOutputPath; exports.getPackageInfo = _chunk7AXFMX2Tjs.getPackageInfo; exports.getProjectConfigFromProjectJsonPath = _chunkUF6KFXG5js.getProjectConfigFromProjectJsonPath; exports.getProjectConfigFromProjectRoot = _chunkUF6KFXG5js.getProjectConfigFromProjectRoot; exports.getProjectConfiguration = _chunkGKL4BY2Yjs.getProjectConfiguration; exports.getProjectConfigurations = _chunkGKL4BY2Yjs.getProjectConfigurations; exports.getProjectPlatform = _chunkUF6KFXG5js.getProjectPlatform; exports.getProjectRoot = _chunkUF6KFXG5js.getProjectRoot; exports.getProjectTag = _chunk7YRW5HNXjs.getProjectTag; exports.getRegistryVersion = _chunkGGGO542Mjs.getRegistryVersion; exports.getTypiaTransform = _chunkXITP2BX2js.getTypiaTransform; exports.hasProjectTag = _chunk7YRW5HNXjs.hasProjectTag; exports.initGenerator = _chunk3IZ3O4OKjs.initGenerator; exports.isEqualProjectTag = _chunk7YRW5HNXjs.isEqualProjectTag; exports.isExternal = _chunkULBTYC2Bjs.isExternal; exports.lintStagedVersion = _chunkHI4G4OOGjs.lintStagedVersion; exports.lockFileExists = _chunkPK2SUBWIjs.lockFileExists; exports.modifyCargoNestedTable = _chunkZMFVKBRMjs.modifyCargoNestedTable; exports.modifyCargoTable = _chunkZMFVKBRMjs.modifyCargoTable; exports.neutralLibraryGeneratorFn = _chunkP5WJDR64js.neutralLibraryGeneratorFn; exports.nodeLibraryGeneratorFn = _chunkIRPD2M2Ijs.nodeLibraryGeneratorFn; exports.nodeVersion = _chunkHI4G4OOGjs.nodeVersion; exports.normalizeOptions = _chunkRBU35LQWjs.normalizeOptions; exports.nxVersion = _chunkHI4G4OOGjs.nxVersion; exports.parseCargoToml = _chunkZMFVKBRMjs.parseCargoToml; exports.parseCargoTomlWithTree = _chunkZMFVKBRMjs.parseCargoTomlWithTree; exports.pnpmCatalogUpdate = _chunkCUPARBOSjs.pnpmCatalogUpdate; exports.pnpmVersion = _chunkHI4G4OOGjs.pnpmVersion; exports.presetGeneratorFn = _chunkIFB5HNMTjs.presetGeneratorFn; exports.prettierPackageJsonVersion = _chunkHI4G4OOGjs.prettierPackageJsonVersion; exports.prettierPrismaVersion = _chunkHI4G4OOGjs.prettierPrismaVersion; exports.prettierVersion = _chunkHI4G4OOGjs.prettierVersion; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn; exports.runProcess = _chunkULBTYC2Bjs.runProcess; exports.semanticReleaseVersion = _chunkHI4G4OOGjs.semanticReleaseVersion; exports.setDefaultProjectTags = _chunk7YRW5HNXjs.setDefaultProjectTags; exports.sizeLimitExecutorFn = _chunkASBO74YMjs.sizeLimitExecutorFn; exports.stringifyCargoToml = _chunkZMFVKBRMjs.stringifyCargoToml; exports.swcCliVersion = _chunkHI4G4OOGjs.swcCliVersion; exports.swcCoreVersion = _chunkHI4G4OOGjs.swcCoreVersion; exports.swcHelpersVersion = _chunkHI4G4OOGjs.swcHelpersVersion; exports.swcNodeVersion = _chunkHI4G4OOGjs.swcNodeVersion; exports.tsLibVersion = _chunkHI4G4OOGjs.tsLibVersion; exports.tsupVersion = _chunkHI4G4OOGjs.tsupVersion; exports.typeScriptLibraryGeneratorFn = _chunkRBU35LQWjs.typeScriptLibraryGeneratorFn; exports.typesNodeVersion = _chunkHI4G4OOGjs.typesNodeVersion; exports.typescriptBuildExecutorSchema = _chunkIWCQL3AQjs.typescript_build_executor_untyped_default; exports.typescriptLibraryGeneratorSchema = _chunk7O34DHUGjs.typescript_library_generator_untyped_default; exports.typescriptVersion = _chunkHI4G4OOGjs.typescriptVersion; exports.typiaExecutorFn = _chunkEEMX5TF7js.typiaExecutorFn; exports.unbuildExecutorFn = _chunkTFNKD3A2js.unbuildExecutorFn; exports.verdaccioVersion = _chunkHI4G4OOGjs.verdaccioVersion; exports.withRunExecutor = _chunkIVNDY2FEjs.withRunExecutor; exports.withRunGenerator = _chunkSWKSEHJVjs.withRunGenerator;
|
package/dist/index.mjs
CHANGED
|
@@ -66,7 +66,7 @@ import {
|
|
|
66
66
|
} from "./chunk-3PWCELL5.mjs";
|
|
67
67
|
import {
|
|
68
68
|
esbuildExecutorFn
|
|
69
|
-
} from "./chunk-
|
|
69
|
+
} from "./chunk-WGRKPUAV.mjs";
|
|
70
70
|
import {
|
|
71
71
|
cargoBuildExecutor
|
|
72
72
|
} from "./chunk-MHZ6V7XS.mjs";
|
|
@@ -102,7 +102,7 @@ import {
|
|
|
102
102
|
} from "./chunk-PUW5GKBJ.mjs";
|
|
103
103
|
import {
|
|
104
104
|
releaseVersionGeneratorFn
|
|
105
|
-
} from "./chunk-
|
|
105
|
+
} from "./chunk-5OWPWITA.mjs";
|
|
106
106
|
import {
|
|
107
107
|
browserLibraryGeneratorFn
|
|
108
108
|
} from "./chunk-FQSPQRIB.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkTLFV74ZVjs = require('../../../chunk-TLFV74ZV.js');
|
|
5
5
|
require('../../../chunk-IVNDY2FE.js');
|
|
6
6
|
require('../../../chunk-UALZJZUK.js');
|
|
7
7
|
require('../../../chunk-SPRQWSBE.js');
|
|
@@ -11,4 +11,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
exports.default =
|
|
14
|
+
exports.default = _chunkTLFV74ZVjs.executor_default; exports.esbuildExecutorFn = _chunkTLFV74ZVjs.esbuildExecutorFn;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkW25HMODDjs = require('../../../chunk-W25HMODD.js');
|
|
5
5
|
require('../../../chunk-ZMFVKBRM.js');
|
|
6
6
|
require('../../../chunk-SPRQWSBE.js');
|
|
7
7
|
require('../../../chunk-4JOIS7WW.js');
|
|
@@ -10,4 +10,4 @@ require('../../../chunk-3GQAWCBQ.js');
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.default =
|
|
13
|
+
exports.default = _chunkW25HMODDjs.generator_default; exports.releaseVersionGeneratorFn = _chunkW25HMODDjs.releaseVersionGeneratorFn;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/workspace-tools",
|
|
3
|
-
"version": "1.264.
|
|
3
|
+
"version": "1.264.20",
|
|
4
4
|
"description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|