@storm-software/workspace-tools 1.60.6 → 1.60.8
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 +24 -0
- package/index.js +1010 -1294
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +920 -1192
- package/src/executors/design-tokens/executor.js +918 -1186
- package/src/executors/npm-publish/executor.js +893 -1154
- package/src/executors/tsup/executor.js +1010 -1294
- package/src/executors/tsup-browser/executor.js +1010 -1294
- package/src/executors/tsup-neutral/executor.js +1010 -1294
- package/src/executors/tsup-node/executor.js +1010 -1294
- package/src/executors/typia/executor.js +26 -34
- package/src/generators/browser-library/generator.js +920 -1192
- package/src/generators/config-schema/generator.js +918 -1186
- package/src/generators/init/init.js +893 -1154
- package/src/generators/neutral-library/generator.js +920 -1192
- package/src/generators/node-library/generator.js +920 -1192
- package/src/generators/preset/generator.js +918 -1186
- package/src/generators/release-version/generator.js +918 -1186
- package/src/utils/index.js +999 -1278
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
const require = (await import('node:module')).createRequire(import.meta.url);
|
|
1
2
|
var __create = Object.create;
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -9965,6 +9966,20 @@ var require_source_map_support = __commonJS({
|
|
|
9965
9966
|
var require_typescript = __commonJS({
|
|
9966
9967
|
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
|
|
9967
9968
|
"use strict";
|
|
9969
|
+
/*! *****************************************************************************
|
|
9970
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
9971
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
9972
|
+
this file except in compliance with the License. You may obtain a copy of the
|
|
9973
|
+
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
9974
|
+
|
|
9975
|
+
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
9976
|
+
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
9977
|
+
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
9978
|
+
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
9979
|
+
|
|
9980
|
+
See the Apache Version 2.0 License for specific language governing permissions
|
|
9981
|
+
and limitations under the License.
|
|
9982
|
+
***************************************************************************** */
|
|
9968
9983
|
var ts = (() => {
|
|
9969
9984
|
var __defProp2 = Object.defineProperty;
|
|
9970
9985
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -210451,6 +210466,7 @@ ${error.message}`;
|
|
|
210451
210466
|
exports2.loadYaml = loadYaml;
|
|
210452
210467
|
var typescript;
|
|
210453
210468
|
var loadTsSync = function loadTsSync2(filepath, content) {
|
|
210469
|
+
/* istanbul ignore next -- @preserve */
|
|
210454
210470
|
if (typescript === void 0) {
|
|
210455
210471
|
typescript = require_typescript();
|
|
210456
210472
|
}
|
|
@@ -210762,6 +210778,7 @@ var require_util3 = __commonJS({
|
|
|
210762
210778
|
return Object.fromEntries(Object.entries(options).filter(([, value]) => value !== void 0));
|
|
210763
210779
|
}
|
|
210764
210780
|
exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
|
|
210781
|
+
/* istanbul ignore next -- @preserve */
|
|
210765
210782
|
async function isDirectory(path) {
|
|
210766
210783
|
try {
|
|
210767
210784
|
const stat2 = await fs_1.promises.stat(path);
|
|
@@ -210774,6 +210791,7 @@ var require_util3 = __commonJS({
|
|
|
210774
210791
|
}
|
|
210775
210792
|
}
|
|
210776
210793
|
exports2.isDirectory = isDirectory;
|
|
210794
|
+
/* istanbul ignore next -- @preserve */
|
|
210777
210795
|
function isDirectorySync(path) {
|
|
210778
210796
|
try {
|
|
210779
210797
|
const stat2 = fs_1.default.statSync(path);
|
|
@@ -210890,6 +210908,7 @@ ${[...importStack, fullPath].map((path, i) => `${i + 1}. ${path}`).join("\n")} (
|
|
|
210890
210908
|
let currentDir = startDir;
|
|
210891
210909
|
while (currentDir !== stopDir) {
|
|
210892
210910
|
const parentDir = path_1.default.dirname(currentDir);
|
|
210911
|
+
/* istanbul ignore if -- @preserve */
|
|
210893
210912
|
if (parentDir === currentDir) {
|
|
210894
210913
|
break;
|
|
210895
210914
|
}
|
|
@@ -210901,6 +210920,7 @@ ${[...importStack, fullPath].map((path, i) => `${i + 1}. ${path}`).join("\n")} (
|
|
|
210901
210920
|
};
|
|
210902
210921
|
exports2.ExplorerBase = ExplorerBase;
|
|
210903
210922
|
function getExtensionDescription(extension) {
|
|
210923
|
+
/* istanbul ignore next -- @preserve */
|
|
210904
210924
|
return extension ? `extension "${extension}"` : "files without extensions";
|
|
210905
210925
|
}
|
|
210906
210926
|
exports2.getExtensionDescription = getExtensionDescription;
|
|
@@ -210981,11 +211001,13 @@ var require_Explorer = __commonJS({
|
|
|
210981
211001
|
from = path_1.default.resolve(from);
|
|
210982
211002
|
const dirs = this.#getDirs(from);
|
|
210983
211003
|
const firstDirIter = await dirs.next();
|
|
211004
|
+
/* istanbul ignore if -- @preserve */
|
|
210984
211005
|
if (firstDirIter.done) {
|
|
210985
211006
|
throw new Error(`Could not find any folders to iterate through (start from ${from})`);
|
|
210986
211007
|
}
|
|
210987
211008
|
let currentDir = firstDirIter.value;
|
|
210988
211009
|
const search = async () => {
|
|
211010
|
+
/* istanbul ignore if -- @preserve */
|
|
210989
211011
|
if (await (0, util_js_1.isDirectory)(currentDir.path)) {
|
|
210990
211012
|
for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
|
|
210991
211013
|
try {
|
|
@@ -211084,6 +211106,7 @@ var require_Explorer = __commonJS({
|
|
|
211084
211106
|
}
|
|
211085
211107
|
}
|
|
211086
211108
|
const parentDir = path_1.default.dirname(currentDir);
|
|
211109
|
+
/* istanbul ignore if -- @preserve */
|
|
211087
211110
|
if (parentDir === currentDir) {
|
|
211088
211111
|
break;
|
|
211089
211112
|
}
|
|
@@ -211139,11 +211162,13 @@ var require_ExplorerSync = __commonJS({
|
|
|
211139
211162
|
from = path_1.default.resolve(from);
|
|
211140
211163
|
const dirs = this.#getDirs(from);
|
|
211141
211164
|
const firstDirIter = dirs.next();
|
|
211165
|
+
/* istanbul ignore if -- @preserve */
|
|
211142
211166
|
if (firstDirIter.done) {
|
|
211143
211167
|
throw new Error(`Could not find any folders to iterate through (start from ${from})`);
|
|
211144
211168
|
}
|
|
211145
211169
|
let currentDir = firstDirIter.value;
|
|
211146
211170
|
const search = () => {
|
|
211171
|
+
/* istanbul ignore if -- @preserve */
|
|
211147
211172
|
if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
|
|
211148
211173
|
for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
|
|
211149
211174
|
try {
|
|
@@ -211242,6 +211267,7 @@ var require_ExplorerSync = __commonJS({
|
|
|
211242
211267
|
}
|
|
211243
211268
|
}
|
|
211244
211269
|
const parentDir = path_1.default.dirname(currentDir);
|
|
211270
|
+
/* istanbul ignore if -- @preserve */
|
|
211245
211271
|
if (parentDir === currentDir) {
|
|
211246
211272
|
break;
|
|
211247
211273
|
}
|
|
@@ -239167,37 +239193,3 @@ var executor_default = withRunExecutor(
|
|
|
239167
239193
|
0 && (module.exports = {
|
|
239168
239194
|
typiaExecutorFn
|
|
239169
239195
|
});
|
|
239170
|
-
/*! Bundled license information:
|
|
239171
|
-
|
|
239172
|
-
typescript/lib/typescript.js:
|
|
239173
|
-
(*! *****************************************************************************
|
|
239174
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
239175
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
239176
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
239177
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
239178
|
-
|
|
239179
|
-
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
239180
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
239181
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
239182
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
239183
|
-
|
|
239184
|
-
See the Apache Version 2.0 License for specific language governing permissions
|
|
239185
|
-
and limitations under the License.
|
|
239186
|
-
***************************************************************************** *)
|
|
239187
|
-
|
|
239188
|
-
cosmiconfig/dist/loaders.js:
|
|
239189
|
-
(* istanbul ignore next -- @preserve *)
|
|
239190
|
-
|
|
239191
|
-
cosmiconfig/dist/util.js:
|
|
239192
|
-
(* istanbul ignore next -- @preserve *)
|
|
239193
|
-
|
|
239194
|
-
cosmiconfig/dist/ExplorerBase.js:
|
|
239195
|
-
(* istanbul ignore if -- @preserve *)
|
|
239196
|
-
(* istanbul ignore next -- @preserve *)
|
|
239197
|
-
|
|
239198
|
-
cosmiconfig/dist/Explorer.js:
|
|
239199
|
-
(* istanbul ignore if -- @preserve *)
|
|
239200
|
-
|
|
239201
|
-
cosmiconfig/dist/ExplorerSync.js:
|
|
239202
|
-
(* istanbul ignore if -- @preserve *)
|
|
239203
|
-
*/
|