@storm-software/workspace-tools 1.60.8 → 1.60.10
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 +1296 -1039
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +1192 -920
- package/src/executors/design-tokens/executor.js +1186 -918
- package/src/executors/npm-publish/executor.js +1154 -893
- package/src/executors/tsup/executor.js +1296 -1039
- package/src/executors/tsup-browser/executor.js +1296 -1039
- package/src/executors/tsup-neutral/executor.js +1296 -1039
- package/src/executors/tsup-node/executor.js +1296 -1039
- package/src/executors/typia/executor.js +34 -26
- package/src/generators/browser-library/generator.js +1192 -920
- package/src/generators/config-schema/generator.js +1186 -918
- package/src/generators/init/init.js +1154 -893
- package/src/generators/neutral-library/generator.js +1192 -920
- package/src/generators/node-library/generator.js +1192 -920
- package/src/generators/preset/generator.js +1186 -918
- package/src/generators/release-version/generator.js +1186 -918
- package/src/utils/index.js +1278 -999
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
const require = (await import('node:module')).createRequire(import.meta.url);
|
|
2
1
|
var __create = Object.create;
|
|
3
2
|
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -9966,20 +9965,6 @@ var require_source_map_support = __commonJS({
|
|
|
9966
9965
|
var require_typescript = __commonJS({
|
|
9967
9966
|
"node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/typescript.js"(exports2, module2) {
|
|
9968
9967
|
"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
|
-
***************************************************************************** */
|
|
9983
9968
|
var ts = (() => {
|
|
9984
9969
|
var __defProp2 = Object.defineProperty;
|
|
9985
9970
|
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
@@ -210466,7 +210451,6 @@ ${error.message}`;
|
|
|
210466
210451
|
exports2.loadYaml = loadYaml;
|
|
210467
210452
|
var typescript;
|
|
210468
210453
|
var loadTsSync = function loadTsSync2(filepath, content) {
|
|
210469
|
-
/* istanbul ignore next -- @preserve */
|
|
210470
210454
|
if (typescript === void 0) {
|
|
210471
210455
|
typescript = require_typescript();
|
|
210472
210456
|
}
|
|
@@ -210778,7 +210762,6 @@ var require_util3 = __commonJS({
|
|
|
210778
210762
|
return Object.fromEntries(Object.entries(options).filter(([, value]) => value !== void 0));
|
|
210779
210763
|
}
|
|
210780
210764
|
exports2.removeUndefinedValuesFromObject = removeUndefinedValuesFromObject;
|
|
210781
|
-
/* istanbul ignore next -- @preserve */
|
|
210782
210765
|
async function isDirectory(path) {
|
|
210783
210766
|
try {
|
|
210784
210767
|
const stat2 = await fs_1.promises.stat(path);
|
|
@@ -210791,7 +210774,6 @@ var require_util3 = __commonJS({
|
|
|
210791
210774
|
}
|
|
210792
210775
|
}
|
|
210793
210776
|
exports2.isDirectory = isDirectory;
|
|
210794
|
-
/* istanbul ignore next -- @preserve */
|
|
210795
210777
|
function isDirectorySync(path) {
|
|
210796
210778
|
try {
|
|
210797
210779
|
const stat2 = fs_1.default.statSync(path);
|
|
@@ -210908,7 +210890,6 @@ ${[...importStack, fullPath].map((path, i) => `${i + 1}. ${path}`).join("\n")} (
|
|
|
210908
210890
|
let currentDir = startDir;
|
|
210909
210891
|
while (currentDir !== stopDir) {
|
|
210910
210892
|
const parentDir = path_1.default.dirname(currentDir);
|
|
210911
|
-
/* istanbul ignore if -- @preserve */
|
|
210912
210893
|
if (parentDir === currentDir) {
|
|
210913
210894
|
break;
|
|
210914
210895
|
}
|
|
@@ -210920,7 +210901,6 @@ ${[...importStack, fullPath].map((path, i) => `${i + 1}. ${path}`).join("\n")} (
|
|
|
210920
210901
|
};
|
|
210921
210902
|
exports2.ExplorerBase = ExplorerBase;
|
|
210922
210903
|
function getExtensionDescription(extension) {
|
|
210923
|
-
/* istanbul ignore next -- @preserve */
|
|
210924
210904
|
return extension ? `extension "${extension}"` : "files without extensions";
|
|
210925
210905
|
}
|
|
210926
210906
|
exports2.getExtensionDescription = getExtensionDescription;
|
|
@@ -211001,13 +210981,11 @@ var require_Explorer = __commonJS({
|
|
|
211001
210981
|
from = path_1.default.resolve(from);
|
|
211002
210982
|
const dirs = this.#getDirs(from);
|
|
211003
210983
|
const firstDirIter = await dirs.next();
|
|
211004
|
-
/* istanbul ignore if -- @preserve */
|
|
211005
210984
|
if (firstDirIter.done) {
|
|
211006
210985
|
throw new Error(`Could not find any folders to iterate through (start from ${from})`);
|
|
211007
210986
|
}
|
|
211008
210987
|
let currentDir = firstDirIter.value;
|
|
211009
210988
|
const search = async () => {
|
|
211010
|
-
/* istanbul ignore if -- @preserve */
|
|
211011
210989
|
if (await (0, util_js_1.isDirectory)(currentDir.path)) {
|
|
211012
210990
|
for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlaces)) {
|
|
211013
210991
|
try {
|
|
@@ -211106,7 +211084,6 @@ var require_Explorer = __commonJS({
|
|
|
211106
211084
|
}
|
|
211107
211085
|
}
|
|
211108
211086
|
const parentDir = path_1.default.dirname(currentDir);
|
|
211109
|
-
/* istanbul ignore if -- @preserve */
|
|
211110
211087
|
if (parentDir === currentDir) {
|
|
211111
211088
|
break;
|
|
211112
211089
|
}
|
|
@@ -211162,13 +211139,11 @@ var require_ExplorerSync = __commonJS({
|
|
|
211162
211139
|
from = path_1.default.resolve(from);
|
|
211163
211140
|
const dirs = this.#getDirs(from);
|
|
211164
211141
|
const firstDirIter = dirs.next();
|
|
211165
|
-
/* istanbul ignore if -- @preserve */
|
|
211166
211142
|
if (firstDirIter.done) {
|
|
211167
211143
|
throw new Error(`Could not find any folders to iterate through (start from ${from})`);
|
|
211168
211144
|
}
|
|
211169
211145
|
let currentDir = firstDirIter.value;
|
|
211170
211146
|
const search = () => {
|
|
211171
|
-
/* istanbul ignore if -- @preserve */
|
|
211172
211147
|
if ((0, util_js_1.isDirectorySync)(currentDir.path)) {
|
|
211173
211148
|
for (const filepath of this.getSearchPlacesForDir(currentDir, defaults_1.globalConfigSearchPlacesSync)) {
|
|
211174
211149
|
try {
|
|
@@ -211267,7 +211242,6 @@ var require_ExplorerSync = __commonJS({
|
|
|
211267
211242
|
}
|
|
211268
211243
|
}
|
|
211269
211244
|
const parentDir = path_1.default.dirname(currentDir);
|
|
211270
|
-
/* istanbul ignore if -- @preserve */
|
|
211271
211245
|
if (parentDir === currentDir) {
|
|
211272
211246
|
break;
|
|
211273
211247
|
}
|
|
@@ -239193,3 +239167,37 @@ var executor_default = withRunExecutor(
|
|
|
239193
239167
|
0 && (module.exports = {
|
|
239194
239168
|
typiaExecutorFn
|
|
239195
239169
|
});
|
|
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
|
+
*/
|