@storm-software/build-tools 0.151.21 → 0.151.23
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-GEGGAV75.js → chunk-2R6QKSSF.js} +17 -17
- package/dist/{chunk-UTXEO62G.js → chunk-4ZDXJ6UI.js} +10 -10
- package/dist/{chunk-IOXPZJ4F.mjs → chunk-5SBQOLIB.mjs} +1 -1
- package/dist/{chunk-GJBPVWQV.js → chunk-775MKKTQ.js} +8 -8
- package/dist/{chunk-PZVQHCR3.mjs → chunk-7ZRPT4F4.mjs} +1 -1
- package/dist/{chunk-RZ3QK5QM.js → chunk-AU3WLN5A.js} +10 -10
- package/dist/{chunk-D2CE3KRZ.mjs → chunk-BTTKIB67.mjs} +1 -1
- package/dist/{chunk-HG6KME7U.mjs → chunk-DZUWPEKE.mjs} +1 -1
- package/dist/{chunk-CNDWLTG3.js → chunk-MDNUYVQB.js} +49 -45
- package/dist/{chunk-OTX5ITS4.js → chunk-MXSCT73G.js} +2 -2
- package/dist/{chunk-7FDGMKOH.mjs → chunk-NHQP5PLO.mjs} +1 -1
- package/dist/{chunk-MGV4IMYX.mjs → chunk-NU2UXOYB.mjs} +17 -17
- package/dist/{chunk-RDJXQ27R.mjs → chunk-OVIPZ5RF.mjs} +6 -2
- package/dist/{chunk-OQ7L2KD3.js → chunk-UI4NOXAS.js} +8 -8
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- 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-DSVSMow6.d.mts → types-CV-GxKX8.d.mts} +24 -24
- package/dist/{types-DSVSMow6.d.ts → types-CV-GxKX8.d.ts} +24 -24
- package/dist/types-cauG-S4M.d.mts +216 -0
- package/dist/types-cauG-S4M.d.ts +216 -0
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/dist/utilities/copy-assets.d.mts +2 -2
- package/dist/utilities/copy-assets.d.ts +2 -2
- package/dist/utilities/copy-assets.js +3 -3
- package/dist/utilities/copy-assets.mjs +2 -2
- package/dist/utilities/generate-package-json.d.mts +2 -2
- package/dist/utilities/generate-package-json.d.ts +2 -2
- 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 +2 -2
- package/dist/utilities/get-entry-points.d.ts +2 -2
- 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 +2 -2
- package/dist/utilities/get-env.d.ts +2 -2
- package/dist/utilities/index.d.mts +2 -2
- package/dist/utilities/index.d.ts +2 -2
- 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 +2 -2
|
@@ -248,7 +248,6 @@ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
|
248
248
|
var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
249
249
|
var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
250
250
|
var STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
251
|
-
var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
252
251
|
var STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
253
252
|
var STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
254
253
|
var STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
@@ -265,7 +264,7 @@ If this sounds interesting, and you would like to help us in creating the next g
|
|
|
265
264
|
var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
266
265
|
|
|
267
266
|
// ../config/src/schema.ts
|
|
268
|
-
import * as z from "zod
|
|
267
|
+
import * as z from "zod";
|
|
269
268
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
270
269
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
271
270
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -332,7 +331,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
332
331
|
positive: PositiveColorSchema,
|
|
333
332
|
negative: NegativeColorSchema
|
|
334
333
|
});
|
|
335
|
-
var RegistryUrlConfigSchema = z.
|
|
334
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
336
335
|
var RegistryConfigSchema = z.object({
|
|
337
336
|
github: RegistryUrlConfigSchema,
|
|
338
337
|
npm: RegistryUrlConfigSchema,
|
|
@@ -359,18 +358,18 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
359
358
|
name: z.string().trim().default("stormie-bot").describe(
|
|
360
359
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
361
360
|
),
|
|
362
|
-
email: z.
|
|
361
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
363
362
|
}).describe(
|
|
364
363
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
365
364
|
);
|
|
366
365
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
367
|
-
banner: z.string().trim().
|
|
366
|
+
banner: z.string().trim().optional().describe(
|
|
368
367
|
"A URL to a banner image used to display the workspace's release"
|
|
369
368
|
),
|
|
370
369
|
header: z.string().trim().optional().describe(
|
|
371
370
|
"A header message appended to the start of the workspace's release notes"
|
|
372
371
|
),
|
|
373
|
-
footer: z.string().trim().
|
|
372
|
+
footer: z.string().trim().optional().describe(
|
|
374
373
|
"A footer message appended to the end of the workspace's release notes"
|
|
375
374
|
)
|
|
376
375
|
}).describe("The workspace's release config used during the release process");
|
|
@@ -402,19 +401,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
402
401
|
);
|
|
403
402
|
var errorConfigSchema = z.object({
|
|
404
403
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
405
|
-
url: z.
|
|
404
|
+
url: z.url().optional().describe(
|
|
406
405
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
407
406
|
)
|
|
408
407
|
}).describe("The workspace's error config used during the error process");
|
|
409
408
|
var organizationConfigSchema = z.object({
|
|
410
409
|
name: z.string().trim().describe("The name of the organization"),
|
|
411
410
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
412
|
-
logo: z.
|
|
413
|
-
icon: z.
|
|
414
|
-
url: z.
|
|
411
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
412
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
413
|
+
url: z.url().optional().describe(
|
|
415
414
|
"A URL to a page that provides more information about the organization"
|
|
416
415
|
)
|
|
417
416
|
}).describe("The workspace's organization details");
|
|
417
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
418
418
|
var stormWorkspaceConfigSchema = z.object({
|
|
419
419
|
$schema: z.string().trim().default(
|
|
420
420
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -431,12 +431,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
431
431
|
),
|
|
432
432
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
433
433
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
434
|
-
homepage: z.
|
|
435
|
-
docs: z.
|
|
436
|
-
portal: z.
|
|
437
|
-
licensing: z.
|
|
438
|
-
contact: z.
|
|
439
|
-
support: z.
|
|
434
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
435
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
436
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
437
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
438
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
439
|
+
support: z.url().optional().describe(
|
|
440
440
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
441
441
|
),
|
|
442
442
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -446,7 +446,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
446
446
|
release: WorkspaceReleaseConfigSchema,
|
|
447
447
|
socials: WorkspaceSocialsConfigSchema,
|
|
448
448
|
error: errorConfigSchema,
|
|
449
|
-
mode: z.enum(
|
|
449
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
450
450
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
451
451
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
452
452
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
stormWorkspaceConfigSchema,
|
|
16
16
|
writeTrace,
|
|
17
17
|
writeWarning
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-NU2UXOYB.mjs";
|
|
19
19
|
|
|
20
20
|
// ../config-tools/src/config-file/get-config-file.ts
|
|
21
21
|
import { loadConfig } from "c12";
|
|
@@ -648,7 +648,11 @@ var createStormWorkspaceConfig = async (extensionName, schema, workspaceRoot, sk
|
|
|
648
648
|
}
|
|
649
649
|
}
|
|
650
650
|
const defaultConfig = await getPackageJsonConfig(_workspaceRoot);
|
|
651
|
-
const configInput = defu2(
|
|
651
|
+
const configInput = defu2(
|
|
652
|
+
configEnv,
|
|
653
|
+
configFile,
|
|
654
|
+
defaultConfig
|
|
655
|
+
);
|
|
652
656
|
try {
|
|
653
657
|
result = applyDefaultConfig(
|
|
654
658
|
await stormWorkspaceConfigSchema.parseAsync(configInput)
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunk2R6QKSSFjs = require('./chunk-2R6QKSSF.js');
|
|
7
7
|
|
|
8
8
|
// src/utilities/get-entry-points.ts
|
|
9
9
|
var _glob = require('glob');
|
|
10
10
|
var getEntryPoints = async (config, projectRoot, sourceRoot, entry, emitOnAll = false) => {
|
|
11
|
-
const workspaceRoot = config.workspaceRoot ||
|
|
11
|
+
const workspaceRoot = config.workspaceRoot || _chunk2R6QKSSFjs.findWorkspaceRoot.call(void 0, );
|
|
12
12
|
const entryPoints = [];
|
|
13
13
|
if (entry) {
|
|
14
14
|
if (typeof entry === "string") {
|
|
@@ -21,7 +21,7 @@ var getEntryPoints = async (config, projectRoot, sourceRoot, entry, emitOnAll =
|
|
|
21
21
|
}
|
|
22
22
|
if (emitOnAll) {
|
|
23
23
|
entryPoints.push(
|
|
24
|
-
|
|
24
|
+
_chunk2R6QKSSFjs.joinPaths.call(void 0, workspaceRoot, sourceRoot || projectRoot, "**/*.{ts,tsx}")
|
|
25
25
|
);
|
|
26
26
|
}
|
|
27
27
|
const results = await Promise.all(
|
|
@@ -34,12 +34,12 @@ var getEntryPoints = async (config, projectRoot, sourceRoot, entry, emitOnAll =
|
|
|
34
34
|
});
|
|
35
35
|
paths.push(
|
|
36
36
|
...files.reduce((ret, filePath) => {
|
|
37
|
-
const result =
|
|
38
|
-
|
|
37
|
+
const result = _chunk2R6QKSSFjs.correctPaths.call(void 0,
|
|
38
|
+
_chunk2R6QKSSFjs.joinPaths.call(void 0, filePath.path, filePath.name).replaceAll(_chunk2R6QKSSFjs.correctPaths.call(void 0, workspaceRoot), "").replaceAll(_chunk2R6QKSSFjs.correctPaths.call(void 0, projectRoot), "")
|
|
39
39
|
);
|
|
40
40
|
if (result) {
|
|
41
|
-
|
|
42
|
-
`Trying to add entry point ${result} at "${
|
|
41
|
+
_chunk2R6QKSSFjs.writeDebug.call(void 0,
|
|
42
|
+
`Trying to add entry point ${result} at "${_chunk2R6QKSSFjs.joinPaths.call(void 0,
|
|
43
43
|
filePath.path,
|
|
44
44
|
filePath.name
|
|
45
45
|
)}"`,
|
|
@@ -53,7 +53,7 @@ var getEntryPoints = async (config, projectRoot, sourceRoot, entry, emitOnAll =
|
|
|
53
53
|
}, [])
|
|
54
54
|
);
|
|
55
55
|
} else {
|
|
56
|
-
|
|
56
|
+
_chunk2R6QKSSFjs.writeDebug.call(void 0, `Trying to add entry point ${entryPoint}"`, config);
|
|
57
57
|
if (!paths.includes(entryPoint)) {
|
|
58
58
|
paths.push(entryPoint);
|
|
59
59
|
}
|
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-
|
|
18
|
-
import 'zod
|
|
17
|
+
import './types-cauG-S4M.mjs';
|
|
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-
|
|
18
|
-
import 'zod
|
|
17
|
+
import './types-cauG-S4M.js';
|
|
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 _chunkMDNUYVQBjs = require('./chunk-MDNUYVQB.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('./chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkAU3WLN5Ajs = require('./chunk-AU3WLN5A.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunk4ZDXJ6UIjs = require('./chunk-4ZDXJ6UI.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkUI4NOXASjs = require('./chunk-UI4NOXAS.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 _chunkMXSCT73Gjs = require('./chunk-MXSCT73G.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
var
|
|
53
|
-
require('./chunk-
|
|
52
|
+
var _chunk775MKKTQjs = require('./chunk-775MKKTQ.js');
|
|
53
|
+
require('./chunk-2R6QKSSF.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 = _chunk4ZDXJ6UIjs.addPackageDependencies; exports.addPackageJsonExport = _chunk4ZDXJ6UIjs.addPackageJsonExport; exports.addPackageJsonExports = _chunk4ZDXJ6UIjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunk4ZDXJ6UIjs.addWorkspacePackageJsonFields; exports.analyze = _chunkMXSCT73Gjs.analyze; exports.copyAssets = _chunkAU3WLN5Ajs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkUI4NOXASjs.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 = _chunkMDNUYVQBjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunk775MKKTQjs.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-OVIPZ5RF.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-BTTKIB67.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-NHQP5PLO.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-DZUWPEKE.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-7ZRPT4F4.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-5SBQOLIB.mjs";
|
|
53
|
+
import "./chunk-NU2UXOYB.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 _chunkMXSCT73Gjs = require('../chunk-MXSCT73G.js');
|
|
4
|
+
require('../chunk-2R6QKSSF.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.analyze =
|
|
7
|
+
exports.analyze = _chunkMXSCT73Gjs.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 _chunkMXSCT73Gjs = require('../chunk-MXSCT73G.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkHQD5ZBIUjs = require('../chunk-HQD5ZBIU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
11
|
-
require('../chunk-
|
|
10
|
+
var _chunk775MKKTQjs = require('../chunk-775MKKTQ.js');
|
|
11
|
+
require('../chunk-2R6QKSSF.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 = _chunkMXSCT73Gjs.analyze; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunk775MKKTQjs.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-7ZRPT4F4.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-5SBQOLIB.mjs";
|
|
11
|
+
import "../chunk-NU2UXOYB.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 _chunk775MKKTQjs = require('../chunk-775MKKTQ.js');
|
|
4
|
+
require('../chunk-2R6QKSSF.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.tsResolvePlugin =
|
|
7
|
+
exports.tsResolvePlugin = _chunk775MKKTQjs.tsResolvePlugin;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -11,29 +11,29 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
11
11
|
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12
12
|
name: z.ZodString;
|
|
13
13
|
description: z.ZodOptional<z.ZodString>;
|
|
14
|
-
logo: z.ZodOptional<z.
|
|
15
|
-
icon: z.ZodOptional<z.
|
|
16
|
-
url: z.ZodOptional<z.
|
|
14
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
15
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
16
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
17
17
|
}, z.core.$strip>, z.ZodString]>>;
|
|
18
18
|
repository: z.ZodOptional<z.ZodString>;
|
|
19
19
|
license: z.ZodDefault<z.ZodString>;
|
|
20
|
-
homepage: z.ZodOptional<z.
|
|
21
|
-
docs: z.ZodOptional<z.
|
|
22
|
-
portal: z.ZodOptional<z.
|
|
23
|
-
licensing: z.ZodOptional<z.
|
|
24
|
-
contact: z.ZodOptional<z.
|
|
25
|
-
support: z.ZodOptional<z.
|
|
20
|
+
homepage: z.ZodOptional<z.ZodURL>;
|
|
21
|
+
docs: z.ZodOptional<z.ZodURL>;
|
|
22
|
+
portal: z.ZodOptional<z.ZodURL>;
|
|
23
|
+
licensing: z.ZodOptional<z.ZodURL>;
|
|
24
|
+
contact: z.ZodOptional<z.ZodURL>;
|
|
25
|
+
support: z.ZodOptional<z.ZodURL>;
|
|
26
26
|
branch: z.ZodDefault<z.ZodString>;
|
|
27
27
|
preid: z.ZodOptional<z.ZodString>;
|
|
28
28
|
owner: z.ZodDefault<z.ZodString>;
|
|
29
29
|
bot: z.ZodObject<{
|
|
30
30
|
name: z.ZodDefault<z.ZodString>;
|
|
31
|
-
email: z.ZodDefault<z.
|
|
31
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
release: z.ZodObject<{
|
|
34
|
-
banner: z.
|
|
34
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
35
35
|
header: z.ZodOptional<z.ZodString>;
|
|
36
|
-
footer: z.
|
|
36
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
37
37
|
}, z.core.$strip>;
|
|
38
38
|
socials: z.ZodObject<{
|
|
39
39
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -45,12 +45,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
45
45
|
}, z.core.$strip>;
|
|
46
46
|
error: z.ZodObject<{
|
|
47
47
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
48
|
-
url: z.ZodOptional<z.
|
|
48
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
49
49
|
}, z.core.$strip>;
|
|
50
|
-
mode: z.
|
|
51
|
-
production: "production";
|
|
50
|
+
mode: z.ZodPrefault<z.ZodEnum<{
|
|
52
51
|
development: "development";
|
|
53
52
|
staging: "staging";
|
|
53
|
+
production: "production";
|
|
54
54
|
}>>;
|
|
55
55
|
workspaceRoot: z.ZodString;
|
|
56
56
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -71,23 +71,23 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
71
71
|
timezone: z.ZodDefault<z.ZodString>;
|
|
72
72
|
locale: z.ZodDefault<z.ZodString>;
|
|
73
73
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
74
|
+
debug: "debug";
|
|
74
75
|
error: "error";
|
|
75
76
|
success: "success";
|
|
76
|
-
info: "info";
|
|
77
|
-
fatal: "fatal";
|
|
78
77
|
silent: "silent";
|
|
78
|
+
fatal: "fatal";
|
|
79
79
|
warn: "warn";
|
|
80
|
-
|
|
80
|
+
info: "info";
|
|
81
81
|
trace: "trace";
|
|
82
82
|
all: "all";
|
|
83
83
|
}>>;
|
|
84
84
|
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
85
85
|
registry: z.ZodDefault<z.ZodObject<{
|
|
86
|
-
github: z.ZodOptional<z.
|
|
87
|
-
npm: z.ZodOptional<z.
|
|
88
|
-
cargo: z.ZodOptional<z.
|
|
89
|
-
cyclone: z.ZodOptional<z.
|
|
90
|
-
container: z.ZodOptional<z.
|
|
86
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
87
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
88
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
89
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
90
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
91
91
|
}, z.core.$strip>>;
|
|
92
92
|
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
93
93
|
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -11,29 +11,29 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
11
11
|
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12
12
|
name: z.ZodString;
|
|
13
13
|
description: z.ZodOptional<z.ZodString>;
|
|
14
|
-
logo: z.ZodOptional<z.
|
|
15
|
-
icon: z.ZodOptional<z.
|
|
16
|
-
url: z.ZodOptional<z.
|
|
14
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
15
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
16
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
17
17
|
}, z.core.$strip>, z.ZodString]>>;
|
|
18
18
|
repository: z.ZodOptional<z.ZodString>;
|
|
19
19
|
license: z.ZodDefault<z.ZodString>;
|
|
20
|
-
homepage: z.ZodOptional<z.
|
|
21
|
-
docs: z.ZodOptional<z.
|
|
22
|
-
portal: z.ZodOptional<z.
|
|
23
|
-
licensing: z.ZodOptional<z.
|
|
24
|
-
contact: z.ZodOptional<z.
|
|
25
|
-
support: z.ZodOptional<z.
|
|
20
|
+
homepage: z.ZodOptional<z.ZodURL>;
|
|
21
|
+
docs: z.ZodOptional<z.ZodURL>;
|
|
22
|
+
portal: z.ZodOptional<z.ZodURL>;
|
|
23
|
+
licensing: z.ZodOptional<z.ZodURL>;
|
|
24
|
+
contact: z.ZodOptional<z.ZodURL>;
|
|
25
|
+
support: z.ZodOptional<z.ZodURL>;
|
|
26
26
|
branch: z.ZodDefault<z.ZodString>;
|
|
27
27
|
preid: z.ZodOptional<z.ZodString>;
|
|
28
28
|
owner: z.ZodDefault<z.ZodString>;
|
|
29
29
|
bot: z.ZodObject<{
|
|
30
30
|
name: z.ZodDefault<z.ZodString>;
|
|
31
|
-
email: z.ZodDefault<z.
|
|
31
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
release: z.ZodObject<{
|
|
34
|
-
banner: z.
|
|
34
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
35
35
|
header: z.ZodOptional<z.ZodString>;
|
|
36
|
-
footer: z.
|
|
36
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
37
37
|
}, z.core.$strip>;
|
|
38
38
|
socials: z.ZodObject<{
|
|
39
39
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -45,12 +45,12 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
45
45
|
}, z.core.$strip>;
|
|
46
46
|
error: z.ZodObject<{
|
|
47
47
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
48
|
-
url: z.ZodOptional<z.
|
|
48
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
49
49
|
}, z.core.$strip>;
|
|
50
|
-
mode: z.
|
|
51
|
-
production: "production";
|
|
50
|
+
mode: z.ZodPrefault<z.ZodEnum<{
|
|
52
51
|
development: "development";
|
|
53
52
|
staging: "staging";
|
|
53
|
+
production: "production";
|
|
54
54
|
}>>;
|
|
55
55
|
workspaceRoot: z.ZodString;
|
|
56
56
|
skipCache: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -71,23 +71,23 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
71
71
|
timezone: z.ZodDefault<z.ZodString>;
|
|
72
72
|
locale: z.ZodDefault<z.ZodString>;
|
|
73
73
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
74
|
+
debug: "debug";
|
|
74
75
|
error: "error";
|
|
75
76
|
success: "success";
|
|
76
|
-
info: "info";
|
|
77
|
-
fatal: "fatal";
|
|
78
77
|
silent: "silent";
|
|
78
|
+
fatal: "fatal";
|
|
79
79
|
warn: "warn";
|
|
80
|
-
|
|
80
|
+
info: "info";
|
|
81
81
|
trace: "trace";
|
|
82
82
|
all: "all";
|
|
83
83
|
}>>;
|
|
84
84
|
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
85
85
|
registry: z.ZodDefault<z.ZodObject<{
|
|
86
|
-
github: z.ZodOptional<z.
|
|
87
|
-
npm: z.ZodOptional<z.
|
|
88
|
-
cargo: z.ZodOptional<z.
|
|
89
|
-
cyclone: z.ZodOptional<z.
|
|
90
|
-
container: z.ZodOptional<z.
|
|
86
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
87
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
88
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
89
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
90
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
91
91
|
}, z.core.$strip>>;
|
|
92
92
|
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
93
93
|
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|