@storm-software/build-tools 0.150.7 → 0.150.8
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/README.md +1 -1
- package/dist/{chunk-JJQN3HTQ.mjs → chunk-2QRSJ2XB.mjs} +52 -15
- package/dist/{chunk-D7ZBIHS7.mjs → chunk-3Q4PJ2CH.mjs} +1 -1
- package/dist/{chunk-TABRPMJB.js → chunk-7HCW6J5M.js} +9 -9
- package/dist/{chunk-DLSOQQ2X.mjs → chunk-FRWMSPKW.mjs} +1 -1
- package/dist/{chunk-XXESPGZP.js → chunk-GTGBVWZP.js} +55 -18
- package/dist/{chunk-BKMDH7XQ.mjs → chunk-I4GQIOV7.mjs} +1 -1
- package/dist/{chunk-2IACGL5A.mjs → chunk-JIOQYV3B.mjs} +1 -1
- package/dist/{chunk-673CAI2G.js → chunk-NQ3XUSZB.js} +2 -2
- package/dist/{chunk-ECGZDTG2.js → chunk-PETLJROI.js} +10 -10
- package/dist/{chunk-UNY7ZVZF.js → chunk-R6WRMQAA.js} +8 -8
- package/dist/{chunk-EGKFW7BM.js → chunk-S7FCLPMK.js} +50 -43
- package/dist/{chunk-TSUTFOQG.js → chunk-U2TNM7T7.js} +8 -8
- package/dist/{chunk-VWJLKDCB.mjs → chunk-U7PSAXCT.mjs} +12 -5
- package/dist/{chunk-7NL4YIH3.mjs → chunk-WBAOQRPY.mjs} +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +7 -7
- package/dist/plugins/analyze.js +3 -3
- package/dist/plugins/analyze.mjs +2 -2
- package/dist/plugins/index.js +4 -4
- package/dist/plugins/index.mjs +3 -3
- package/dist/plugins/ts-resolve.js +3 -3
- package/dist/plugins/ts-resolve.mjs +2 -2
- package/dist/{types-BkDQW7K9.d.ts → types-DK2Ei7Dy.d.mts} +11 -8
- package/dist/{types-BkDQW7K9.d.mts → types-DK2Ei7Dy.d.ts} +11 -8
- package/dist/{types-Dsy6SjaO.d.mts → types-bock3dMj.d.mts} +11 -8
- package/dist/{types-Dsy6SjaO.d.ts → types-bock3dMj.d.ts} +11 -8
- package/dist/types.d.mts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utilities/copy-assets.d.mts +1 -1
- package/dist/utilities/copy-assets.d.ts +1 -1
- package/dist/utilities/copy-assets.js +3 -3
- package/dist/utilities/copy-assets.mjs +2 -2
- package/dist/utilities/generate-package-json.d.mts +1 -1
- package/dist/utilities/generate-package-json.d.ts +1 -1
- package/dist/utilities/generate-package-json.js +3 -3
- package/dist/utilities/generate-package-json.mjs +2 -2
- package/dist/utilities/get-entry-points.d.mts +1 -1
- package/dist/utilities/get-entry-points.d.ts +1 -1
- package/dist/utilities/get-entry-points.js +3 -3
- package/dist/utilities/get-entry-points.mjs +2 -2
- package/dist/utilities/get-env.d.mts +1 -1
- package/dist/utilities/get-env.d.ts +1 -1
- package/dist/utilities/index.d.mts +1 -1
- package/dist/utilities/index.d.ts +1 -1
- package/dist/utilities/index.js +6 -6
- package/dist/utilities/index.mjs +5 -5
- package/dist/utilities/read-nx-config.js +3 -3
- package/dist/utilities/read-nx-config.mjs +2 -2
- package/package.json +1 -1
|
@@ -14,13 +14,14 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
var _chunkGTGBVWZPjs = require('./chunk-GTGBVWZP.js');
|
|
18
19
|
|
|
19
20
|
// ../config-tools/src/config-file/get-config-file.ts
|
|
20
21
|
var _c12 = require('c12');
|
|
21
22
|
var _defu = require('defu'); var _defu2 = _interopRequireDefault(_defu);
|
|
22
23
|
var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
23
|
-
const workspacePath = filePath ||
|
|
24
|
+
const workspacePath = filePath || _chunkGTGBVWZPjs.findWorkspaceRoot.call(void 0, filePath);
|
|
24
25
|
const configs = await Promise.all([
|
|
25
26
|
_c12.loadConfig.call(void 0, {
|
|
26
27
|
cwd: workspacePath,
|
|
@@ -29,7 +30,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
29
30
|
envName: _optionalChain([fileName, 'optionalAccess', _ => _.toUpperCase, 'call', _2 => _2()]),
|
|
30
31
|
jitiOptions: {
|
|
31
32
|
debug: false,
|
|
32
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
33
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkGTGBVWZPjs.joinPaths.call(void 0,
|
|
33
34
|
process.env.STORM_CACHE_DIR || "node_modules/.cache/storm",
|
|
34
35
|
"jiti"
|
|
35
36
|
)
|
|
@@ -43,7 +44,7 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
43
44
|
envName: _optionalChain([fileName, 'optionalAccess', _3 => _3.toUpperCase, 'call', _4 => _4()]),
|
|
44
45
|
jitiOptions: {
|
|
45
46
|
debug: false,
|
|
46
|
-
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false :
|
|
47
|
+
fsCache: process.env.STORM_SKIP_CACHE === "true" ? false : _chunkGTGBVWZPjs.joinPaths.call(void 0,
|
|
47
48
|
process.env.STORM_CACHE_DIR || "node_modules/.cache/storm",
|
|
48
49
|
"jiti"
|
|
49
50
|
)
|
|
@@ -55,12 +56,12 @@ var getConfigFileByName = async (fileName, filePath, options = {}) => {
|
|
|
55
56
|
return _defu2.default.call(void 0, _nullishCoalesce(configs[0], () => ( {})), _nullishCoalesce(configs[1], () => ( {})));
|
|
56
57
|
};
|
|
57
58
|
var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
58
|
-
const workspacePath = filePath ? filePath :
|
|
59
|
+
const workspacePath = filePath ? filePath : _chunkGTGBVWZPjs.findWorkspaceRoot.call(void 0, filePath);
|
|
59
60
|
const result = await getConfigFileByName("storm-workspace", workspacePath);
|
|
60
61
|
let config = result.config;
|
|
61
62
|
const configFile = result.configFile;
|
|
62
63
|
if (config && configFile && Object.keys(config).length > 0 && !config.skipConfigLogging) {
|
|
63
|
-
|
|
64
|
+
_chunkGTGBVWZPjs.writeTrace.call(void 0,
|
|
64
65
|
`Found Storm configuration file "${configFile.includes(`${workspacePath}/`) ? configFile.replace(`${workspacePath}/`, "") : configFile}" at "${workspacePath}"`,
|
|
65
66
|
{
|
|
66
67
|
logLevel: "all"
|
|
@@ -76,7 +77,7 @@ var getConfigFile = async (filePath, additionalFileNames = []) => {
|
|
|
76
77
|
for (const result2 of results) {
|
|
77
78
|
if (_optionalChain([result2, 'optionalAccess', _5 => _5.config]) && _optionalChain([result2, 'optionalAccess', _6 => _6.configFile]) && Object.keys(result2.config).length > 0) {
|
|
78
79
|
if (!config.skipConfigLogging && !result2.config.skipConfigLogging) {
|
|
79
|
-
|
|
80
|
+
_chunkGTGBVWZPjs.writeTrace.call(void 0,
|
|
80
81
|
`Found alternative configuration file "${result2.configFile.includes(`${workspacePath}/`) ? result2.configFile.replace(`${workspacePath}/`, "") : result2.configFile}" at "${workspacePath}"`,
|
|
81
82
|
{
|
|
82
83
|
logLevel: "all"
|
|
@@ -145,17 +146,18 @@ var getConfigEnv = () => {
|
|
|
145
146
|
docs: process.env[`${prefix}DOCS`] || void 0,
|
|
146
147
|
licensing: process.env[`${prefix}LICENSING`] || void 0,
|
|
147
148
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
149
|
+
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
148
150
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
149
151
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
150
|
-
configFile: process.env[`${prefix}CONFIG_FILE`] ?
|
|
151
|
-
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ?
|
|
152
|
+
configFile: process.env[`${prefix}CONFIG_FILE`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_FILE`]) : void 0,
|
|
153
|
+
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
152
154
|
directories: {
|
|
153
|
-
cache: process.env[`${prefix}CACHE_DIR`] ?
|
|
154
|
-
data: process.env[`${prefix}DATA_DIR`] ?
|
|
155
|
-
config: process.env[`${prefix}CONFIG_DIR`] ?
|
|
156
|
-
temp: process.env[`${prefix}TEMP_DIR`] ?
|
|
157
|
-
log: process.env[`${prefix}LOG_DIR`] ?
|
|
158
|
-
build: process.env[`${prefix}BUILD_DIR`] ?
|
|
155
|
+
cache: process.env[`${prefix}CACHE_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
156
|
+
data: process.env[`${prefix}DATA_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}DATA_DIR`]) : process.env[`${prefix}DATA_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}DATA_DIRECTORY`]) : void 0,
|
|
157
|
+
config: process.env[`${prefix}CONFIG_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_DIR`]) : process.env[`${prefix}CONFIG_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}CONFIG_DIRECTORY`]) : void 0,
|
|
158
|
+
temp: process.env[`${prefix}TEMP_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}TEMP_DIR`]) : process.env[`${prefix}TEMP_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}TEMP_DIRECTORY`]) : void 0,
|
|
159
|
+
log: process.env[`${prefix}LOG_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}LOG_DIR`]) : process.env[`${prefix}LOG_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}LOG_DIRECTORY`]) : void 0,
|
|
160
|
+
build: process.env[`${prefix}BUILD_DIR`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}BUILD_DIR`]) : process.env[`${prefix}BUILD_DIRECTORY`] ? _chunkGTGBVWZPjs.correctPaths.call(void 0, process.env[`${prefix}BUILD_DIRECTORY`]) : void 0
|
|
159
161
|
},
|
|
160
162
|
skipCache: process.env[`${prefix}SKIP_CACHE`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CACHE`]) : void 0,
|
|
161
163
|
mode: (_nullishCoalesce(_nullishCoalesce(process.env[`${prefix}MODE`], () => ( process.env.NODE_ENV)), () => ( process.env.ENVIRONMENT))) || void 0,
|
|
@@ -180,13 +182,13 @@ var getConfigEnv = () => {
|
|
|
180
182
|
},
|
|
181
183
|
logLevel: process.env[`${prefix}LOG_LEVEL`] !== null && process.env[`${prefix}LOG_LEVEL`] !== void 0 ? process.env[`${prefix}LOG_LEVEL`] && Number.isSafeInteger(
|
|
182
184
|
Number.parseInt(process.env[`${prefix}LOG_LEVEL`])
|
|
183
|
-
) ?
|
|
185
|
+
) ? _chunkGTGBVWZPjs.getLogLevelLabel.call(void 0,
|
|
184
186
|
Number.parseInt(process.env[`${prefix}LOG_LEVEL`])
|
|
185
187
|
) : process.env[`${prefix}LOG_LEVEL`] : void 0,
|
|
186
188
|
skipConfigLogging: process.env[`${prefix}SKIP_CONFIG_LOGGING`] !== void 0 ? Boolean(process.env[`${prefix}SKIP_CONFIG_LOGGING`]) : void 0
|
|
187
189
|
};
|
|
188
190
|
const themeNames = Object.keys(process.env).filter(
|
|
189
|
-
(envKey) => envKey.startsWith(`${prefix}COLOR_`) &&
|
|
191
|
+
(envKey) => envKey.startsWith(`${prefix}COLOR_`) && _chunkGTGBVWZPjs.COLOR_KEYS.every(
|
|
190
192
|
(colorKey) => !envKey.startsWith(`${prefix}COLOR_LIGHT_${colorKey}`) && !envKey.startsWith(`${prefix}COLOR_DARK_${colorKey}`)
|
|
191
193
|
)
|
|
192
194
|
);
|
|
@@ -197,16 +199,16 @@ var getConfigEnv = () => {
|
|
|
197
199
|
},
|
|
198
200
|
{}
|
|
199
201
|
) : getThemeColorConfigEnv(prefix);
|
|
200
|
-
if (config.docs ===
|
|
201
|
-
if (config.homepage ===
|
|
202
|
-
config.docs = `${
|
|
202
|
+
if (config.docs === _chunkGTGBVWZPjs.STORM_DEFAULT_DOCS) {
|
|
203
|
+
if (config.homepage === _chunkGTGBVWZPjs.STORM_DEFAULT_HOMEPAGE) {
|
|
204
|
+
config.docs = `${_chunkGTGBVWZPjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/docs`;
|
|
203
205
|
} else {
|
|
204
206
|
config.docs = `${config.homepage}/docs`;
|
|
205
207
|
}
|
|
206
208
|
}
|
|
207
|
-
if (config.licensing ===
|
|
208
|
-
if (config.homepage ===
|
|
209
|
-
config.licensing = `${
|
|
209
|
+
if (config.licensing === _chunkGTGBVWZPjs.STORM_DEFAULT_LICENSING) {
|
|
210
|
+
if (config.homepage === _chunkGTGBVWZPjs.STORM_DEFAULT_HOMEPAGE) {
|
|
211
|
+
config.licensing = `${_chunkGTGBVWZPjs.STORM_DEFAULT_HOMEPAGE}/projects/${config.name}/licensing`;
|
|
210
212
|
} else {
|
|
211
213
|
config.licensing = `${config.homepage}/docs`;
|
|
212
214
|
}
|
|
@@ -363,6 +365,9 @@ var setConfigEnv = (config) => {
|
|
|
363
365
|
if (config.contact) {
|
|
364
366
|
process.env[`${prefix}CONTACT`] = config.contact;
|
|
365
367
|
}
|
|
368
|
+
if (config.support) {
|
|
369
|
+
process.env[`${prefix}SUPPORT`] = config.support;
|
|
370
|
+
}
|
|
366
371
|
if (config.timezone) {
|
|
367
372
|
process.env[`${prefix}TIMEZONE`] = config.timezone;
|
|
368
373
|
process.env.TZ = config.timezone;
|
|
@@ -375,40 +380,40 @@ var setConfigEnv = (config) => {
|
|
|
375
380
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
376
381
|
}
|
|
377
382
|
if (config.configFile) {
|
|
378
|
-
process.env[`${prefix}CONFIG_FILE`] =
|
|
383
|
+
process.env[`${prefix}CONFIG_FILE`] = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.configFile);
|
|
379
384
|
}
|
|
380
385
|
if (config.workspaceRoot) {
|
|
381
|
-
process.env[`${prefix}WORKSPACE_ROOT`] =
|
|
382
|
-
process.env.NX_WORKSPACE_ROOT =
|
|
383
|
-
process.env.NX_WORKSPACE_ROOT_PATH =
|
|
386
|
+
process.env[`${prefix}WORKSPACE_ROOT`] = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
387
|
+
process.env.NX_WORKSPACE_ROOT = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
388
|
+
process.env.NX_WORKSPACE_ROOT_PATH = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.workspaceRoot);
|
|
384
389
|
}
|
|
385
390
|
if (config.directories) {
|
|
386
391
|
if (!config.skipCache && config.directories.cache) {
|
|
387
|
-
process.env[`${prefix}CACHE_DIR`] =
|
|
392
|
+
process.env[`${prefix}CACHE_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0,
|
|
388
393
|
config.directories.cache
|
|
389
394
|
);
|
|
390
395
|
process.env[`${prefix}CACHE_DIRECTORY`] = process.env[`${prefix}CACHE_DIR`];
|
|
391
396
|
}
|
|
392
397
|
if (config.directories.data) {
|
|
393
|
-
process.env[`${prefix}DATA_DIR`] =
|
|
398
|
+
process.env[`${prefix}DATA_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.directories.data);
|
|
394
399
|
process.env[`${prefix}DATA_DIRECTORY`] = process.env[`${prefix}DATA_DIR`];
|
|
395
400
|
}
|
|
396
401
|
if (config.directories.config) {
|
|
397
|
-
process.env[`${prefix}CONFIG_DIR`] =
|
|
402
|
+
process.env[`${prefix}CONFIG_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0,
|
|
398
403
|
config.directories.config
|
|
399
404
|
);
|
|
400
405
|
process.env[`${prefix}CONFIG_DIRECTORY`] = process.env[`${prefix}CONFIG_DIR`];
|
|
401
406
|
}
|
|
402
407
|
if (config.directories.temp) {
|
|
403
|
-
process.env[`${prefix}TEMP_DIR`] =
|
|
408
|
+
process.env[`${prefix}TEMP_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.directories.temp);
|
|
404
409
|
process.env[`${prefix}TEMP_DIRECTORY`] = process.env[`${prefix}TEMP_DIR`];
|
|
405
410
|
}
|
|
406
411
|
if (config.directories.log) {
|
|
407
|
-
process.env[`${prefix}LOG_DIR`] =
|
|
412
|
+
process.env[`${prefix}LOG_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0, config.directories.log);
|
|
408
413
|
process.env[`${prefix}LOG_DIRECTORY`] = process.env[`${prefix}LOG_DIR`];
|
|
409
414
|
}
|
|
410
415
|
if (config.directories.build) {
|
|
411
|
-
process.env[`${prefix}BUILD_DIR`] =
|
|
416
|
+
process.env[`${prefix}BUILD_DIR`] = _chunkGTGBVWZPjs.correctPaths.call(void 0,
|
|
412
417
|
config.directories.build
|
|
413
418
|
);
|
|
414
419
|
process.env[`${prefix}BUILD_DIRECTORY`] = process.env[`${prefix}BUILD_DIR`];
|
|
@@ -475,9 +480,9 @@ var setConfigEnv = (config) => {
|
|
|
475
480
|
process.env[`${prefix}LOG_LEVEL`] = String(config.logLevel);
|
|
476
481
|
process.env.LOG_LEVEL = String(config.logLevel);
|
|
477
482
|
process.env.NX_VERBOSE_LOGGING = String(
|
|
478
|
-
|
|
483
|
+
_chunkGTGBVWZPjs.getLogLevel.call(void 0, config.logLevel) >= _chunkGTGBVWZPjs.LogLevel.DEBUG ? true : false
|
|
479
484
|
);
|
|
480
|
-
process.env.RUST_BACKTRACE =
|
|
485
|
+
process.env.RUST_BACKTRACE = _chunkGTGBVWZPjs.getLogLevel.call(void 0, config.logLevel) >= _chunkGTGBVWZPjs.LogLevel.DEBUG ? "full" : "none";
|
|
481
486
|
}
|
|
482
487
|
if (config.skipConfigLogging !== void 0) {
|
|
483
488
|
process.env[`${prefix}SKIP_CONFIG_LOGGING`] = String(
|
|
@@ -597,13 +602,13 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
597
602
|
if (!_optionalChain([_static_cache, 'optionalAccess', _29 => _29.data]) || !_optionalChain([_static_cache, 'optionalAccess', _30 => _30.timestamp]) || _static_cache.timestamp < Date.now() - 8e3) {
|
|
598
603
|
let _workspaceRoot = workspaceRoot;
|
|
599
604
|
if (!_workspaceRoot) {
|
|
600
|
-
_workspaceRoot =
|
|
605
|
+
_workspaceRoot = _chunkGTGBVWZPjs.findWorkspaceRoot.call(void 0, );
|
|
601
606
|
}
|
|
602
607
|
const configEnv = getConfigEnv();
|
|
603
608
|
const configFile = await getConfigFile(_workspaceRoot);
|
|
604
609
|
if (!configFile) {
|
|
605
610
|
if (!skipLogs) {
|
|
606
|
-
|
|
611
|
+
_chunkGTGBVWZPjs.writeWarning.call(void 0,
|
|
607
612
|
"No Storm Workspace configuration file found in the current repository. Please ensure this is the expected behavior - you can add a `storm-workspace.json` file to the root of your workspace if it is not.\n",
|
|
608
613
|
{ logLevel: "all" }
|
|
609
614
|
);
|
|
@@ -612,9 +617,11 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
612
617
|
return void 0;
|
|
613
618
|
}
|
|
614
619
|
}
|
|
615
|
-
const defaultConfig = await
|
|
616
|
-
result =
|
|
617
|
-
|
|
620
|
+
const defaultConfig = await _chunkGTGBVWZPjs.getPackageJsonConfig.call(void 0, _workspaceRoot);
|
|
621
|
+
result = _chunkGTGBVWZPjs.applyDefaultConfig.call(void 0,
|
|
622
|
+
await _chunkGTGBVWZPjs.stormWorkspaceConfigSchema.parseAsync(
|
|
623
|
+
_defu2.default.call(void 0, configEnv, configFile, defaultConfig)
|
|
624
|
+
)
|
|
618
625
|
);
|
|
619
626
|
result.workspaceRoot ??= _workspaceRoot;
|
|
620
627
|
} else {
|
|
@@ -654,9 +661,9 @@ var loadStormWorkspaceConfig = async (workspaceRoot, skipLogs = false) => {
|
|
|
654
661
|
);
|
|
655
662
|
setConfigEnv(config);
|
|
656
663
|
if (!skipLogs && !config.skipConfigLogging) {
|
|
657
|
-
|
|
664
|
+
_chunkGTGBVWZPjs.writeTrace.call(void 0,
|
|
658
665
|
`\u2699\uFE0F Using Storm Workspace configuration:
|
|
659
|
-
${
|
|
666
|
+
${_chunkGTGBVWZPjs.formatLogMessage.call(void 0, config)}`,
|
|
660
667
|
config
|
|
661
668
|
);
|
|
662
669
|
}
|
|
@@ -677,7 +684,7 @@ var readNxConfig = async (workspaceRoot) => {
|
|
|
677
684
|
const config = await getConfig();
|
|
678
685
|
rootDir = config.workspaceRoot;
|
|
679
686
|
}
|
|
680
|
-
const nxJsonPath =
|
|
687
|
+
const nxJsonPath = _chunkGTGBVWZPjs.joinPaths.call(void 0, rootDir, "nx.json");
|
|
681
688
|
if (!_fs.existsSync.call(void 0, nxJsonPath)) {
|
|
682
689
|
throw new Error("Cannot find project.json configuration");
|
|
683
690
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkGTGBVWZPjs = require('./chunk-GTGBVWZP.js');
|
|
4
4
|
|
|
5
5
|
// src/plugins/ts-resolve.ts
|
|
6
6
|
var _fs = require('fs'); var _fs2 = _interopRequireDefault(_fs);
|
|
@@ -26,8 +26,8 @@ var tsResolvePlugin = ({
|
|
|
26
26
|
return {
|
|
27
27
|
name: `storm:ts-resolve`,
|
|
28
28
|
async resolveId(source, importer) {
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - resolveId source: ${source}`);
|
|
30
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - resolveId importer: ${importer}`);
|
|
31
31
|
if (!importer) {
|
|
32
32
|
return null;
|
|
33
33
|
}
|
|
@@ -38,7 +38,7 @@ var tsResolvePlugin = ({
|
|
|
38
38
|
return false;
|
|
39
39
|
}
|
|
40
40
|
if (ignore && ignore(source, importer)) {
|
|
41
|
-
|
|
41
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - ignored ${source}`);
|
|
42
42
|
return null;
|
|
43
43
|
}
|
|
44
44
|
if (resolveOnly) {
|
|
@@ -47,12 +47,12 @@ var tsResolvePlugin = ({
|
|
|
47
47
|
return v.test(source);
|
|
48
48
|
});
|
|
49
49
|
if (!shouldResolve) {
|
|
50
|
-
|
|
50
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - skipped by matching resolveOnly ${source}`);
|
|
51
51
|
return null;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
if (_path2.default.isAbsolute(source)) {
|
|
55
|
-
|
|
55
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - skipped absolute path: ${source}`);
|
|
56
56
|
return null;
|
|
57
57
|
}
|
|
58
58
|
const basedir = importer ? await _fs2.default.promises.realpath(_path2.default.dirname(importer)) : process.cwd();
|
|
@@ -81,10 +81,10 @@ var tsResolvePlugin = ({
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
if (id) {
|
|
84
|
-
|
|
84
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - resolved ${source} to ${id}`);
|
|
85
85
|
return id;
|
|
86
86
|
}
|
|
87
|
-
|
|
87
|
+
_chunkGTGBVWZPjs.writeDebug.call(void 0, `ts-resolve - mark ${source} as external`);
|
|
88
88
|
return false;
|
|
89
89
|
}
|
|
90
90
|
};
|
|
@@ -4,17 +4,18 @@ import {
|
|
|
4
4
|
STORM_DEFAULT_DOCS,
|
|
5
5
|
STORM_DEFAULT_HOMEPAGE,
|
|
6
6
|
STORM_DEFAULT_LICENSING,
|
|
7
|
+
applyDefaultConfig,
|
|
7
8
|
correctPaths,
|
|
8
9
|
findWorkspaceRoot,
|
|
9
10
|
formatLogMessage,
|
|
10
|
-
getDefaultConfig,
|
|
11
11
|
getLogLevel,
|
|
12
12
|
getLogLevelLabel,
|
|
13
|
+
getPackageJsonConfig,
|
|
13
14
|
joinPaths,
|
|
14
15
|
stormWorkspaceConfigSchema,
|
|
15
16
|
writeTrace,
|
|
16
17
|
writeWarning
|
|
17
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-2QRSJ2XB.mjs";
|
|
18
19
|
|
|
19
20
|
// ../config-tools/src/config-file/get-config-file.ts
|
|
20
21
|
import { loadConfig } from "c12";
|
|
@@ -145,6 +146,7 @@ var getConfigEnv = () => {
|
|
|
145
146
|
docs: process.env[`${prefix}DOCS`] || void 0,
|
|
146
147
|
licensing: process.env[`${prefix}LICENSING`] || void 0,
|
|
147
148
|
contact: process.env[`${prefix}CONTACT`] || void 0,
|
|
149
|
+
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
148
150
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
149
151
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
150
152
|
configFile: process.env[`${prefix}CONFIG_FILE`] ? correctPaths(process.env[`${prefix}CONFIG_FILE`]) : void 0,
|
|
@@ -363,6 +365,9 @@ var setConfigEnv = (config) => {
|
|
|
363
365
|
if (config.contact) {
|
|
364
366
|
process.env[`${prefix}CONTACT`] = config.contact;
|
|
365
367
|
}
|
|
368
|
+
if (config.support) {
|
|
369
|
+
process.env[`${prefix}SUPPORT`] = config.support;
|
|
370
|
+
}
|
|
366
371
|
if (config.timezone) {
|
|
367
372
|
process.env[`${prefix}TIMEZONE`] = config.timezone;
|
|
368
373
|
process.env.TZ = config.timezone;
|
|
@@ -612,9 +617,11 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
612
617
|
return void 0;
|
|
613
618
|
}
|
|
614
619
|
}
|
|
615
|
-
const defaultConfig = await
|
|
616
|
-
result =
|
|
617
|
-
|
|
620
|
+
const defaultConfig = await getPackageJsonConfig(_workspaceRoot);
|
|
621
|
+
result = applyDefaultConfig(
|
|
622
|
+
await stormWorkspaceConfigSchema.parseAsync(
|
|
623
|
+
defu2(configEnv, configFile, defaultConfig)
|
|
624
|
+
)
|
|
618
625
|
);
|
|
619
626
|
result.workspaceRoot ??= _workspaceRoot;
|
|
620
627
|
} else {
|
package/dist/index.d.mts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.mjs';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.mjs';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-bock3dMj.mjs';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import '@nx/devkit';
|
|
20
20
|
import '@nx/js/src/utils/buildable-libs-utils';
|
package/dist/index.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export { getExternalDependencies, getExtraDependencies, getInternalDependencies
|
|
|
14
14
|
export { readNxConfig } from './utilities/read-nx-config.js';
|
|
15
15
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './utilities/task-graph.js';
|
|
16
16
|
import 'rollup';
|
|
17
|
-
import './types-
|
|
17
|
+
import './types-bock3dMj.js';
|
|
18
18
|
import 'zod';
|
|
19
19
|
import '@nx/devkit';
|
|
20
20
|
import '@nx/js/src/utils/buildable-libs-utils';
|
package/dist/index.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-65HIHTHN.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkS7FCLPMKjs = require('./chunk-S7FCLPMK.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('./chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunk7HCW6J5Mjs = require('./chunk-7HCW6J5M.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunkPETLJROIjs = require('./chunk-PETLJROI.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkR6WRMQAAjs = require('./chunk-R6WRMQAA.js');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
var _chunkWLW3DA6Xjs = require('./chunk-WLW3DA6X.js');
|
|
@@ -43,14 +43,14 @@ require('./chunk-6F4PWJZI.js');
|
|
|
43
43
|
require('./chunk-WPFIBCZT.js');
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
var
|
|
46
|
+
var _chunkNQ3XUSZBjs = require('./chunk-NQ3XUSZB.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
var
|
|
53
|
-
require('./chunk-
|
|
52
|
+
var _chunkU2TNM7T7js = require('./chunk-U2TNM7T7.js');
|
|
53
|
+
require('./chunk-GTGBVWZP.js');
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
|
|
@@ -79,4 +79,4 @@ var _chunkN7HP2YYEjs = require('./chunk-N7HP2YYE.js');
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies =
|
|
82
|
+
exports.DEFAULT_COMPILED_BANNER = _chunkMYIXHZMSjs.DEFAULT_COMPILED_BANNER; exports.DEFAULT_ENVIRONMENT = _chunkMYIXHZMSjs.DEFAULT_ENVIRONMENT; exports.DEFAULT_ORGANIZATION = _chunkMYIXHZMSjs.DEFAULT_ORGANIZATION; exports.DEFAULT_PLATFORM = _chunkMYIXHZMSjs.DEFAULT_PLATFORM; exports.DEFAULT_TARGET = _chunkMYIXHZMSjs.DEFAULT_TARGET; exports.addPackageDependencies = _chunkPETLJROIjs.addPackageDependencies; exports.addPackageJsonExport = _chunkPETLJROIjs.addPackageJsonExport; exports.addPackageJsonExports = _chunkPETLJROIjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunkPETLJROIjs.addWorkspacePackageJsonFields; exports.analyze = _chunkNQ3XUSZBjs.analyze; exports.copyAssets = _chunk7HCW6J5Mjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkR6WRMQAAjs.getEntryPoints; exports.getEnv = _chunkWLW3DA6Xjs.getEnv; exports.getExternalDependencies = _chunkWNMPQTPHjs.getExternalDependencies; exports.getExtraDependencies = _chunkWNMPQTPHjs.getExtraDependencies; exports.getFileBanner = _chunkUHJ5ACWHjs.getFileBanner; exports.getInternalDependencies = _chunkWNMPQTPHjs.getInternalDependencies; exports.getOutExtension = _chunkA75DEKU5js.getOutExtension; exports.readNxConfig = _chunkS7FCLPMKjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkU2TNM7T7js.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
|
package/dist/index.mjs
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import "./chunk-KVP3YMX6.mjs";
|
|
2
2
|
import {
|
|
3
3
|
readNxConfig
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-U7PSAXCT.mjs";
|
|
5
5
|
import {
|
|
6
6
|
createTaskId,
|
|
7
7
|
getAllWorkspaceTaskGraphs
|
|
8
8
|
} from "./chunk-JCFRYUYP.mjs";
|
|
9
9
|
import {
|
|
10
10
|
copyAssets
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-FRWMSPKW.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-JIOQYV3B.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-3Q4PJ2CH.mjs";
|
|
21
21
|
import {
|
|
22
22
|
getEnv
|
|
23
23
|
} from "./chunk-HGTDDXA5.mjs";
|
|
@@ -43,14 +43,14 @@ import "./chunk-WBQAMGXK.mjs";
|
|
|
43
43
|
import "./chunk-UN3B7LBV.mjs";
|
|
44
44
|
import {
|
|
45
45
|
analyze
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-WBAOQRPY.mjs";
|
|
47
47
|
import {
|
|
48
48
|
swc
|
|
49
49
|
} from "./chunk-7YKXR5JJ.mjs";
|
|
50
50
|
import {
|
|
51
51
|
tsResolvePlugin
|
|
52
|
-
} from "./chunk-
|
|
53
|
-
import "./chunk-
|
|
52
|
+
} from "./chunk-I4GQIOV7.mjs";
|
|
53
|
+
import "./chunk-2QRSJ2XB.mjs";
|
|
54
54
|
import {
|
|
55
55
|
typeDefinitions
|
|
56
56
|
} from "./chunk-VGLIZ2H3.mjs";
|
package/dist/plugins/analyze.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkNQ3XUSZBjs = require('../chunk-NQ3XUSZB.js');
|
|
4
|
+
require('../chunk-GTGBVWZP.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.analyze =
|
|
7
|
+
exports.analyze = _chunkNQ3XUSZBjs.analyze;
|
package/dist/plugins/analyze.mjs
CHANGED
package/dist/plugins/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-WPFIBCZT.js');
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkNQ3XUSZBjs = require('../chunk-NQ3XUSZB.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkHQD5ZBIUjs = require('../chunk-HQD5ZBIU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
11
|
-
require('../chunk-
|
|
10
|
+
var _chunkU2TNM7T7js = require('../chunk-U2TNM7T7.js');
|
|
11
|
+
require('../chunk-GTGBVWZP.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
var _chunkN7HP2YYEjs = require('../chunk-N7HP2YYE.js');
|
|
@@ -17,4 +17,4 @@ var _chunkN7HP2YYEjs = require('../chunk-N7HP2YYE.js');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
exports.analyze =
|
|
20
|
+
exports.analyze = _chunkNQ3XUSZBjs.analyze; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkU2TNM7T7js.tsResolvePlugin; exports.typeDefinitions = _chunkN7HP2YYEjs.typeDefinitions;
|
package/dist/plugins/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import "../chunk-UN3B7LBV.mjs";
|
|
2
2
|
import {
|
|
3
3
|
analyze
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-WBAOQRPY.mjs";
|
|
5
5
|
import {
|
|
6
6
|
swc
|
|
7
7
|
} from "../chunk-7YKXR5JJ.mjs";
|
|
8
8
|
import {
|
|
9
9
|
tsResolvePlugin
|
|
10
|
-
} from "../chunk-
|
|
11
|
-
import "../chunk-
|
|
10
|
+
} from "../chunk-I4GQIOV7.mjs";
|
|
11
|
+
import "../chunk-2QRSJ2XB.mjs";
|
|
12
12
|
import {
|
|
13
13
|
typeDefinitions
|
|
14
14
|
} from "../chunk-VGLIZ2H3.mjs";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkU2TNM7T7js = require('../chunk-U2TNM7T7.js');
|
|
4
|
+
require('../chunk-GTGBVWZP.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.tsResolvePlugin =
|
|
7
|
+
exports.tsResolvePlugin = _chunkU2TNM7T7js.tsResolvePlugin;
|
|
@@ -11,10 +11,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
11
11
|
organization: z.ZodDefault<z.ZodString>;
|
|
12
12
|
repository: z.ZodOptional<z.ZodString>;
|
|
13
13
|
license: z.ZodDefault<z.ZodString>;
|
|
14
|
-
homepage: z.
|
|
15
|
-
docs: z.
|
|
16
|
-
licensing: z.
|
|
17
|
-
contact: z.
|
|
14
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
15
|
+
docs: z.ZodOptional<z.ZodString>;
|
|
16
|
+
licensing: z.ZodOptional<z.ZodString>;
|
|
17
|
+
contact: z.ZodOptional<z.ZodString>;
|
|
18
|
+
support: z.ZodOptional<z.ZodString>;
|
|
18
19
|
branch: z.ZodDefault<z.ZodString>;
|
|
19
20
|
preid: z.ZodOptional<z.ZodString>;
|
|
20
21
|
owner: z.ZodDefault<z.ZodString>;
|
|
@@ -844,10 +845,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
844
845
|
mode: "development" | "staging" | "production";
|
|
845
846
|
organization: string;
|
|
846
847
|
license: string;
|
|
847
|
-
homepage: string;
|
|
848
|
-
docs: string;
|
|
849
|
-
licensing: string;
|
|
850
|
-
contact: string;
|
|
851
848
|
branch: string;
|
|
852
849
|
owner: string;
|
|
853
850
|
bot: {
|
|
@@ -1047,6 +1044,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1047
1044
|
extends?: string | string[] | undefined;
|
|
1048
1045
|
namespace?: string | undefined;
|
|
1049
1046
|
repository?: string | undefined;
|
|
1047
|
+
homepage?: string | undefined;
|
|
1048
|
+
docs?: string | undefined;
|
|
1049
|
+
licensing?: string | undefined;
|
|
1050
|
+
contact?: string | undefined;
|
|
1051
|
+
support?: string | undefined;
|
|
1050
1052
|
preid?: string | undefined;
|
|
1051
1053
|
skipConfigLogging?: boolean | undefined;
|
|
1052
1054
|
}, {
|
|
@@ -1239,6 +1241,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1239
1241
|
docs?: string | undefined;
|
|
1240
1242
|
licensing?: string | undefined;
|
|
1241
1243
|
contact?: string | undefined;
|
|
1244
|
+
support?: string | undefined;
|
|
1242
1245
|
branch?: string | undefined;
|
|
1243
1246
|
preid?: string | undefined;
|
|
1244
1247
|
owner?: string | undefined;
|