@storm-software/workspace-tools 1.62.5 → 1.62.6
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 +12 -0
- package/index.js +2 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +2 -4
- package/src/executors/tsup/executor.js +1 -2
- package/src/executors/tsup-browser/executor.js +1 -2
- package/src/executors/tsup-neutral/executor.js +1 -2
- package/src/executors/tsup-node/executor.js +1 -2
- package/src/executors/typia/executor.js +1 -2
- package/src/generators/browser-library/generator.js +1 -2
- package/src/generators/config-schema/generator.js +1 -2
- package/src/generators/neutral-library/generator.js +1 -2
- package/src/generators/node-library/generator.js +1 -2
- package/src/generators/preset/generator.js +1 -2
- package/src/generators/release-version/generator.js +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.6 (2024-02-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Resolved issue with missing index.ts entry point ([8d1401ca](https://github.com/storm-software/storm-ops/commit/8d1401ca))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.5 (2024-02-27)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -476268,7 +476268,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
476268
476268
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
476269
476269
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
476270
476270
|
if (!executorOptions.skipReadingConfig) {
|
|
476271
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
476272
476271
|
(0, import_config_tools2.writeDebug)(
|
|
476273
476272
|
config,
|
|
476274
476273
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
@@ -476278,7 +476277,7 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
476278
476277
|
- projectName: ${projectName}
|
|
476279
476278
|
`
|
|
476280
476279
|
);
|
|
476281
|
-
config = await loadStormConfig(workspaceRoot);
|
|
476280
|
+
config = await (0, import_config_tools2.loadStormConfig)(workspaceRoot);
|
|
476282
476281
|
(0, import_config_tools2.writeTrace)(
|
|
476283
476282
|
config,
|
|
476284
476283
|
`Loaded Storm config into env:
|
|
@@ -476374,13 +476373,12 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
476374
476373
|
`);
|
|
476375
476374
|
const workspaceRoot = (0, import_config_tools4.findWorkspaceRootSafe)();
|
|
476376
476375
|
if (!generatorOptions.skipReadingConfig) {
|
|
476377
|
-
const { loadStormConfig } = await import("@storm-software/config-tools");
|
|
476378
476376
|
(0, import_config_tools3.writeDebug)(
|
|
476379
476377
|
config,
|
|
476380
476378
|
`Loading the Storm Config from environment variables and storm.config.js file...
|
|
476381
476379
|
- workspaceRoot: ${workspaceRoot}`
|
|
476382
476380
|
);
|
|
476383
|
-
config = await loadStormConfig(workspaceRoot);
|
|
476381
|
+
config = await (0, import_config_tools4.loadStormConfig)(workspaceRoot);
|
|
476384
476382
|
(0, import_config_tools3.writeTrace)(
|
|
476385
476383
|
config,
|
|
476386
476384
|
`Loaded Storm config into env:
|