@storm-software/workspace-tools 1.31.15 → 1.31.16
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 +7 -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/design-tokens/executor.js +2 -2
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-browser/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/browser-library/generator.js +2 -2
- package/src/generators/config-schema/generator.js +2 -2
- package/src/generators/neutral-library/generator.js +2 -2
- package/src/generators/node-library/generator.js +2 -2
- package/src/generators/preset/generator.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.31.15](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.14...workspace-tools-v1.31.15) (2023-12-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **config-tools:** Resolved issue around path parameter ([eb15b5d](https://github.com/storm-software/storm-ops/commit/eb15b5d8d2344cc8517a5d26b30685ee990cc877))
|
|
7
|
+
|
|
1
8
|
## [1.31.14](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.13...workspace-tools-v1.31.14) (2023-12-21)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -110170,13 +110170,13 @@ var DefaultStormConfig = {
|
|
|
110170
110170
|
colors: { ...DefaultColorConfig },
|
|
110171
110171
|
extensions: {}
|
|
110172
110172
|
};
|
|
110173
|
-
var getDefaultConfig = (config = {}) => {
|
|
110173
|
+
var getDefaultConfig = (config = {}, root) => {
|
|
110174
110174
|
let name = "storm-workspace";
|
|
110175
110175
|
let namespace = "storm-software";
|
|
110176
110176
|
let repository = "https://github.com/storm-software/storm-stack";
|
|
110177
110177
|
let license = DefaultStormConfig.license;
|
|
110178
110178
|
let homepage = DefaultStormConfig.homepage;
|
|
110179
|
-
const workspaceRoot = findWorkspaceRoot();
|
|
110179
|
+
const workspaceRoot = findWorkspaceRoot(root);
|
|
110180
110180
|
if ((0, import_fs.existsSync)((0, import_path.join)(workspaceRoot, "package.json"))) {
|
|
110181
110181
|
const file = (0, import_fs.readFileSync)((0, import_path.join)(workspaceRoot, "package.json"), {
|
|
110182
110182
|
encoding: "utf-8"
|