@storm-software/workspace-tools 1.170.0 → 1.172.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 +14 -0
- package/README.md +1 -1
- package/index.js +12 -11
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/clean-package/executor.js +12 -11
- package/src/executors/rollup/executor.js +12 -11
package/package.json
CHANGED
|
@@ -73344,10 +73344,10 @@ module.exports = __toCommonJS(executor_exports);
|
|
|
73344
73344
|
var import_devkit = require("@nx/devkit");
|
|
73345
73345
|
var import_fs_extra = __toESM(require_lib());
|
|
73346
73346
|
|
|
73347
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73347
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
73348
73348
|
var import_brace_expansion = __toESM(require_brace_expansion(), 1);
|
|
73349
73349
|
|
|
73350
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73350
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/assert-valid-pattern.js
|
|
73351
73351
|
var MAX_PATTERN_LENGTH = 1024 * 64;
|
|
73352
73352
|
var assertValidPattern = (pattern) => {
|
|
73353
73353
|
if (typeof pattern !== "string") {
|
|
@@ -73358,7 +73358,7 @@ var assertValidPattern = (pattern) => {
|
|
|
73358
73358
|
}
|
|
73359
73359
|
};
|
|
73360
73360
|
|
|
73361
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73361
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/brace-expressions.js
|
|
73362
73362
|
var posixClasses = {
|
|
73363
73363
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
73364
73364
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -73467,12 +73467,12 @@ var parseClass = (glob2, position) => {
|
|
|
73467
73467
|
return [comb, uflag, endPos - pos, true];
|
|
73468
73468
|
};
|
|
73469
73469
|
|
|
73470
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73470
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.js
|
|
73471
73471
|
var unescape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
73472
73472
|
return windowsPathsNoEscape ? s2.replace(/\[([^\/\\])\]/g, "$1") : s2.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
|
|
73473
73473
|
};
|
|
73474
73474
|
|
|
73475
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73475
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/ast.js
|
|
73476
73476
|
var types = /* @__PURE__ */ new Set(["!", "?", "+", "*", "@"]);
|
|
73477
73477
|
var isExtglobType = (c) => types.has(c);
|
|
73478
73478
|
var startNoTraversal = "(?!(?:^|/)\\.\\.?(?:$|/))";
|
|
@@ -73951,12 +73951,12 @@ var AST = class _AST {
|
|
|
73951
73951
|
}
|
|
73952
73952
|
};
|
|
73953
73953
|
|
|
73954
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73954
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.js
|
|
73955
73955
|
var escape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
73956
73956
|
return windowsPathsNoEscape ? s2.replace(/[?*()[\]]/g, "[$&]") : s2.replace(/[?*()[\]\\]/g, "\\$&");
|
|
73957
73957
|
};
|
|
73958
73958
|
|
|
73959
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
73959
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
73960
73960
|
var minimatch = (p2, pattern, options = {}) => {
|
|
73961
73961
|
assertValidPattern(pattern);
|
|
73962
73962
|
if (!options.nocomment && pattern.charAt(0) === "#") {
|
|
@@ -74377,10 +74377,11 @@ var Minimatch = class {
|
|
|
74377
74377
|
for (let i2 = 0; i2 < globParts.length - 1; i2++) {
|
|
74378
74378
|
for (let j3 = i2 + 1; j3 < globParts.length; j3++) {
|
|
74379
74379
|
const matched = this.partsMatch(globParts[i2], globParts[j3], !this.preserveMultipleSlashes);
|
|
74380
|
-
if (
|
|
74381
|
-
|
|
74382
|
-
|
|
74383
|
-
|
|
74380
|
+
if (matched) {
|
|
74381
|
+
globParts[i2] = [];
|
|
74382
|
+
globParts[j3] = matched;
|
|
74383
|
+
break;
|
|
74384
|
+
}
|
|
74384
74385
|
}
|
|
74385
74386
|
}
|
|
74386
74387
|
return globParts.filter((gs) => gs.length);
|
|
@@ -711463,10 +711463,10 @@ module.exports = __toCommonJS(executor_exports);
|
|
|
711463
711463
|
var import_rollup = __toESM(require_rollup_impl());
|
|
711464
711464
|
var import_fs_extra = __toESM(require_lib35());
|
|
711465
711465
|
|
|
711466
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
711466
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
711467
711467
|
var import_brace_expansion = __toESM(require_brace_expansion(), 1);
|
|
711468
711468
|
|
|
711469
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
711469
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/assert-valid-pattern.js
|
|
711470
711470
|
var MAX_PATTERN_LENGTH = 1024 * 64;
|
|
711471
711471
|
var assertValidPattern = (pattern) => {
|
|
711472
711472
|
if (typeof pattern !== "string") {
|
|
@@ -711477,7 +711477,7 @@ var assertValidPattern = (pattern) => {
|
|
|
711477
711477
|
}
|
|
711478
711478
|
};
|
|
711479
711479
|
|
|
711480
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
711480
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/brace-expressions.js
|
|
711481
711481
|
var posixClasses = {
|
|
711482
711482
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
711483
711483
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -711586,12 +711586,12 @@ var parseClass = (glob2, position) => {
|
|
|
711586
711586
|
return [comb, uflag, endPos - pos, true];
|
|
711587
711587
|
};
|
|
711588
711588
|
|
|
711589
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
711589
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.js
|
|
711590
711590
|
var unescape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
711591
711591
|
return windowsPathsNoEscape ? s2.replace(/\[([^\/\\])\]/g, "$1") : s2.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
|
|
711592
711592
|
};
|
|
711593
711593
|
|
|
711594
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
711594
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/ast.js
|
|
711595
711595
|
var types = /* @__PURE__ */ new Set(["!", "?", "+", "*", "@"]);
|
|
711596
711596
|
var isExtglobType = (c) => types.has(c);
|
|
711597
711597
|
var startNoTraversal = "(?!(?:^|/)\\.\\.?(?:$|/))";
|
|
@@ -712070,12 +712070,12 @@ var AST = class _AST {
|
|
|
712070
712070
|
}
|
|
712071
712071
|
};
|
|
712072
712072
|
|
|
712073
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
712073
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.js
|
|
712074
712074
|
var escape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
712075
712075
|
return windowsPathsNoEscape ? s2.replace(/[?*()[\]]/g, "[$&]") : s2.replace(/[?*()[\]\\]/g, "\\$&");
|
|
712076
712076
|
};
|
|
712077
712077
|
|
|
712078
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
712078
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
712079
712079
|
var minimatch = (p2, pattern, options = {}) => {
|
|
712080
712080
|
assertValidPattern(pattern);
|
|
712081
712081
|
if (!options.nocomment && pattern.charAt(0) === "#") {
|
|
@@ -712496,10 +712496,11 @@ var Minimatch = class {
|
|
|
712496
712496
|
for (let i2 = 0; i2 < globParts.length - 1; i2++) {
|
|
712497
712497
|
for (let j3 = i2 + 1; j3 < globParts.length; j3++) {
|
|
712498
712498
|
const matched = this.partsMatch(globParts[i2], globParts[j3], !this.preserveMultipleSlashes);
|
|
712499
|
-
if (
|
|
712500
|
-
|
|
712501
|
-
|
|
712502
|
-
|
|
712499
|
+
if (matched) {
|
|
712500
|
+
globParts[i2] = [];
|
|
712501
|
+
globParts[j3] = matched;
|
|
712502
|
+
break;
|
|
712503
|
+
}
|
|
712503
712504
|
}
|
|
712504
712505
|
}
|
|
712505
712506
|
return globParts.filter((gs) => gs.length);
|