@storm-software/build-tools 0.151.7 → 0.151.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-MKL5Y27F.mjs → chunk-3Z3XGHR2.mjs} +12 -1
- package/dist/{chunk-UIODWJMU.js → chunk-77VWOMEL.js} +10 -10
- package/dist/{chunk-J6WEWRXQ.js → chunk-BGIPYCLA.js} +12 -1
- package/dist/{chunk-2JOIQLII.js → chunk-CMTNPFIF.js} +77 -45
- package/dist/{chunk-YKHCDDKA.mjs → chunk-G473ISDX.mjs} +1 -1
- package/dist/{chunk-TN2GANQN.js → chunk-HDBGACMY.js} +8 -8
- package/dist/{chunk-SEERZ2JR.mjs → chunk-HXOL4XNP.mjs} +1 -1
- package/dist/{chunk-SK2HHQ74.js → chunk-LXDS235I.js} +8 -8
- package/dist/{chunk-6Y3B4IWQ.js → chunk-NTFTBMMV.js} +2 -2
- package/dist/{chunk-NS4C45JM.mjs → chunk-PW2E4KBD.mjs} +1 -1
- package/dist/{chunk-APEVCDWC.mjs → chunk-WHADZWHO.mjs} +35 -3
- package/dist/{chunk-EYW3TTNG.mjs → chunk-ZDJWHRO7.mjs} +1 -1
- package/dist/{chunk-JAKX4BFP.mjs → chunk-ZPVBBSRY.mjs} +1 -1
- package/dist/{chunk-UHSZT2UP.js → chunk-ZQA63YFS.js} +9 -9
- 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-BUGkxiRi.d.mts → types-BTxn49UW.d.mts} +33 -3
- package/dist/{types-BUGkxiRi.d.ts → types-BTxn49UW.d.ts} +33 -3
- 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
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
stormWorkspaceConfigSchema,
|
|
16
16
|
writeTrace,
|
|
17
17
|
writeWarning
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-3Z3XGHR2.mjs";
|
|
19
19
|
|
|
20
20
|
// ../config-tools/src/config-file/get-config-file.ts
|
|
21
21
|
import { loadConfig } from "c12";
|
|
@@ -139,7 +139,13 @@ var getConfigEnv = () => {
|
|
|
139
139
|
medium: process.env[`${prefix}ACCOUNT_MEDIUM`] || void 0,
|
|
140
140
|
github: process.env[`${prefix}ACCOUNT_GITHUB`] || void 0
|
|
141
141
|
},
|
|
142
|
-
organization: process.env[`${prefix}ORGANIZATION`] ||
|
|
142
|
+
organization: process.env[`${prefix}ORG`] || process.env[`${prefix}ORGANIZATION`] || process.env[`${prefix}ORG_NAME`] || process.env[`${prefix}ORGANIZATION_NAME`] ? process.env[`${prefix}ORG_DESCRIPTION`] || process.env[`${prefix}ORGANIZATION_DESCRIPTION`] || process.env[`${prefix}ORG_URL`] || process.env[`${prefix}ORGANIZATION_URL`] || process.env[`${prefix}ORG_LOGO`] || process.env[`${prefix}ORGANIZATION_LOGO`] ? {
|
|
143
|
+
name: process.env[`${prefix}ORG`] || process.env[`${prefix}ORGANIZATION`] || process.env[`${prefix}ORG_NAME`] || process.env[`${prefix}ORGANIZATION_NAME`],
|
|
144
|
+
description: process.env[`${prefix}ORG_DESCRIPTION`] || process.env[`${prefix}ORGANIZATION_DESCRIPTION`] || void 0,
|
|
145
|
+
url: process.env[`${prefix}ORG_URL`] || process.env[`${prefix}ORGANIZATION_URL`] || void 0,
|
|
146
|
+
logo: process.env[`${prefix}ORG_LOGO`] || process.env[`${prefix}ORGANIZATION_LOGO`] || void 0,
|
|
147
|
+
icon: process.env[`${prefix}ORG_ICON`] || process.env[`${prefix}ORGANIZATION_ICON`] || void 0
|
|
148
|
+
} : process.env[`${prefix}ORG`] || process.env[`${prefix}ORGANIZATION`] || process.env[`${prefix}ORG_NAME`] || process.env[`${prefix}ORGANIZATION_NAME`] : void 0,
|
|
143
149
|
packageManager: process.env[`${prefix}PACKAGE_MANAGER`] || void 0,
|
|
144
150
|
license: process.env[`${prefix}LICENSE`] || void 0,
|
|
145
151
|
homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
|
|
@@ -346,7 +352,33 @@ var setConfigEnv = (config) => {
|
|
|
346
352
|
}
|
|
347
353
|
}
|
|
348
354
|
if (config.organization) {
|
|
349
|
-
|
|
355
|
+
if (typeof config.organization === "string") {
|
|
356
|
+
process.env[`${prefix}ORG`] = config.organization;
|
|
357
|
+
process.env[`${prefix}ORG_NAME`] = config.organization;
|
|
358
|
+
process.env[`${prefix}ORGANIZATION`] = config.organization;
|
|
359
|
+
process.env[`${prefix}ORGANIZATION_NAME`] = config.organization;
|
|
360
|
+
} else {
|
|
361
|
+
process.env[`${prefix}ORG`] = config.organization.name;
|
|
362
|
+
process.env[`${prefix}ORG_NAME`] = config.organization.name;
|
|
363
|
+
process.env[`${prefix}ORGANIZATION`] = config.organization.name;
|
|
364
|
+
process.env[`${prefix}ORGANIZATION_NAME`] = config.organization.name;
|
|
365
|
+
if (config.organization.url) {
|
|
366
|
+
process.env[`${prefix}ORG_URL`] = config.organization.url;
|
|
367
|
+
process.env[`${prefix}ORGANIZATION_URL`] = config.organization.url;
|
|
368
|
+
}
|
|
369
|
+
if (config.organization.description) {
|
|
370
|
+
process.env[`${prefix}ORG_DESCRIPTION`] = config.organization.description;
|
|
371
|
+
process.env[`${prefix}ORGANIZATION_DESCRIPTION`] = config.organization.description;
|
|
372
|
+
}
|
|
373
|
+
if (config.organization.logo) {
|
|
374
|
+
process.env[`${prefix}ORG_LOGO`] = config.organization.logo;
|
|
375
|
+
process.env[`${prefix}ORGANIZATION_LOGO`] = config.organization.logo;
|
|
376
|
+
}
|
|
377
|
+
if (config.organization.icon) {
|
|
378
|
+
process.env[`${prefix}ORG_ICON`] = config.organization.icon;
|
|
379
|
+
process.env[`${prefix}ORGANIZATION_ICON`] = config.organization.icon;
|
|
380
|
+
}
|
|
381
|
+
}
|
|
350
382
|
}
|
|
351
383
|
if (config.packageManager) {
|
|
352
384
|
process.env[`${prefix}PACKAGE_MANAGER`] = config.packageManager;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var _chunkBGIPYCLAjs = require('./chunk-BGIPYCLA.js');
|
|
6
6
|
|
|
7
7
|
// src/utilities/copy-assets.ts
|
|
8
8
|
var _copyassetshandler = require('@nx/js/src/utils/assets/copy-assets-handler');
|
|
@@ -34,9 +34,9 @@ var copyAssets = async (config, assets, outputPath, projectRoot, sourceRoot, gen
|
|
|
34
34
|
output: "src/"
|
|
35
35
|
});
|
|
36
36
|
}
|
|
37
|
-
|
|
37
|
+
_chunkBGIPYCLAjs.writeTrace.call(void 0,
|
|
38
38
|
`\u{1F4DD} Copying the following assets to the output directory:
|
|
39
|
-
${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${
|
|
39
|
+
${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${pendingAsset} -> ${outputPath}` : ` - ${pendingAsset.input}/${pendingAsset.glob} -> ${_chunkBGIPYCLAjs.joinPaths.call(void 0, outputPath, pendingAsset.output)}`).join("\n")}`,
|
|
40
40
|
config
|
|
41
41
|
);
|
|
42
42
|
const assetHandler = new (0, _copyassetshandler.CopyAssetsHandler)({
|
|
@@ -47,18 +47,18 @@ ${pendingAssets.map((pendingAsset) => typeof pendingAsset === "string" ? ` - ${p
|
|
|
47
47
|
});
|
|
48
48
|
await assetHandler.processAllAssetsOnce();
|
|
49
49
|
if (includeSrc === true) {
|
|
50
|
-
|
|
51
|
-
`\u{1F4DD} Adding banner and writing source files: ${
|
|
50
|
+
_chunkBGIPYCLAjs.writeDebug.call(void 0,
|
|
51
|
+
`\u{1F4DD} Adding banner and writing source files: ${_chunkBGIPYCLAjs.joinPaths.call(void 0,
|
|
52
52
|
outputPath,
|
|
53
53
|
"src"
|
|
54
54
|
)}`,
|
|
55
55
|
config
|
|
56
56
|
);
|
|
57
57
|
const files = await _glob.glob.call(void 0, [
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
_chunkBGIPYCLAjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.ts"),
|
|
59
|
+
_chunkBGIPYCLAjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.tsx"),
|
|
60
|
+
_chunkBGIPYCLAjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.js"),
|
|
61
|
+
_chunkBGIPYCLAjs.joinPaths.call(void 0, config.workspaceRoot, outputPath, "src/**/*.jsx")
|
|
62
62
|
]);
|
|
63
63
|
await Promise.allSettled(
|
|
64
64
|
files.map(
|
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-BTxn49UW.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-BTxn49UW.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 _chunkCMTNPFIFjs = require('./chunk-CMTNPFIF.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
var _chunkP3MQZA3Djs = require('./chunk-P3MQZA3D.js');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkZQA63YFSjs = require('./chunk-ZQA63YFS.js');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
var
|
|
17
|
+
var _chunk77VWOMELjs = require('./chunk-77VWOMEL.js');
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
var
|
|
20
|
+
var _chunkHDBGACMYjs = require('./chunk-HDBGACMY.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 _chunkNTFTBMMVjs = require('./chunk-NTFTBMMV.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
var _chunkHQD5ZBIUjs = require('./chunk-HQD5ZBIU.js');
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
var
|
|
53
|
-
require('./chunk-
|
|
52
|
+
var _chunkLXDS235Ijs = require('./chunk-LXDS235I.js');
|
|
53
|
+
require('./chunk-BGIPYCLA.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 = _chunk77VWOMELjs.addPackageDependencies; exports.addPackageJsonExport = _chunk77VWOMELjs.addPackageJsonExport; exports.addPackageJsonExports = _chunk77VWOMELjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunk77VWOMELjs.addWorkspacePackageJsonFields; exports.analyze = _chunkNTFTBMMVjs.analyze; exports.copyAssets = _chunkZQA63YFSjs.copyAssets; exports.createTaskId = _chunkP3MQZA3Djs.createTaskId; exports.getAllWorkspaceTaskGraphs = _chunkP3MQZA3Djs.getAllWorkspaceTaskGraphs; exports.getEntryPoints = _chunkHDBGACMYjs.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 = _chunkCMTNPFIFjs.readNxConfig; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkLXDS235Ijs.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-WHADZWHO.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-PW2E4KBD.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addPackageDependencies,
|
|
14
14
|
addPackageJsonExport,
|
|
15
15
|
addPackageJsonExports,
|
|
16
16
|
addWorkspacePackageJsonFields
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-G473ISDX.mjs";
|
|
18
18
|
import {
|
|
19
19
|
getEntryPoints
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-HXOL4XNP.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-ZDJWHRO7.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-ZPVBBSRY.mjs";
|
|
53
|
+
import "./chunk-3Z3XGHR2.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 _chunkNTFTBMMVjs = require('../chunk-NTFTBMMV.js');
|
|
4
|
+
require('../chunk-BGIPYCLA.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.analyze =
|
|
7
|
+
exports.analyze = _chunkNTFTBMMVjs.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 _chunkNTFTBMMVjs = require('../chunk-NTFTBMMV.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
var _chunkHQD5ZBIUjs = require('../chunk-HQD5ZBIU.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
var
|
|
11
|
-
require('../chunk-
|
|
10
|
+
var _chunkLXDS235Ijs = require('../chunk-LXDS235I.js');
|
|
11
|
+
require('../chunk-BGIPYCLA.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 = _chunkNTFTBMMVjs.analyze; exports.swc = _chunkHQD5ZBIUjs.swc; exports.tsResolvePlugin = _chunkLXDS235Ijs.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-ZDJWHRO7.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-ZPVBBSRY.mjs";
|
|
11
|
+
import "../chunk-3Z3XGHR2.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 _chunkLXDS235Ijs = require('../chunk-LXDS235I.js');
|
|
4
|
+
require('../chunk-BGIPYCLA.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.tsResolvePlugin =
|
|
7
|
+
exports.tsResolvePlugin = _chunkLXDS235Ijs.tsResolvePlugin;
|
|
@@ -8,7 +8,25 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
8
8
|
extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
9
9
|
name: z.ZodOptional<z.ZodString>;
|
|
10
10
|
namespace: z.ZodOptional<z.ZodString>;
|
|
11
|
-
organization: z.
|
|
11
|
+
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12
|
+
name: z.ZodString;
|
|
13
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
15
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
16
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
name: string;
|
|
19
|
+
url?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
21
|
+
logo?: string | undefined;
|
|
22
|
+
icon?: string | undefined;
|
|
23
|
+
}, {
|
|
24
|
+
name: string;
|
|
25
|
+
url?: string | undefined;
|
|
26
|
+
description?: string | undefined;
|
|
27
|
+
logo?: string | undefined;
|
|
28
|
+
icon?: string | undefined;
|
|
29
|
+
}>, z.ZodString]>>;
|
|
12
30
|
repository: z.ZodOptional<z.ZodString>;
|
|
13
31
|
license: z.ZodDefault<z.ZodString>;
|
|
14
32
|
homepage: z.ZodOptional<z.ZodString>;
|
|
@@ -843,7 +861,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
843
861
|
}>]>>]>]>;
|
|
844
862
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
845
863
|
}, "strip", z.ZodTypeAny, {
|
|
846
|
-
organization: string;
|
|
847
864
|
license: string;
|
|
848
865
|
branch: string;
|
|
849
866
|
owner: string;
|
|
@@ -1044,6 +1061,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1044
1061
|
$schema?: string | null | undefined;
|
|
1045
1062
|
extends?: string | string[] | undefined;
|
|
1046
1063
|
namespace?: string | undefined;
|
|
1064
|
+
organization?: string | {
|
|
1065
|
+
name: string;
|
|
1066
|
+
url?: string | undefined;
|
|
1067
|
+
description?: string | undefined;
|
|
1068
|
+
logo?: string | undefined;
|
|
1069
|
+
icon?: string | undefined;
|
|
1070
|
+
} | undefined;
|
|
1047
1071
|
repository?: string | undefined;
|
|
1048
1072
|
homepage?: string | undefined;
|
|
1049
1073
|
docs?: string | undefined;
|
|
@@ -1235,7 +1259,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1235
1259
|
$schema?: string | null | undefined;
|
|
1236
1260
|
extends?: string | string[] | undefined;
|
|
1237
1261
|
namespace?: string | undefined;
|
|
1238
|
-
organization?: string |
|
|
1262
|
+
organization?: string | {
|
|
1263
|
+
name: string;
|
|
1264
|
+
url?: string | undefined;
|
|
1265
|
+
description?: string | undefined;
|
|
1266
|
+
logo?: string | undefined;
|
|
1267
|
+
icon?: string | undefined;
|
|
1268
|
+
} | undefined;
|
|
1239
1269
|
repository?: string | undefined;
|
|
1240
1270
|
license?: string | undefined;
|
|
1241
1271
|
homepage?: string | undefined;
|
|
@@ -8,7 +8,25 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
8
8
|
extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
9
9
|
name: z.ZodOptional<z.ZodString>;
|
|
10
10
|
namespace: z.ZodOptional<z.ZodString>;
|
|
11
|
-
organization: z.
|
|
11
|
+
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12
|
+
name: z.ZodString;
|
|
13
|
+
description: z.ZodOptional<z.ZodString>;
|
|
14
|
+
logo: z.ZodOptional<z.ZodString>;
|
|
15
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
16
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17
|
+
}, "strip", z.ZodTypeAny, {
|
|
18
|
+
name: string;
|
|
19
|
+
url?: string | undefined;
|
|
20
|
+
description?: string | undefined;
|
|
21
|
+
logo?: string | undefined;
|
|
22
|
+
icon?: string | undefined;
|
|
23
|
+
}, {
|
|
24
|
+
name: string;
|
|
25
|
+
url?: string | undefined;
|
|
26
|
+
description?: string | undefined;
|
|
27
|
+
logo?: string | undefined;
|
|
28
|
+
icon?: string | undefined;
|
|
29
|
+
}>, z.ZodString]>>;
|
|
12
30
|
repository: z.ZodOptional<z.ZodString>;
|
|
13
31
|
license: z.ZodDefault<z.ZodString>;
|
|
14
32
|
homepage: z.ZodOptional<z.ZodString>;
|
|
@@ -843,7 +861,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
843
861
|
}>]>>]>]>;
|
|
844
862
|
extensions: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
845
863
|
}, "strip", z.ZodTypeAny, {
|
|
846
|
-
organization: string;
|
|
847
864
|
license: string;
|
|
848
865
|
branch: string;
|
|
849
866
|
owner: string;
|
|
@@ -1044,6 +1061,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1044
1061
|
$schema?: string | null | undefined;
|
|
1045
1062
|
extends?: string | string[] | undefined;
|
|
1046
1063
|
namespace?: string | undefined;
|
|
1064
|
+
organization?: string | {
|
|
1065
|
+
name: string;
|
|
1066
|
+
url?: string | undefined;
|
|
1067
|
+
description?: string | undefined;
|
|
1068
|
+
logo?: string | undefined;
|
|
1069
|
+
icon?: string | undefined;
|
|
1070
|
+
} | undefined;
|
|
1047
1071
|
repository?: string | undefined;
|
|
1048
1072
|
homepage?: string | undefined;
|
|
1049
1073
|
docs?: string | undefined;
|
|
@@ -1235,7 +1259,13 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
1235
1259
|
$schema?: string | null | undefined;
|
|
1236
1260
|
extends?: string | string[] | undefined;
|
|
1237
1261
|
namespace?: string | undefined;
|
|
1238
|
-
organization?: string |
|
|
1262
|
+
organization?: string | {
|
|
1263
|
+
name: string;
|
|
1264
|
+
url?: string | undefined;
|
|
1265
|
+
description?: string | undefined;
|
|
1266
|
+
logo?: string | undefined;
|
|
1267
|
+
icon?: string | undefined;
|
|
1268
|
+
} | undefined;
|
|
1239
1269
|
repository?: string | undefined;
|
|
1240
1270
|
license?: string | undefined;
|
|
1241
1271
|
homepage?: string | undefined;
|
package/dist/types.d.mts
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkZQA63YFSjs = require('../chunk-ZQA63YFS.js');
|
|
4
|
+
require('../chunk-BGIPYCLA.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.copyAssets =
|
|
7
|
+
exports.copyAssets = _chunkZQA63YFSjs.copyAssets;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-BTxn49UW.mjs';
|
|
2
2
|
import 'zod';
|
|
3
3
|
|
|
4
4
|
declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as StormWorkspaceConfig } from '../types-
|
|
1
|
+
import { S as StormWorkspaceConfig } from '../types-BTxn49UW.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
|
|
4
4
|
declare const addPackageDependencies: (workspaceRoot: string, projectRoot: string, projectName: string, packageJson: Record<string, any>) => Promise<Record<string, any>>;
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
7
|
-
require('../chunk-
|
|
6
|
+
var _chunk77VWOMELjs = require('../chunk-77VWOMEL.js');
|
|
7
|
+
require('../chunk-BGIPYCLA.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
|
-
exports.addPackageDependencies =
|
|
13
|
+
exports.addPackageDependencies = _chunk77VWOMELjs.addPackageDependencies; exports.addPackageJsonExport = _chunk77VWOMELjs.addPackageJsonExport; exports.addPackageJsonExports = _chunk77VWOMELjs.addPackageJsonExports; exports.addWorkspacePackageJsonFields = _chunk77VWOMELjs.addWorkspacePackageJsonFields;
|
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
addPackageJsonExport,
|
|
4
4
|
addPackageJsonExports,
|
|
5
5
|
addWorkspacePackageJsonFields
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-G473ISDX.mjs";
|
|
7
|
+
import "../chunk-3Z3XGHR2.mjs";
|
|
8
8
|
export {
|
|
9
9
|
addPackageDependencies,
|
|
10
10
|
addPackageJsonExport,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('../chunk-
|
|
3
|
+
var _chunkHDBGACMYjs = require('../chunk-HDBGACMY.js');
|
|
4
|
+
require('../chunk-BGIPYCLA.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
exports.getEntryPoints =
|
|
7
|
+
exports.getEntryPoints = _chunkHDBGACMYjs.getEntryPoints;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.mjs';
|
|
2
|
-
import '../types-
|
|
2
|
+
import '../types-BTxn49UW.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypeScriptBuildResolvedOptions, TypeScriptBuildEnv } from '../types.js';
|
|
2
|
-
import '../types-
|
|
2
|
+
import '../types-BTxn49UW.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare const getEnv: (builder: string, options: Pick<TypeScriptBuildResolvedOptions, "name" | "mode" | "orgName" | "platform" | "target" | "format">) => TypeScriptBuildEnv;
|
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.mjs';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.mjs';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.mjs';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.mjs';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-BTxn49UW.mjs';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import '../types.mjs';
|
|
13
13
|
import '@nx/devkit';
|
|
@@ -7,7 +7,7 @@ export { getOutExtension } from './get-out-extension.js';
|
|
|
7
7
|
export { getExternalDependencies, getExtraDependencies, getInternalDependencies } from './get-project-deps.js';
|
|
8
8
|
export { readNxConfig } from './read-nx-config.js';
|
|
9
9
|
export { createTaskId, getAllWorkspaceTaskGraphs } from './task-graph.js';
|
|
10
|
-
import '../types-
|
|
10
|
+
import '../types-BTxn49UW.js';
|
|
11
11
|
import 'zod';
|
|
12
12
|
import '../types.js';
|
|
13
13
|
import '@nx/devkit';
|