@storm-software/workspace-tools 1.21.17 → 1.21.19
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/index.js +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +2 -2
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
- package/src/generators/config-schema/generator.js +2 -2
- package/src/generators/node-library/generator.js +2 -2
- package/src/generators/preset/files/.env.template +2 -2
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +6 -6
- package/src/generators/preset/generator.js +2 -2
- package/src/utils/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.21.18](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.17...workspace-tools-v1.21.18) (2023-12-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config-tools:** Update generic type used in `createStormConfig` function ([fe72f6d](https://github.com/storm-software/storm-ops/commit/fe72f6d52ca0ea02e15f07679ba5f0e824a228be))
|
|
7
|
+
|
|
8
|
+
## [1.21.17](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.16...workspace-tools-v1.21.17) (2023-12-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **config-tools:** Update configuration types to allow any type of schema ([c79b428](https://github.com/storm-software/storm-ops/commit/c79b428057b6020c1a50e68dd6f753cf7ad133f5))
|
|
14
|
+
|
|
1
15
|
## [1.21.16](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.21.15...workspace-tools-v1.21.16) (2023-12-04)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -108756,7 +108756,7 @@ var getDefaultConfig = (config = {}) => {
|
|
|
108756
108756
|
};
|
|
108757
108757
|
var getWorkspaceRoot = () => {
|
|
108758
108758
|
const root = (0, import_find_workspace_root.findWorkspaceRoot)(process.cwd());
|
|
108759
|
-
process.env.
|
|
108759
|
+
process.env.STORM_WORKSPACE_ROOT ??= root?.dir;
|
|
108760
108760
|
process.env.NX_WORKSPACE_ROOT_PATH ??= root?.dir;
|
|
108761
108761
|
return root?.dir;
|
|
108762
108762
|
};
|
|
@@ -108947,7 +108947,7 @@ var chalk = __toESM(require_source());
|
|
|
108947
108947
|
var import_find_workspace_root2 = require("nx/src/utils/find-workspace-root.js");
|
|
108948
108948
|
var getWorkspaceRoot2 = () => {
|
|
108949
108949
|
const root = (0, import_find_workspace_root2.findWorkspaceRoot)(process.cwd());
|
|
108950
|
-
process.env.
|
|
108950
|
+
process.env.STORM_WORKSPACE_ROOT ??= root?.dir;
|
|
108951
108951
|
process.env.NX_WORKSPACE_ROOT_PATH ??= root?.dir;
|
|
108952
108952
|
return root?.dir;
|
|
108953
108953
|
};
|