@storm-software/workspace-tools 1.41.1 → 1.42.0
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/README.md +1 -1
- package/config/nx.json +10 -15
- package/index.js +56 -38
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +3 -1
- package/src/executors/design-tokens/executor.js +3 -1
- package/src/executors/tsup/executor.js +83944 -83923
- package/src/executors/tsup-browser/executor.js +53 -33
- package/src/executors/tsup-neutral/executor.js +52 -33
- package/src/executors/tsup-node/executor.js +54 -34
- package/src/generators/browser-library/generator.js +3 -1
- package/src/generators/config-schema/generator.js +3 -1
- package/src/generators/neutral-library/generator.js +3 -1
- package/src/generators/node-library/generator.js +3 -1
- package/src/generators/preset/files/biome.json +4 -0
- package/src/generators/preset/files/lefthook.json +6 -0
- package/src/generators/preset/generator.js +3 -1
- package/src/generators/preset/files/.husky/post-checkout +0 -5
- package/src/generators/preset/files/.husky/post-commit +0 -4
- package/src/generators/preset/files/.husky/post-merge +0 -5
- package/src/generators/preset/files/.husky/pre-commit +0 -4
- package/src/generators/preset/files/.husky/pre-push +0 -4
- package/src/generators/preset/files/eslint.config.js +0 -59
package/package.json
CHANGED
package/src/base/index.js
CHANGED
|
@@ -43541,7 +43541,9 @@ var getConfigFile = async (filePath) => {
|
|
|
43541
43541
|
return void 0;
|
|
43542
43542
|
}
|
|
43543
43543
|
const config = cosmiconfigResult.config ?? {};
|
|
43544
|
-
|
|
43544
|
+
if (cosmiconfigResult.filepath) {
|
|
43545
|
+
config.configFile = cosmiconfigResult.filepath;
|
|
43546
|
+
}
|
|
43545
43547
|
config.runtimeVersion = "0.0.1";
|
|
43546
43548
|
_static_cache = config;
|
|
43547
43549
|
return config;
|
|
@@ -61457,7 +61457,9 @@ var getConfigFile = async (filePath) => {
|
|
|
61457
61457
|
return void 0;
|
|
61458
61458
|
}
|
|
61459
61459
|
const config = cosmiconfigResult.config ?? {};
|
|
61460
|
-
|
|
61460
|
+
if (cosmiconfigResult.filepath) {
|
|
61461
|
+
config.configFile = cosmiconfigResult.filepath;
|
|
61462
|
+
}
|
|
61461
61463
|
config.runtimeVersion = "0.0.1";
|
|
61462
61464
|
_static_cache = config;
|
|
61463
61465
|
return config;
|