@storm-software/workspace-tools 1.252.0 → 1.252.2

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 CHANGED
@@ -1,3 +1,19 @@
1
+ ## 1.252.2 (2025-02-06)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **linting-tools:** Ensure the config files are included in the package.json `files` list ([d4be09d8a](https://github.com/storm-software/storm-ops/commit/d4be09d8a))
6
+
7
+ ## 1.252.1 (2025-02-06)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **workspace-tools:** Resolved issue with invalid `lint-knip` targets ([167fa0122](https://github.com/storm-software/storm-ops/commit/167fa0122))
12
+
13
+ ### Miscellaneous
14
+
15
+ - **monorepo:** Regenerate README markdown files ([1b886df47](https://github.com/storm-software/storm-ops/commit/1b886df47))
16
+
1
17
  ## 1.252.0 (2025-02-06)
2
18
 
3
19
  ### 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
- [![Version](https://img.shields.io/badge/version-1.251.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.252.1-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -38,6 +38,7 @@ var createNodes = [
38
38
  }
39
39
  const nxJson = _nxjsonjs.readNxJson.call(void 0, ctx.workspaceRoot);
40
40
  const targets = _packagejson.readTargetsFromPackageJson.call(void 0, packageJson, nxJson);
41
+ const relativePath = _path.relative.call(void 0, _path.dirname.call(void 0, file), ctx.workspaceRoot);
41
42
  if (!targets["lint-knip"]) {
42
43
  targets["lint-knip"] = {
43
44
  cache: true,
@@ -55,7 +56,7 @@ var createNodes = [
55
56
  ],
56
57
  executor: "nx:run-commands",
57
58
  options: {
58
- command: 'pnpm exec knip --config "node_modules/@storm-software/linting-tools/knip/config.json" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "node_modules/.cache/knip/{projectRoot}"'
59
+ command: `pnpm exec knip --config "${_path.join.call(void 0, relativePath, "node_modules/@storm-software/linting-tools/knip/config.json")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${_path.join.call(void 0, relativePath, "node_modules/.cache/knip/{projectRoot}")}"`
59
60
  }
60
61
  };
61
62
  }
@@ -13,7 +13,7 @@ import {
13
13
 
14
14
  // src/plugins/typescript/project-config.ts
15
15
  import { existsSync } from "node:fs";
16
- import { dirname, join } from "node:path";
16
+ import { dirname, join, relative } from "node:path";
17
17
  import { readNxJson } from "nx/src/config/nx-json.js";
18
18
  import { readJsonFile } from "nx/src/utils/fileutils";
19
19
  import { readTargetsFromPackageJson } from "nx/src/utils/package-json";
@@ -38,6 +38,7 @@ var createNodes = [
38
38
  }
39
39
  const nxJson = readNxJson(ctx.workspaceRoot);
40
40
  const targets = readTargetsFromPackageJson(packageJson, nxJson);
41
+ const relativePath = relative(dirname(file), ctx.workspaceRoot);
41
42
  if (!targets["lint-knip"]) {
42
43
  targets["lint-knip"] = {
43
44
  cache: true,
@@ -55,7 +56,7 @@ var createNodes = [
55
56
  ],
56
57
  executor: "nx:run-commands",
57
58
  options: {
58
- command: 'pnpm exec knip --config "node_modules/@storm-software/linting-tools/knip/config.json" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "node_modules/.cache/knip/{projectRoot}"'
59
+ command: `pnpm exec knip --config "${join(relativePath, "node_modules/@storm-software/linting-tools/knip/config.json")}" --tsConfig "{projectRoot}/tsconfig.json" --directory "{projectRoot}" --fix --cache --cache-location "${join(relativePath, "node_modules/.cache/knip/{projectRoot}")}"`
59
60
  }
60
61
  };
61
62
  }
package/dist/executors.js CHANGED
@@ -1,41 +1,41 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-3J53KHVV.js');
2
2
 
3
3
 
4
- var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
4
+ var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
5
5
 
6
6
 
7
- var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
7
+ var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
8
8
 
9
9
 
10
- var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
10
+ var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
11
+
12
+
13
+ var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
11
14
 
12
15
 
13
16
  var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
14
17
 
15
18
 
16
- var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
19
+ var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
17
20
 
18
21
 
19
- var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
22
+ var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
20
23
 
21
24
 
22
25
  var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
23
26
  require('./chunk-R2NBU264.js');
24
27
 
25
28
 
26
- var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
29
+ var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
27
30
 
28
31
 
29
- var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
32
+ var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
30
33
 
31
34
 
32
- var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
35
+ var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
33
36
 
34
37
 
35
38
  var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
36
-
37
-
38
- var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
39
39
  require('./chunk-CUPARBOS.js');
40
40
  require('./chunk-ULBTYC2B.js');
41
41
  require('./chunk-ZMFVKBRM.js');
@@ -1,41 +1,41 @@
1
1
  import "./chunk-V7YZ3666.mjs";
2
+ import {
3
+ typiaExecutorFn
4
+ } from "./chunk-2KNHEXJQ.mjs";
5
+ import {
6
+ LARGE_BUFFER
7
+ } from "./chunk-VBPOZVKY.mjs";
2
8
  import {
3
9
  sizeLimitExecutorFn
4
10
  } from "./chunk-KM47X5XW.mjs";
5
11
  import {
6
12
  tsdownExecutorFn
7
13
  } from "./chunk-UF3YMASN.mjs";
8
- import {
9
- typiaExecutorFn
10
- } from "./chunk-2KNHEXJQ.mjs";
11
14
  import {
12
15
  unbuildExecutorFn
13
16
  } from "./chunk-7H4PXXWW.mjs";
17
+ import {
18
+ cargoFormatExecutor
19
+ } from "./chunk-YILBFUCI.mjs";
14
20
  import {
15
21
  getRegistryVersion
16
22
  } from "./chunk-XUYTELRS.mjs";
17
- import {
18
- LARGE_BUFFER
19
- } from "./chunk-VBPOZVKY.mjs";
20
23
  import {
21
24
  esbuildExecutorFn
22
25
  } from "./chunk-OA6GD45B.mjs";
23
26
  import "./chunk-N2P34ZQV.mjs";
27
+ import {
28
+ cargoCheckExecutor
29
+ } from "./chunk-P4ZEGEQX.mjs";
24
30
  import {
25
31
  cargoBuildExecutor
26
32
  } from "./chunk-RSFH5OLL.mjs";
27
33
  import {
28
34
  cargoClippyExecutor
29
35
  } from "./chunk-57LRWY5U.mjs";
30
- import {
31
- cargoFormatExecutor
32
- } from "./chunk-YILBFUCI.mjs";
33
36
  import {
34
37
  cargoDocExecutor
35
38
  } from "./chunk-7AXJ27FU.mjs";
36
- import {
37
- cargoCheckExecutor
38
- } from "./chunk-P4ZEGEQX.mjs";
39
39
  import "./chunk-JB4KCMSB.mjs";
40
40
  import "./chunk-XK3FSWMA.mjs";
41
41
  import "./chunk-EIM3O6HY.mjs";
@@ -1,6 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});require('./chunk-INERRJ6Q.js');
2
2
 
3
3
 
4
+ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
5
+
6
+
4
7
  var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
5
8
 
6
9
 
@@ -17,9 +20,6 @@ var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
17
20
 
18
21
 
19
22
  var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
20
-
21
-
22
- var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
23
23
  require('./chunk-RBU35LQW.js');
24
24
  require('./chunk-HI4G4OOG.js');
25
25
  require('./chunk-7YRW5HNX.js');
@@ -1,4 +1,7 @@
1
1
  import "./chunk-RLIZVCIN.mjs";
2
+ import {
3
+ neutralLibraryGeneratorFn
4
+ } from "./chunk-APSDUSBR.mjs";
2
5
  import {
3
6
  nodeLibraryGeneratorFn
4
7
  } from "./chunk-Q6OBRMZG.mjs";
@@ -17,9 +20,6 @@ import {
17
20
  import {
18
21
  initGenerator
19
22
  } from "./chunk-X3GPVZMH.mjs";
20
- import {
21
- neutralLibraryGeneratorFn
22
- } from "./chunk-APSDUSBR.mjs";
23
23
  import "./chunk-F2GYXQ5H.mjs";
24
24
  import "./chunk-EK75QNMS.mjs";
25
25
  import "./chunk-W3SWWT4A.mjs";
package/dist/index.js CHANGED
@@ -48,43 +48,43 @@ var _chunkGKL4BY2Yjs = require('./chunk-GKL4BY2Y.js');
48
48
  require('./chunk-3J53KHVV.js');
49
49
 
50
50
 
51
- var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
51
+ var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
52
52
 
53
53
 
54
- var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
54
+ var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
55
55
 
56
56
 
57
- var _chunkJXSTSZSGjs = require('./chunk-JXSTSZSG.js');
57
+ var _chunkNXGJNB3Cjs = require('./chunk-NXGJNB3C.js');
58
+
59
+
60
+ var _chunkFMOIAVZVjs = require('./chunk-FMOIAVZV.js');
58
61
 
59
62
 
60
63
  var _chunkWGTIKGAEjs = require('./chunk-WGTIKGAE.js');
61
64
 
62
65
 
63
- var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
66
+ var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
64
67
 
65
68
 
66
- var _chunkCQAGLRNYjs = require('./chunk-CQAGLRNY.js');
69
+ var _chunkGGGO542Mjs = require('./chunk-GGGO542M.js');
67
70
 
68
71
 
69
72
  var _chunkWL7UV3YXjs = require('./chunk-WL7UV3YX.js');
70
73
  require('./chunk-R2NBU264.js');
71
74
 
72
75
 
73
- var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
76
+ var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
74
77
 
75
78
 
76
- var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
79
+ var _chunkK434EGC4js = require('./chunk-K434EGC4.js');
77
80
 
78
81
 
79
- var _chunk5O6RWCBQjs = require('./chunk-5O6RWCBQ.js');
82
+ var _chunkG7HTMCQKjs = require('./chunk-G7HTMCQK.js');
80
83
 
81
84
 
82
85
  var _chunk4SJW3KRVjs = require('./chunk-4SJW3KRV.js');
83
86
 
84
87
 
85
- var _chunk4AMZUCHLjs = require('./chunk-4AMZUCHL.js');
86
-
87
-
88
88
  var _chunkCUPARBOSjs = require('./chunk-CUPARBOS.js');
89
89
 
90
90
 
@@ -100,6 +100,9 @@ var _chunkULBTYC2Bjs = require('./chunk-ULBTYC2B.js');
100
100
  require('./chunk-INERRJ6Q.js');
101
101
 
102
102
 
103
+ var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
104
+
105
+
103
106
  var _chunkWDK2FJUHjs = require('./chunk-WDK2FJUH.js');
104
107
 
105
108
 
@@ -118,9 +121,6 @@ var _chunkKJPUYQEZjs = require('./chunk-KJPUYQEZ.js');
118
121
  var _chunk3IZ3O4OKjs = require('./chunk-3IZ3O4OK.js');
119
122
 
120
123
 
121
- var _chunkSJNJ6TCDjs = require('./chunk-SJNJ6TCD.js');
122
-
123
-
124
124
 
125
125
 
126
126
 
package/dist/index.mjs CHANGED
@@ -46,43 +46,43 @@ import {
46
46
  getProjectConfigurations
47
47
  } from "./chunk-V7IOKRJA.mjs";
48
48
  import "./chunk-V7YZ3666.mjs";
49
+ import {
50
+ typiaExecutorFn
51
+ } from "./chunk-2KNHEXJQ.mjs";
52
+ import {
53
+ LARGE_BUFFER
54
+ } from "./chunk-VBPOZVKY.mjs";
49
55
  import {
50
56
  sizeLimitExecutorFn
51
57
  } from "./chunk-KM47X5XW.mjs";
52
58
  import {
53
59
  tsdownExecutorFn
54
60
  } from "./chunk-UF3YMASN.mjs";
55
- import {
56
- typiaExecutorFn
57
- } from "./chunk-2KNHEXJQ.mjs";
58
61
  import {
59
62
  unbuildExecutorFn
60
63
  } from "./chunk-7H4PXXWW.mjs";
64
+ import {
65
+ cargoFormatExecutor
66
+ } from "./chunk-YILBFUCI.mjs";
61
67
  import {
62
68
  getRegistryVersion
63
69
  } from "./chunk-XUYTELRS.mjs";
64
- import {
65
- LARGE_BUFFER
66
- } from "./chunk-VBPOZVKY.mjs";
67
70
  import {
68
71
  esbuildExecutorFn
69
72
  } from "./chunk-OA6GD45B.mjs";
70
73
  import "./chunk-N2P34ZQV.mjs";
74
+ import {
75
+ cargoCheckExecutor
76
+ } from "./chunk-P4ZEGEQX.mjs";
71
77
  import {
72
78
  cargoBuildExecutor
73
79
  } from "./chunk-RSFH5OLL.mjs";
74
80
  import {
75
81
  cargoClippyExecutor
76
82
  } from "./chunk-57LRWY5U.mjs";
77
- import {
78
- cargoFormatExecutor
79
- } from "./chunk-YILBFUCI.mjs";
80
83
  import {
81
84
  cargoDocExecutor
82
85
  } from "./chunk-7AXJ27FU.mjs";
83
- import {
84
- cargoCheckExecutor
85
- } from "./chunk-P4ZEGEQX.mjs";
86
86
  import {
87
87
  pnpmCatalogUpdate
88
88
  } from "./chunk-JB4KCMSB.mjs";
@@ -98,6 +98,9 @@ import {
98
98
  runProcess
99
99
  } from "./chunk-XK3FSWMA.mjs";
100
100
  import "./chunk-RLIZVCIN.mjs";
101
+ import {
102
+ neutralLibraryGeneratorFn
103
+ } from "./chunk-APSDUSBR.mjs";
101
104
  import {
102
105
  nodeLibraryGeneratorFn
103
106
  } from "./chunk-Q6OBRMZG.mjs";
@@ -116,9 +119,6 @@ import {
116
119
  import {
117
120
  initGenerator
118
121
  } from "./chunk-X3GPVZMH.mjs";
119
- import {
120
- neutralLibraryGeneratorFn
121
- } from "./chunk-APSDUSBR.mjs";
122
122
  import {
123
123
  createProjectTsConfigJson,
124
124
  getOutputPath,
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk2R664EG4js = require('../../../chunk-2R664EG4.js');
4
+ var _chunkFUXJ4XG3js = require('../../../chunk-FUXJ4XG3.js');
5
5
  require('../../../chunk-UF6KFXG5.js');
6
6
  require('../../../chunk-7YRW5HNX.js');
7
7
  require('../../../chunk-3GQAWCBQ.js');
8
8
 
9
9
 
10
10
 
11
- exports.createNodes = _chunk2R664EG4js.createNodes; exports.name = _chunk2R664EG4js.name;
11
+ exports.createNodes = _chunkFUXJ4XG3js.createNodes; exports.name = _chunkFUXJ4XG3js.name;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createNodes,
3
3
  name
4
- } from "../../../chunk-EMQY64H6.mjs";
4
+ } from "../../../chunk-OE2NLRDG.mjs";
5
5
  import "../../../chunk-HUCDWLQ3.mjs";
6
6
  import "../../../chunk-W3SWWT4A.mjs";
7
7
  import "../../../chunk-R7DU2APC.mjs";
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunk2R664EG4js = require('../../../chunk-2R664EG4.js');
4
+ var _chunkFUXJ4XG3js = require('../../../chunk-FUXJ4XG3.js');
5
5
  require('../../../chunk-UF6KFXG5.js');
6
6
  require('../../../chunk-7YRW5HNX.js');
7
7
  require('../../../chunk-3GQAWCBQ.js');
8
8
 
9
9
 
10
10
 
11
- exports.createNodes = _chunk2R664EG4js.createNodes; exports.name = _chunk2R664EG4js.name;
11
+ exports.createNodes = _chunkFUXJ4XG3js.createNodes; exports.name = _chunkFUXJ4XG3js.name;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createNodes,
3
3
  name
4
- } from "../../../chunk-EMQY64H6.mjs";
4
+ } from "../../../chunk-OE2NLRDG.mjs";
5
5
  import "../../../chunk-HUCDWLQ3.mjs";
6
6
  import "../../../chunk-W3SWWT4A.mjs";
7
7
  import "../../../chunk-R7DU2APC.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.252.0",
3
+ "version": "1.252.2",
4
4
  "description": "Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.",
5
5
  "repository": {
6
6
  "type": "github",