@storm-software/workspace-tools 1.169.0 → 1.171.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 +17 -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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 1.171.0 (2024-09-03)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **linting-tools:** Taplo toml formatting improvements
|
|
6
|
+
([1e84182b](https://github.com/storm-software/storm-ops/commit/1e84182b))
|
|
7
|
+
|
|
8
|
+
## 1.170.0 (2024-09-03)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **k8s-tools:** Added `container-publish` executor and `docker` plugin
|
|
13
|
+
([36d4d1d0](https://github.com/storm-software/storm-ops/commit/36d4d1d0))
|
|
14
|
+
|
|
15
|
+
- **storm-ops:** Upgrade the Nx workspace versions
|
|
16
|
+
([15cb7ee2](https://github.com/storm-software/storm-ops/commit/15cb7ee2))
|
|
17
|
+
|
|
1
18
|
## 1.169.0 (2024-09-02)
|
|
2
19
|
|
|
3
20
|
### Features
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/index.js
CHANGED
|
@@ -823050,10 +823050,10 @@ var getRegistryVersion = (name, version3, registry) => {
|
|
|
823050
823050
|
var import_devkit4 = require("@nx/devkit");
|
|
823051
823051
|
var import_fs_extra = __toESM(require_lib3());
|
|
823052
823052
|
|
|
823053
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823053
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
823054
823054
|
var import_brace_expansion = __toESM(require_brace_expansion(), 1);
|
|
823055
823055
|
|
|
823056
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823056
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/assert-valid-pattern.js
|
|
823057
823057
|
var MAX_PATTERN_LENGTH = 1024 * 64;
|
|
823058
823058
|
var assertValidPattern = (pattern) => {
|
|
823059
823059
|
if (typeof pattern !== "string") {
|
|
@@ -823064,7 +823064,7 @@ var assertValidPattern = (pattern) => {
|
|
|
823064
823064
|
}
|
|
823065
823065
|
};
|
|
823066
823066
|
|
|
823067
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823067
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/brace-expressions.js
|
|
823068
823068
|
var posixClasses = {
|
|
823069
823069
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
823070
823070
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -823173,12 +823173,12 @@ var parseClass = (glob2, position) => {
|
|
|
823173
823173
|
return [comb, uflag, endPos - pos, true];
|
|
823174
823174
|
};
|
|
823175
823175
|
|
|
823176
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823176
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/unescape.js
|
|
823177
823177
|
var unescape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
823178
823178
|
return windowsPathsNoEscape ? s2.replace(/\[([^\/\\])\]/g, "$1") : s2.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
|
|
823179
823179
|
};
|
|
823180
823180
|
|
|
823181
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823181
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/ast.js
|
|
823182
823182
|
var types2 = /* @__PURE__ */ new Set(["!", "?", "+", "*", "@"]);
|
|
823183
823183
|
var isExtglobType = (c) => types2.has(c);
|
|
823184
823184
|
var startNoTraversal = "(?!(?:^|/)\\.\\.?(?:$|/))";
|
|
@@ -823657,12 +823657,12 @@ var AST = class _AST {
|
|
|
823657
823657
|
}
|
|
823658
823658
|
};
|
|
823659
823659
|
|
|
823660
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823660
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/escape.js
|
|
823661
823661
|
var escape2 = (s2, { windowsPathsNoEscape = false } = {}) => {
|
|
823662
823662
|
return windowsPathsNoEscape ? s2.replace(/[?*()[\]]/g, "[$&]") : s2.replace(/[?*()[\]\\]/g, "\\$&");
|
|
823663
823663
|
};
|
|
823664
823664
|
|
|
823665
|
-
// node_modules/.pnpm/minimatch@9.0.
|
|
823665
|
+
// node_modules/.pnpm/minimatch@9.0.5/node_modules/minimatch/dist/esm/index.js
|
|
823666
823666
|
var minimatch = (p2, pattern, options = {}) => {
|
|
823667
823667
|
assertValidPattern(pattern);
|
|
823668
823668
|
if (!options.nocomment && pattern.charAt(0) === "#") {
|
|
@@ -824083,10 +824083,11 @@ var Minimatch = class {
|
|
|
824083
824083
|
for (let i2 = 0; i2 < globParts.length - 1; i2++) {
|
|
824084
824084
|
for (let j3 = i2 + 1; j3 < globParts.length; j3++) {
|
|
824085
824085
|
const matched = this.partsMatch(globParts[i2], globParts[j3], !this.preserveMultipleSlashes);
|
|
824086
|
-
if (
|
|
824087
|
-
|
|
824088
|
-
|
|
824089
|
-
|
|
824086
|
+
if (matched) {
|
|
824087
|
+
globParts[i2] = [];
|
|
824088
|
+
globParts[j3] = matched;
|
|
824089
|
+
break;
|
|
824090
|
+
}
|
|
824090
824091
|
}
|
|
824091
824092
|
}
|
|
824092
824093
|
return globParts.filter((gs) => gs.length);
|