@storm-software/workspace-tools 1.180.10 → 1.181.1
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 +14 -0
- package/README.md +1 -1
- package/index.js +80 -52
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/rollup/executor.js +72 -44
- package/src/executors/rollup/utils/get-options.d.ts +1 -1
- package/src/executors/rollup/utils/normalize-options.d.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 1.181.1 (2024-09-11)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Resolve issue with names in input files
|
|
6
|
+
([2f181c56](https://github.com/storm-software/storm-ops/commit/2f181c56))
|
|
7
|
+
|
|
8
|
+
## 1.181.0 (2024-09-11)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **workspace-tools:** Added TypeScript as a peerDependency
|
|
13
|
+
([74da29f1](https://github.com/storm-software/storm-ops/commit/74da29f1))
|
|
14
|
+
|
|
1
15
|
## 1.180.10 (2024-09-11)
|
|
2
16
|
|
|
3
17
|
### Bug Fixes
|
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 -->
|
package/index.js
CHANGED
|
@@ -67229,9 +67229,9 @@ var init_get_default_config = __esm({
|
|
|
67229
67229
|
let repository = "https://github.com/storm-software/storm-ops";
|
|
67230
67230
|
let license = DEFAULT_STORM_CONFIG.license;
|
|
67231
67231
|
let homepage = DEFAULT_STORM_CONFIG.homepage;
|
|
67232
|
-
const
|
|
67233
|
-
if ((0, import_node_fs10.existsSync)((0, import_node_path7.join)(
|
|
67234
|
-
const file = (0, import_node_fs10.readFileSync)((0, import_node_path7.join)(
|
|
67232
|
+
const workspaceRoot4 = findWorkspaceRoot(root);
|
|
67233
|
+
if ((0, import_node_fs10.existsSync)((0, import_node_path7.join)(workspaceRoot4, "package.json"))) {
|
|
67234
|
+
const file = (0, import_node_fs10.readFileSync)((0, import_node_path7.join)(workspaceRoot4, "package.json"), {
|
|
67235
67235
|
encoding: "utf-8"
|
|
67236
67236
|
});
|
|
67237
67237
|
if (file) {
|
|
@@ -67264,7 +67264,7 @@ var init_get_default_config = __esm({
|
|
|
67264
67264
|
return ret;
|
|
67265
67265
|
}, {}),
|
|
67266
67266
|
colors: { ...DEFAULT_COLOR_CONFIG, ...config.colors },
|
|
67267
|
-
workspaceRoot:
|
|
67267
|
+
workspaceRoot: workspaceRoot4,
|
|
67268
67268
|
name,
|
|
67269
67269
|
namespace,
|
|
67270
67270
|
repository,
|
|
@@ -68110,14 +68110,14 @@ var init_create_storm_config = __esm({
|
|
|
68110
68110
|
init_get_default_config();
|
|
68111
68111
|
_extension_cache = /* @__PURE__ */ new WeakMap();
|
|
68112
68112
|
_static_cache = void 0;
|
|
68113
|
-
createConfig = (
|
|
68114
|
-
return createStormConfig(void 0, void 0,
|
|
68113
|
+
createConfig = (workspaceRoot4) => {
|
|
68114
|
+
return createStormConfig(void 0, void 0, workspaceRoot4);
|
|
68115
68115
|
};
|
|
68116
|
-
createStormConfig = (extensionName, schema,
|
|
68116
|
+
createStormConfig = (extensionName, schema, workspaceRoot4) => {
|
|
68117
68117
|
let result;
|
|
68118
68118
|
if (!_static_cache?.data || !_static_cache?.timestamp || _static_cache.timestamp < Date.now() - 3e4) {
|
|
68119
68119
|
const config = getConfigEnv();
|
|
68120
|
-
const defaultConfig = getDefaultConfig(config,
|
|
68120
|
+
const defaultConfig = getDefaultConfig(config, workspaceRoot4);
|
|
68121
68121
|
result = StormConfigSchema.parse({
|
|
68122
68122
|
...defaultConfig,
|
|
68123
68123
|
...config,
|
|
@@ -68126,7 +68126,7 @@ var init_create_storm_config = __esm({
|
|
|
68126
68126
|
...config.colors
|
|
68127
68127
|
}
|
|
68128
68128
|
});
|
|
68129
|
-
result.workspaceRoot ??= defaultConfig.workspaceRoot ? defaultConfig.workspaceRoot : findWorkspaceRoot(
|
|
68129
|
+
result.workspaceRoot ??= defaultConfig.workspaceRoot ? defaultConfig.workspaceRoot : findWorkspaceRoot(workspaceRoot4);
|
|
68130
68130
|
} else {
|
|
68131
68131
|
result = _static_cache.data;
|
|
68132
68132
|
}
|
|
@@ -68154,7 +68154,7 @@ var init_create_storm_config = __esm({
|
|
|
68154
68154
|
_extension_cache.set(extension_cache_key, extension);
|
|
68155
68155
|
return extension;
|
|
68156
68156
|
};
|
|
68157
|
-
loadStormConfig = async (
|
|
68157
|
+
loadStormConfig = async (workspaceRoot4) => {
|
|
68158
68158
|
let config = {};
|
|
68159
68159
|
if (_static_cache?.data && _static_cache?.timestamp && _static_cache.timestamp >= Date.now() + 3e4) {
|
|
68160
68160
|
writeInfo(
|
|
@@ -68163,7 +68163,7 @@ var init_create_storm_config = __esm({
|
|
|
68163
68163
|
);
|
|
68164
68164
|
return _static_cache.data;
|
|
68165
68165
|
}
|
|
68166
|
-
let _workspaceRoot =
|
|
68166
|
+
let _workspaceRoot = workspaceRoot4;
|
|
68167
68167
|
if (!_workspaceRoot) {
|
|
68168
68168
|
_workspaceRoot = findWorkspaceRoot();
|
|
68169
68169
|
}
|
|
@@ -218272,22 +218272,22 @@ var withRunExecutor = (name, executorFn, executorOptions = {}) => async (_option
|
|
|
218272
218272
|
"The Build process failed because the context is not valid. Please run this command from a workspace."
|
|
218273
218273
|
);
|
|
218274
218274
|
}
|
|
218275
|
-
const
|
|
218276
|
-
const projectRoot = context.projectsConfigurations.projects[context.projectName]?.root ??
|
|
218277
|
-
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ??
|
|
218275
|
+
const workspaceRoot4 = findWorkspaceRoot2();
|
|
218276
|
+
const projectRoot = context.projectsConfigurations.projects[context.projectName]?.root ?? workspaceRoot4;
|
|
218277
|
+
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot4;
|
|
218278
218278
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
218279
|
-
config.workspaceRoot =
|
|
218279
|
+
config.workspaceRoot = workspaceRoot4;
|
|
218280
218280
|
if (!executorOptions.skipReadingConfig) {
|
|
218281
218281
|
writeDebug2(
|
|
218282
218282
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
218283
|
-
- workspaceRoot: ${
|
|
218283
|
+
- workspaceRoot: ${workspaceRoot4}
|
|
218284
218284
|
- projectRoot: ${projectRoot}
|
|
218285
218285
|
- sourceRoot: ${sourceRoot}
|
|
218286
218286
|
- projectName: ${projectName}
|
|
218287
218287
|
`,
|
|
218288
218288
|
config
|
|
218289
218289
|
);
|
|
218290
|
-
config = await loadStormConfig2(
|
|
218290
|
+
config = await loadStormConfig2(workspaceRoot4);
|
|
218291
218291
|
}
|
|
218292
218292
|
if (executorOptions?.hooks?.applyDefaultOptions) {
|
|
218293
218293
|
writeDebug2("Running the applyDefaultOptions hook...", config);
|
|
@@ -218307,7 +218307,7 @@ ${Object.keys(options).map(
|
|
|
218307
218307
|
options,
|
|
218308
218308
|
{
|
|
218309
218309
|
config,
|
|
218310
|
-
workspaceRoot:
|
|
218310
|
+
workspaceRoot: workspaceRoot4,
|
|
218311
218311
|
projectRoot,
|
|
218312
218312
|
sourceRoot,
|
|
218313
218313
|
projectName,
|
|
@@ -218403,14 +218403,14 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
218403
218403
|
writeInfo2(`\u26A1 Running the ${name} generator...
|
|
218404
218404
|
|
|
218405
218405
|
`, config);
|
|
218406
|
-
const
|
|
218406
|
+
const workspaceRoot4 = findWorkspaceRoot2();
|
|
218407
218407
|
if (!generatorOptions.skipReadingConfig) {
|
|
218408
218408
|
writeDebug2(
|
|
218409
218409
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
218410
|
-
- workspaceRoot: ${
|
|
218410
|
+
- workspaceRoot: ${workspaceRoot4}`,
|
|
218411
218411
|
config
|
|
218412
218412
|
);
|
|
218413
|
-
config = await loadStormConfig2(
|
|
218413
|
+
config = await loadStormConfig2(workspaceRoot4);
|
|
218414
218414
|
}
|
|
218415
218415
|
if (generatorOptions?.hooks?.applyDefaultOptions) {
|
|
218416
218416
|
writeDebug2("Running the applyDefaultOptions hook...", config);
|
|
@@ -229902,7 +229902,7 @@ var import_devkit6 = require("@nx/devkit");
|
|
|
229902
229902
|
var import_js2 = require("@nx/js");
|
|
229903
229903
|
var import_node_fs11 = require("node:fs");
|
|
229904
229904
|
var import_node_path13 = require("node:path");
|
|
229905
|
-
function normalizeOptions2(projectRoot, sourceRoot, options) {
|
|
229905
|
+
function normalizeOptions2(projectRoot, sourceRoot, options, config) {
|
|
229906
229906
|
if (global.NX_GRAPH_CREATION)
|
|
229907
229907
|
return options;
|
|
229908
229908
|
normalizeRelativePaths(projectRoot, options);
|
|
@@ -229922,7 +229922,10 @@ function normalizeOptions2(projectRoot, sourceRoot, options) {
|
|
|
229922
229922
|
generateExportsField: options.generateExportsField ?? false,
|
|
229923
229923
|
javascriptEnabled: options.javascriptEnabled ?? false,
|
|
229924
229924
|
skipTypeCheck: options.skipTypeCheck ?? false,
|
|
229925
|
-
skipTypeField: options.skipTypeField ?? false
|
|
229925
|
+
skipTypeField: options.skipTypeField ?? false,
|
|
229926
|
+
projectRoot,
|
|
229927
|
+
sourceRoot,
|
|
229928
|
+
config
|
|
229926
229929
|
};
|
|
229927
229930
|
}
|
|
229928
229931
|
function normalizeAssets(assets, root, sourceRoot) {
|
|
@@ -230013,12 +230016,14 @@ function analyze() {
|
|
|
230013
230016
|
}
|
|
230014
230017
|
};
|
|
230015
230018
|
}
|
|
230016
|
-
async function withRollupConfig(rawOptions, rollupConfig = {},
|
|
230019
|
+
async function withRollupConfig(rawOptions, rollupConfig = {}, config, dependencies) {
|
|
230017
230020
|
const { writeWarning: writeWarning2, correctPaths: correctPaths2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
230018
230021
|
const ts = (0, import_ensure_typescript.ensureTypescript)();
|
|
230019
230022
|
const finalConfig = { ...rollupConfig };
|
|
230020
230023
|
const projectNode = getProjectNode();
|
|
230021
|
-
const projectRoot = correctPaths2(
|
|
230024
|
+
const projectRoot = correctPaths2(
|
|
230025
|
+
(0, import_node_path14.join)(config.workspaceRoot, projectNode.data.root)
|
|
230026
|
+
);
|
|
230022
230027
|
const projectGraph = global.NX_GRAPH_CREATION ? null : (0, import_devkit7.readCachedProjectGraph)();
|
|
230023
230028
|
if (!projectGraph) {
|
|
230024
230029
|
throw new Error(`Cannot find project graph.`);
|
|
@@ -230037,7 +230042,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230037
230042
|
const result = (0, import_buildable_libs_utils.calculateProjectBuildableDependencies)(
|
|
230038
230043
|
void 0,
|
|
230039
230044
|
projectGraph,
|
|
230040
|
-
|
|
230045
|
+
config.workspaceRoot,
|
|
230041
230046
|
projectNode.name,
|
|
230042
230047
|
process.env.NX_TASK_TARGET_TARGET,
|
|
230043
230048
|
process.env.NX_TASK_TARGET_CONFIGURATION,
|
|
@@ -230051,13 +230056,16 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230051
230056
|
const options = normalizeOptions2(
|
|
230052
230057
|
projectNode.data.root,
|
|
230053
230058
|
projectNode.data.sourceRoot,
|
|
230054
|
-
rawOptions
|
|
230059
|
+
rawOptions,
|
|
230060
|
+
config
|
|
230061
|
+
);
|
|
230062
|
+
const tsConfigPath = correctPaths2(
|
|
230063
|
+
(0, import_node_path14.join)(config.workspaceRoot, options.tsConfig)
|
|
230055
230064
|
);
|
|
230056
|
-
const tsConfigPath = correctPaths2((0, import_node_path14.join)(import_devkit7.workspaceRoot, options.tsConfig));
|
|
230057
230065
|
const tsConfigFile = ts.readConfigFile(tsConfigPath, ts.sys.readFile);
|
|
230058
230066
|
const tsConfigInclude = [
|
|
230059
230067
|
...tsConfigFile.config?.include && Array.isArray(tsConfigFile.config.include) ? tsConfigFile.config.include : [],
|
|
230060
|
-
(0, import_node_path14.join)(
|
|
230068
|
+
(0, import_node_path14.join)(config.workspaceRoot, "node_modules/typescript/lib/*.d.ts")
|
|
230061
230069
|
];
|
|
230062
230070
|
const tsConfig = ts.parseJsonConfigFileContent(
|
|
230063
230071
|
{
|
|
@@ -230076,7 +230084,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230076
230084
|
config
|
|
230077
230085
|
);
|
|
230078
230086
|
}
|
|
230079
|
-
finalConfig.input = rollupConfig.input || createInput(options);
|
|
230087
|
+
finalConfig.input = rollupConfig.input || await createInput(options);
|
|
230080
230088
|
if (options.format) {
|
|
230081
230089
|
if (Array.isArray(rollupConfig.output)) {
|
|
230082
230090
|
throw new Error(
|
|
@@ -230100,13 +230108,13 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230100
230108
|
// Options are not normalized with project root during graph creation due to the lack of project and project root.
|
|
230101
230109
|
// Cannot be joined with workspace root now, but will be handled by @nx/rollup/plugin.
|
|
230102
230110
|
options.outputPath
|
|
230103
|
-
) : correctPaths2((0, import_node_path14.join)(
|
|
230111
|
+
) : correctPaths2((0, import_node_path14.join)(config.workspaceRoot, options.outputPath)),
|
|
230104
230112
|
sourcemap: options.sourceMap
|
|
230105
230113
|
}));
|
|
230106
230114
|
}
|
|
230107
230115
|
let packageJson = {};
|
|
230108
230116
|
if (!global.NX_GRAPH_CREATION) {
|
|
230109
|
-
const packageJsonPath = options.project ? (0, import_node_path14.join)(
|
|
230117
|
+
const packageJsonPath = options.project ? (0, import_node_path14.join)(config.workspaceRoot, options.project) : (0, import_node_path14.join)(projectRoot, "package.json");
|
|
230110
230118
|
if (!(0, import_node_fs12.existsSync)(packageJsonPath)) {
|
|
230111
230119
|
throw new Error(`Cannot find ${packageJsonPath}.`);
|
|
230112
230120
|
}
|
|
@@ -230152,7 +230160,8 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230152
230160
|
copy2({
|
|
230153
230161
|
targets: convertCopyAssetsToRollupOptions(
|
|
230154
230162
|
options.outputPath,
|
|
230155
|
-
options.assets
|
|
230163
|
+
options.assets,
|
|
230164
|
+
config.workspaceRoot
|
|
230156
230165
|
)
|
|
230157
230166
|
}),
|
|
230158
230167
|
image(),
|
|
@@ -230162,7 +230171,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230162
230171
|
extensions: fileExtensions
|
|
230163
230172
|
}),
|
|
230164
230173
|
require_rollup_plugin_typescript2_cjs()({
|
|
230165
|
-
cwd: correctPaths2(
|
|
230174
|
+
cwd: correctPaths2(config.workspaceRoot),
|
|
230166
230175
|
check: !options.skipTypeCheck,
|
|
230167
230176
|
typescript: ts,
|
|
230168
230177
|
tsconfig: options.tsConfig,
|
|
@@ -230200,7 +230209,7 @@ async function withRollupConfig(rawOptions, rollupConfig = {}, dependencies, con
|
|
|
230200
230209
|
},
|
|
230201
230210
|
cwd: correctPaths2(
|
|
230202
230211
|
(0, import_node_path14.join)(
|
|
230203
|
-
|
|
230212
|
+
config.workspaceRoot,
|
|
230204
230213
|
projectNode.data.sourceRoot ?? projectNode.data.root
|
|
230205
230214
|
)
|
|
230206
230215
|
),
|
|
@@ -230236,15 +230245,34 @@ function convertRpts2LogLevel(logLevel) {
|
|
|
230236
230245
|
return 0;
|
|
230237
230246
|
}
|
|
230238
230247
|
}
|
|
230239
|
-
function createInput(options) {
|
|
230248
|
+
async function createInput(options) {
|
|
230249
|
+
const { correctPaths: correctPaths2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
230240
230250
|
if (global.NX_GRAPH_CREATION) return {};
|
|
230241
230251
|
const mainEntryFileName = options.outputFileName || options.main;
|
|
230242
230252
|
const input = {};
|
|
230243
|
-
input[(0, import_node_path14.parse)(mainEntryFileName).name] = (0, import_node_path14.join)(
|
|
230253
|
+
input[(0, import_node_path14.parse)(mainEntryFileName).name] = (0, import_node_path14.join)(
|
|
230254
|
+
options.config.workspaceRoot,
|
|
230255
|
+
options.main
|
|
230256
|
+
);
|
|
230244
230257
|
options.additionalEntryPoints?.forEach((entry) => {
|
|
230245
|
-
|
|
230258
|
+
const entryPoint = correctPaths2((0, import_node_path14.join)(options.config.workspaceRoot, entry));
|
|
230259
|
+
let entryName = entryPoint.includes(
|
|
230260
|
+
options.sourceRoot.replaceAll("\\", "/")
|
|
230261
|
+
) ? entryPoint.replace(options.sourceRoot.replaceAll("\\", "/"), "") : entryPoint.replace(
|
|
230262
|
+
options.config.workspaceRoot.replaceAll("\\", "/"),
|
|
230263
|
+
""
|
|
230264
|
+
);
|
|
230265
|
+
if (entryName.startsWith("/")) {
|
|
230266
|
+
entryName = entryName.slice(1);
|
|
230267
|
+
}
|
|
230268
|
+
input[entryName] = entryPoint;
|
|
230246
230269
|
});
|
|
230247
|
-
return input
|
|
230270
|
+
return Object.keys(input).reduce((ret, key) => {
|
|
230271
|
+
if (key.endsWith("/index.ts") && input[key]) {
|
|
230272
|
+
ret[key.replace("/index.ts", "")] = input[key];
|
|
230273
|
+
}
|
|
230274
|
+
return ret;
|
|
230275
|
+
}, input);
|
|
230248
230276
|
}
|
|
230249
230277
|
async function createTsCompilerOptions(parsedCommandLine, options, dependencies, config) {
|
|
230250
230278
|
const { correctPaths: correctPaths2 } = await Promise.resolve().then(() => (init_src2(), src_exports));
|
|
@@ -230272,10 +230300,10 @@ async function createTsCompilerOptions(parsedCommandLine, options, dependencies,
|
|
|
230272
230300
|
}
|
|
230273
230301
|
return compilerOptions;
|
|
230274
230302
|
}
|
|
230275
|
-
function convertCopyAssetsToRollupOptions(outputPath, assets) {
|
|
230303
|
+
function convertCopyAssetsToRollupOptions(outputPath, assets, workspaceRoot4) {
|
|
230276
230304
|
return assets ? assets.map((a2) => ({
|
|
230277
230305
|
src: (0, import_node_path14.join)(a2.input, a2.glob).replace(/\\/g, "/"),
|
|
230278
|
-
dest: (0, import_node_path14.join)(
|
|
230306
|
+
dest: (0, import_node_path14.join)(workspaceRoot4, outputPath, a2.output).replace(/\\/g, "/")
|
|
230279
230307
|
})) : [];
|
|
230280
230308
|
}
|
|
230281
230309
|
function readCompatibleFormats(config) {
|
|
@@ -230304,7 +230332,7 @@ async function* rollupExecutorFn(options, context, config) {
|
|
|
230304
230332
|
if (!context?.projectName || !context?.projectsConfigurations?.projects?.[context.projectName]?.root) {
|
|
230305
230333
|
throw new Error("Nx executor context was invalid");
|
|
230306
230334
|
}
|
|
230307
|
-
const
|
|
230335
|
+
const workspaceRoot4 = findWorkspaceRoot2();
|
|
230308
230336
|
const projectRoot = context?.projectsConfigurations?.projects[context.projectName]?.root;
|
|
230309
230337
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? projectRoot;
|
|
230310
230338
|
if (options.clean !== false) {
|
|
@@ -230334,7 +230362,7 @@ async function* rollupExecutorFn(options, context, config) {
|
|
|
230334
230362
|
const files = await new Glob("**/*.{ts,mts,cts,tsx}", {
|
|
230335
230363
|
absolute: true,
|
|
230336
230364
|
cwd: sourceRoot,
|
|
230337
|
-
root:
|
|
230365
|
+
root: workspaceRoot4
|
|
230338
230366
|
}).walk();
|
|
230339
230367
|
options.additionalEntryPoints = files.reduce(
|
|
230340
230368
|
(ret, file) => {
|
|
@@ -230345,10 +230373,10 @@ async function* rollupExecutorFn(options, context, config) {
|
|
|
230345
230373
|
return ret;
|
|
230346
230374
|
},
|
|
230347
230375
|
options.additionalEntryPoints?.map(
|
|
230348
|
-
(entry) => correctPaths2((0, import_path5.join)(
|
|
230376
|
+
(entry) => correctPaths2((0, import_path5.join)(workspaceRoot4, entry))
|
|
230349
230377
|
) ?? []
|
|
230350
230378
|
).map((entry) => {
|
|
230351
|
-
const formatted = entry.replace(
|
|
230379
|
+
const formatted = entry.replace(workspaceRoot4, "");
|
|
230352
230380
|
return formatted.startsWith("/") ? formatted.slice(1) : formatted;
|
|
230353
230381
|
});
|
|
230354
230382
|
}
|
|
@@ -230460,8 +230488,8 @@ async function createRollupOptions(options, context, config) {
|
|
|
230460
230488
|
const rollupConfig = await withRollupConfig(
|
|
230461
230489
|
options,
|
|
230462
230490
|
{},
|
|
230463
|
-
|
|
230464
|
-
|
|
230491
|
+
config,
|
|
230492
|
+
dependencies
|
|
230465
230493
|
);
|
|
230466
230494
|
const generatePackageJsonPlugin = Array.isArray(rollupConfig.plugins) ? rollupConfig.plugins.find(
|
|
230467
230495
|
(p2) => p2?.["name"] === import_generate_package_json2.pluginName
|
|
@@ -233234,13 +233262,13 @@ async function releaseVersionGeneratorFn(tree, options, config) {
|
|
|
233234
233262
|
`, config);
|
|
233235
233263
|
const stopwatch = getStopwatch2("Storm Release Version generator");
|
|
233236
233264
|
try {
|
|
233237
|
-
const
|
|
233265
|
+
const workspaceRoot4 = findWorkspaceRoot2();
|
|
233238
233266
|
writeDebug2(
|
|
233239
233267
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
233240
|
-
- workspaceRoot: ${
|
|
233268
|
+
- workspaceRoot: ${workspaceRoot4}`,
|
|
233241
233269
|
config
|
|
233242
233270
|
);
|
|
233243
|
-
config = await loadStormConfig2(
|
|
233271
|
+
config = await loadStormConfig2(workspaceRoot4);
|
|
233244
233272
|
writeTrace2(
|
|
233245
233273
|
`Generator schema options \u2699\uFE0F
|
|
233246
233274
|
${Object.keys(options ?? {}).map((key) => ` - ${key}=${JSON.stringify(options[key])}`).join("\n")}`,
|
|
@@ -234079,10 +234107,10 @@ function cargoMetadata() {
|
|
|
234079
234107
|
}
|
|
234080
234108
|
return JSON.parse(output3.output);
|
|
234081
234109
|
}
|
|
234082
|
-
function isExternal(packageOrDep,
|
|
234110
|
+
function isExternal(packageOrDep, workspaceRoot4) {
|
|
234083
234111
|
const isRegistry = packageOrDep.source?.startsWith("registry+") ?? false;
|
|
234084
234112
|
const isGit = packageOrDep.source?.startsWith("git+") ?? false;
|
|
234085
|
-
const isOutsideWorkspace = "path" in packageOrDep && (0, import_node_path20.relative)(
|
|
234113
|
+
const isOutsideWorkspace = "path" in packageOrDep && (0, import_node_path20.relative)(workspaceRoot4, packageOrDep.path).startsWith("..");
|
|
234086
234114
|
return isRegistry || isGit || isOutsideWorkspace;
|
|
234087
234115
|
}
|
|
234088
234116
|
function runProcess(processCmd, ...args) {
|