@storm-software/workspace-tools 1.43.8 → 1.43.9
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 +6 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +6 -0
- package/src/executors/design-tokens/executor.js +6 -0
- package/src/executors/tsup/executor.js +6 -0
- package/src/executors/tsup-browser/executor.js +6 -0
- package/src/executors/tsup-neutral/executor.js +6 -0
- package/src/executors/tsup-node/executor.js +6 -0
- package/src/generators/browser-library/generator.js +6 -0
- package/src/generators/config-schema/generator.js +6 -0
- package/src/generators/neutral-library/generator.js +6 -0
- package/src/generators/node-library/generator.js +6 -0
- package/src/generators/preset/generator.js +6 -0
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -47683,6 +47683,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
47683
47683
|
};
|
|
47684
47684
|
const config = StormConfigSchema.parse(configFile);
|
|
47685
47685
|
setConfigEnv(config);
|
|
47686
|
+
console.debug("\n\n");
|
|
47687
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
47688
|
+
for (const key of Object.keys(configFile)) {
|
|
47689
|
+
console.debug(configFile[key]);
|
|
47690
|
+
}
|
|
47691
|
+
console.debug("\n\n");
|
|
47686
47692
|
return config;
|
|
47687
47693
|
};
|
|
47688
47694
|
|
|
@@ -65599,6 +65599,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
65599
65599
|
};
|
|
65600
65600
|
const config = StormConfigSchema.parse(configFile);
|
|
65601
65601
|
setConfigEnv(config);
|
|
65602
|
+
console.debug("\n\n");
|
|
65603
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
65604
|
+
for (const key of Object.keys(configFile)) {
|
|
65605
|
+
console.debug(configFile[key]);
|
|
65606
|
+
}
|
|
65607
|
+
console.debug("\n\n");
|
|
65602
65608
|
return config;
|
|
65603
65609
|
};
|
|
65604
65610
|
|
|
@@ -130540,6 +130540,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130540
130540
|
};
|
|
130541
130541
|
const config = StormConfigSchema.parse(configFile);
|
|
130542
130542
|
setConfigEnv(config);
|
|
130543
|
+
console.debug("\n\n");
|
|
130544
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
130545
|
+
for (const key of Object.keys(configFile)) {
|
|
130546
|
+
console.debug(configFile[key]);
|
|
130547
|
+
}
|
|
130548
|
+
console.debug("\n\n");
|
|
130543
130549
|
return config;
|
|
130544
130550
|
};
|
|
130545
130551
|
|
|
@@ -130531,6 +130531,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130531
130531
|
};
|
|
130532
130532
|
const config = StormConfigSchema.parse(configFile);
|
|
130533
130533
|
setConfigEnv(config);
|
|
130534
|
+
console.debug("\n\n");
|
|
130535
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
130536
|
+
for (const key of Object.keys(configFile)) {
|
|
130537
|
+
console.debug(configFile[key]);
|
|
130538
|
+
}
|
|
130539
|
+
console.debug("\n\n");
|
|
130534
130540
|
return config;
|
|
130535
130541
|
};
|
|
130536
130542
|
|
|
@@ -130531,6 +130531,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130531
130531
|
};
|
|
130532
130532
|
const config = StormConfigSchema.parse(configFile);
|
|
130533
130533
|
setConfigEnv(config);
|
|
130534
|
+
console.debug("\n\n");
|
|
130535
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
130536
|
+
for (const key of Object.keys(configFile)) {
|
|
130537
|
+
console.debug(configFile[key]);
|
|
130538
|
+
}
|
|
130539
|
+
console.debug("\n\n");
|
|
130534
130540
|
return config;
|
|
130535
130541
|
};
|
|
130536
130542
|
|
|
@@ -130531,6 +130531,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
130531
130531
|
};
|
|
130532
130532
|
const config = StormConfigSchema.parse(configFile);
|
|
130533
130533
|
setConfigEnv(config);
|
|
130534
|
+
console.debug("\n\n");
|
|
130535
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
130536
|
+
for (const key of Object.keys(configFile)) {
|
|
130537
|
+
console.debug(configFile[key]);
|
|
130538
|
+
}
|
|
130539
|
+
console.debug("\n\n");
|
|
130534
130540
|
return config;
|
|
130535
130541
|
};
|
|
130536
130542
|
|
|
@@ -47676,6 +47676,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
47676
47676
|
};
|
|
47677
47677
|
const config = StormConfigSchema.parse(configFile);
|
|
47678
47678
|
setConfigEnv(config);
|
|
47679
|
+
console.debug("\n\n");
|
|
47680
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
47681
|
+
for (const key of Object.keys(configFile)) {
|
|
47682
|
+
console.debug(configFile[key]);
|
|
47683
|
+
}
|
|
47684
|
+
console.debug("\n\n");
|
|
47679
47685
|
return config;
|
|
47680
47686
|
};
|
|
47681
47687
|
|
|
@@ -30434,6 +30434,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
30434
30434
|
};
|
|
30435
30435
|
const config = StormConfigSchema.parse(configFile);
|
|
30436
30436
|
setConfigEnv(config);
|
|
30437
|
+
console.debug("\n\n");
|
|
30438
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
30439
|
+
for (const key of Object.keys(configFile)) {
|
|
30440
|
+
console.debug(configFile[key]);
|
|
30441
|
+
}
|
|
30442
|
+
console.debug("\n\n");
|
|
30437
30443
|
return config;
|
|
30438
30444
|
};
|
|
30439
30445
|
|
|
@@ -47676,6 +47676,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
47676
47676
|
};
|
|
47677
47677
|
const config = StormConfigSchema.parse(configFile);
|
|
47678
47678
|
setConfigEnv(config);
|
|
47679
|
+
console.debug("\n\n");
|
|
47680
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
47681
|
+
for (const key of Object.keys(configFile)) {
|
|
47682
|
+
console.debug(configFile[key]);
|
|
47683
|
+
}
|
|
47684
|
+
console.debug("\n\n");
|
|
47679
47685
|
return config;
|
|
47680
47686
|
};
|
|
47681
47687
|
|
|
@@ -47676,6 +47676,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
47676
47676
|
};
|
|
47677
47677
|
const config = StormConfigSchema.parse(configFile);
|
|
47678
47678
|
setConfigEnv(config);
|
|
47679
|
+
console.debug("\n\n");
|
|
47680
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
47681
|
+
for (const key of Object.keys(configFile)) {
|
|
47682
|
+
console.debug(configFile[key]);
|
|
47683
|
+
}
|
|
47684
|
+
console.debug("\n\n");
|
|
47679
47685
|
return config;
|
|
47680
47686
|
};
|
|
47681
47687
|
|
|
@@ -30435,6 +30435,12 @@ var loadStormConfig = async (workspaceRoot) => {
|
|
|
30435
30435
|
};
|
|
30436
30436
|
const config = StormConfigSchema.parse(configFile);
|
|
30437
30437
|
setConfigEnv(config);
|
|
30438
|
+
console.debug("\n\n");
|
|
30439
|
+
console.debug(`Loaded Storm config from ${config.configFile}`);
|
|
30440
|
+
for (const key of Object.keys(configFile)) {
|
|
30441
|
+
console.debug(configFile[key]);
|
|
30442
|
+
}
|
|
30443
|
+
console.debug("\n\n");
|
|
30438
30444
|
return config;
|
|
30439
30445
|
};
|
|
30440
30446
|
|