@storm-software/workspace-tools 1.43.6 → 1.43.7
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 +4 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +3 -3
- package/src/executors/design-tokens/executor.js +3 -3
- package/src/executors/tsup/executor.js +4 -6
- package/src/executors/tsup-browser/executor.js +4 -6
- package/src/executors/tsup-neutral/executor.js +4 -6
- package/src/executors/tsup-node/executor.js +4 -6
- package/src/generators/browser-library/generator.js +3 -3
- package/src/generators/config-schema/generator.js +3 -3
- package/src/generators/neutral-library/generator.js +3 -3
- package/src/generators/node-library/generator.js +3 -3
- package/src/generators/preset/generator.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.43.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.5...workspace-tools-v1.43.6) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added code to properly parse out the config file ([c345fef](https://github.com/storm-software/storm-ops/commit/c345fefc6389a9a10b3f5b8446eb76982f45e6f7))
|
|
7
|
+
|
|
1
8
|
## [1.43.5](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.4...workspace-tools-v1.43.5) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -126381,7 +126381,7 @@ module.exports = __toCommonJS(workspace_tools_exports);
|
|
|
126381
126381
|
// packages/config-tools/src/config-file/get-config-file.ts
|
|
126382
126382
|
var import_cosmiconfig = __toESM(require_dist(), 1);
|
|
126383
126383
|
var _static_cache = void 0;
|
|
126384
|
-
var getConfigFileName = (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
|
|
126384
|
+
var getConfigFileName = async (fileName, filePath) => (0, import_cosmiconfig.cosmiconfig)(fileName, { cache: true }).search(filePath);
|
|
126385
126385
|
var getConfigFile = async (filePath) => {
|
|
126386
126386
|
if (_static_cache) {
|
|
126387
126387
|
return _static_cache;
|
|
@@ -130204,9 +130204,9 @@ var getDefaultConfig = (config = {}, root) => {
|
|
|
130204
130204
|
}
|
|
130205
130205
|
}
|
|
130206
130206
|
return StormConfigSchema.parse({
|
|
130207
|
-
...config,
|
|
130208
130207
|
...DefaultStormConfig,
|
|
130209
|
-
|
|
130208
|
+
...config,
|
|
130209
|
+
colors: { ...DefaultColorConfig, ...config.colors },
|
|
130210
130210
|
workspaceRoot,
|
|
130211
130211
|
name,
|
|
130212
130212
|
namespace,
|
|
@@ -137835,9 +137835,7 @@ ${Object.keys(options).map(
|
|
|
137835
137835
|
}
|
|
137836
137836
|
if (implicitDependencies && implicitDependencies.length > 0) {
|
|
137837
137837
|
options.external = implicitDependencies.reduce((ret, key) => {
|
|
137838
|
-
|
|
137839
|
-
writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
|
|
137840
|
-
}
|
|
137838
|
+
writeDebug(config, `\u26A1 Adding implicit dependency: ${key}`);
|
|
137841
137839
|
const projectConfig = projectConfigs[key];
|
|
137842
137840
|
if (projectConfig?.targets?.build) {
|
|
137843
137841
|
const projectPackageJson = (0, import_devkit3.readJsonFile)(projectConfig.targets?.build.options.project);
|