@storm-software/workspace-tools 1.43.14 → 1.43.15
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 +14 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +13 -1
- package/src/executors/design-tokens/executor.js +13 -1
- package/src/executors/tsup/executor.js +14 -2
- package/src/executors/tsup-browser/executor.js +14 -2
- package/src/executors/tsup-neutral/executor.js +14 -2
- package/src/executors/tsup-node/executor.js +14 -2
- package/src/generators/browser-library/generator.js +13 -1
- package/src/generators/config-schema/generator.js +13 -1
- package/src/generators/neutral-library/generator.js +13 -1
- package/src/generators/node-library/generator.js +13 -1
- package/src/generators/preset/generator.js +13 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.43.14](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.13...workspace-tools-v1.43.14) (2024-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Update the logic to apply external dependencies ([29b73ca](https://github.com/storm-software/storm-ops/commit/29b73ca3ee95539a3832adcc59043882d358eb53))
|
|
7
|
+
|
|
1
8
|
## [1.43.13](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.43.12...workspace-tools-v1.43.13) (2024-01-17)
|
|
2
9
|
|
|
3
10
|
|
package/index.js
CHANGED
|
@@ -130562,7 +130562,19 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130562
130562
|
const configEnv = getConfigEnv();
|
|
130563
130563
|
for (const key of Object.keys(configEnv)) {
|
|
130564
130564
|
if (configEnv[key] !== void 0 && configEnv[key] !== null) {
|
|
130565
|
-
|
|
130565
|
+
if (key === "colors") {
|
|
130566
|
+
configFile.colors = {
|
|
130567
|
+
primary: process.env.STORM_COLOR_PRIMARY ?? configFile.colors?.primary,
|
|
130568
|
+
background: process.env.STORM_COLOR_BACKGROUND ?? configFile.colors?.primary,
|
|
130569
|
+
success: process.env.STORM_COLOR_SUCCESS ?? configFile.colors?.primary,
|
|
130570
|
+
info: process.env.STORM_COLOR_INFO ?? configFile.colors?.primary,
|
|
130571
|
+
warning: process.env.STORM_COLOR_WARNING ?? configFile.colors?.primary,
|
|
130572
|
+
error: process.env.STORM_COLOR_ERROR ?? configFile.colors?.primary,
|
|
130573
|
+
fatal: process.env.STORM_COLOR_FATAL ?? configFile.colors?.primary
|
|
130574
|
+
};
|
|
130575
|
+
} else {
|
|
130576
|
+
configFile[key] = configEnv[key];
|
|
130577
|
+
}
|
|
130566
130578
|
}
|
|
130567
130579
|
}
|
|
130568
130580
|
const config = StormConfigSchema.parse(configFile);
|
|
@@ -137862,7 +137874,7 @@ ${externalDependencies.map((dep) => {
|
|
|
137862
137874
|
for (const externalDependency of externalDependencies) {
|
|
137863
137875
|
console.log(externalDependency);
|
|
137864
137876
|
const packageConfig = externalDependency.node.data;
|
|
137865
|
-
if (packageConfig?.packageName && externalDependency.node.type === "npm") {
|
|
137877
|
+
if (packageConfig?.packageName && externalDependency.node.type === "npm" && packageConfig?.packageName !== "@biomejs/biome") {
|
|
137866
137878
|
console.log("In if statement");
|
|
137867
137879
|
console.log(packageConfig);
|
|
137868
137880
|
const { packageName, version } = packageConfig;
|