@storm-software/workspace-tools 1.293.2 → 1.293.3

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
@@ -2,6 +2,37 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.293.2](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.293.2) (11/13/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **workspace-tools:** Call `correctPaths` prior to updating `napi` path options
10
+ ([accfa08ed](https://github.com/storm-software/storm-ops/commit/accfa08ed))
11
+ - **monorepo:** Regenerate README markdown files
12
+ ([68959f768](https://github.com/storm-software/storm-ops/commit/68959f768))
13
+
14
+ ### Bug Fixes
15
+
16
+ - **workspace-tools:** Ensure all `napi` paths use `workspaceRoot` as base
17
+ directory
18
+ ([c5d7b6732](https://github.com/storm-software/storm-ops/commit/c5d7b6732))
19
+ - **workspace-tools:** Ensure `napi` executor path options are relative to `cwd`
20
+ ([864e736d9](https://github.com/storm-software/storm-ops/commit/864e736d9))
21
+ - **workspace-tools:** Added logic to normalize `napi-build` options
22
+ ([ece6e259b](https://github.com/storm-software/storm-ops/commit/ece6e259b))
23
+
24
+ ### Updated Dependencies
25
+
26
+ - Updated **testing-tools** to **v1.119.32**
27
+ - Updated **config-tools** to **v1.188.32**
28
+ - Updated **pnpm-tools** to **v0.6.32**
29
+ - Updated **npm-tools** to **v0.5.32**
30
+ - Updated **prettier** to **v0.57.32**
31
+ - Updated **esbuild** to **v0.53.32**
32
+ - Updated **unbuild** to **v0.57.32**
33
+ - Updated **config** to **v1.134.32**
34
+ - Updated **tsdown** to **v0.45.32**
35
+
5
36
  ## [1.293.1](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.293.1) (11/13/2025)
6
37
 
7
38
  ### Miscellaneous
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.293.0-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.293.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 -->
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
+
43
44
  ## Table of Contents
44
45
 
45
46
  - [Storm Workspace Tools](#storm-workspace-tools)
@@ -10,6 +10,7 @@ interface NapiExecutorSchema {
10
10
  *
11
11
  * The path to the output directory
12
12
  *
13
+ * @default "{sourceRoot}"
13
14
  *
14
15
  * @format path
15
16
  */
@@ -10,6 +10,7 @@ interface NapiExecutorSchema {
10
10
  *
11
11
  * The path to the output directory
12
12
  *
13
+ * @default "{sourceRoot}"
13
14
  *
14
15
  * @format path
15
16
  */
@@ -6,7 +6,7 @@ export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './exec
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-DvLQW7fm.mjs';
7
7
  export { C as CleanPackageExecutorSchema } from './schema.d-CRz8jtUC.mjs';
8
8
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-QrMSMiZ3.mjs';
9
- export { N as NapiExecutorSchema, n as napiExecutor } from './executor-Bx3N1lzV.mjs';
9
+ export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DQSroBR3.mjs';
10
10
  export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-0ivVjqma.mjs';
11
11
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-BxXLIcSp.mjs';
12
12
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-BCIaWtDH.mjs';
@@ -6,7 +6,7 @@ export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './exec
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-DvLQW7fm.js';
7
7
  export { C as CleanPackageExecutorSchema } from './schema.d-CRz8jtUC.js';
8
8
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Ji6z3dQ5.js';
9
- export { N as NapiExecutorSchema, n as napiExecutor } from './executor-NLb4xNfW.js';
9
+ export { N as NapiExecutorSchema, n as napiExecutor } from './executor-B71Pg3y0.js';
10
10
  export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-0ivVjqma.js';
11
11
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor--XDIJdLD.js';
12
12
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-BWgGR4di.js';
package/dist/index.d.mts CHANGED
@@ -6,7 +6,7 @@ export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './exec
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-DvLQW7fm.mjs';
7
7
  export { C as CleanPackageExecutorSchema } from './schema.d-CRz8jtUC.mjs';
8
8
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-QrMSMiZ3.mjs';
9
- export { N as NapiExecutorSchema, n as napiExecutor } from './executor-Bx3N1lzV.mjs';
9
+ export { N as NapiExecutorSchema, n as napiExecutor } from './executor-DQSroBR3.mjs';
10
10
  export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-0ivVjqma.mjs';
11
11
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor-BxXLIcSp.mjs';
12
12
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-BCIaWtDH.mjs';
package/dist/index.d.ts CHANGED
@@ -6,7 +6,7 @@ export { C as CargoFormatExecutorSchema, c as cargoFormatExecutor } from './exec
6
6
  export { C as CargoPublishExecutorSchema, g as getRegistryVersion } from './executor-DvLQW7fm.js';
7
7
  export { C as CleanPackageExecutorSchema } from './schema.d-CRz8jtUC.js';
8
8
  export { E as ESBuildExecutorSchema, e as esbuildExecutorFn } from './executor-Ji6z3dQ5.js';
9
- export { N as NapiExecutorSchema, n as napiExecutor } from './executor-NLb4xNfW.js';
9
+ export { N as NapiExecutorSchema, n as napiExecutor } from './executor-B71Pg3y0.js';
10
10
  export { L as LARGE_BUFFER, N as NpmPublishExecutorSchema } from './executor-0ivVjqma.js';
11
11
  export { S as SizeLimitExecutorSchema, s as sizeLimitExecutorFn } from './executor--XDIJdLD.js';
12
12
  export { T as TSDownExecutorSchema, t as tsdownExecutorFn } from './executor-BWgGR4di.js';
@@ -1,5 +1,5 @@
1
1
  import '@nx/devkit';
2
2
  import '../../../types-DeaeRt7S.mjs';
3
- export { _ as default, n as napiExecutor } from '../../../executor-Bx3N1lzV.mjs';
3
+ export { _ as default, n as napiExecutor } from '../../../executor-DQSroBR3.mjs';
4
4
  import 'zod';
5
5
  import 'zod/mini';
@@ -1,5 +1,5 @@
1
1
  import '@nx/devkit';
2
2
  import '../../../types-DeaeRt7S.js';
3
- export { _ as default, n as napiExecutor } from '../../../executor-NLb4xNfW.js';
3
+ export { _ as default, n as napiExecutor } from '../../../executor-B71Pg3y0.js';
4
4
  import 'zod';
5
5
  import 'zod/mini';
@@ -8,6 +8,7 @@ export interface NapiExecutorSchema {
8
8
  *
9
9
  * The path to the output directory
10
10
  *
11
+ * @default "{sourceRoot}"
11
12
  *
12
13
  * @format path
13
14
  */
@@ -15,7 +15,8 @@
15
15
  "type": "string",
16
16
  "format": "path",
17
17
  "description": "The path to the output directory",
18
- "id": "#outputPath"
18
+ "id": "#outputPath",
19
+ "default": "{sourceRoot}"
19
20
  },
20
21
  "package": {
21
22
  "title": "Package Name",
@@ -225,6 +226,7 @@
225
226
  },
226
227
  "type": "object",
227
228
  "default": {
229
+ "outputPath": "{sourceRoot}",
228
230
  "toolchain": "stable",
229
231
  "jsBinding": "binding.js",
230
232
  "dts": "binding.d.ts",
@@ -19,7 +19,8 @@ var untyped_default = _untyped.defineUntypedSchema.call(void 0, {
19
19
  type: "string",
20
20
  format: "path",
21
21
  description: "The path to the output directory"
22
- }
22
+ },
23
+ $default: "{sourceRoot}"
23
24
  },
24
25
  jsBinding: {
25
26
  $schema: {
@@ -20,7 +20,8 @@ var untyped_default = defineUntypedSchema({
20
20
  type: "string",
21
21
  format: "path",
22
22
  description: "The path to the output directory"
23
- }
23
+ },
24
+ $default: "{sourceRoot}"
24
25
  },
25
26
  jsBinding: {
26
27
  $schema: {
@@ -6,6 +6,7 @@
6
6
 
7
7
  ## `outputPath`
8
8
  - **Type**: `string`
9
+ - **Default**: `"{sourceRoot}"`
9
10
 
10
11
  > Output Path
11
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.293.2",
3
+ "version": "1.293.3",
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",
@@ -240,12 +240,12 @@
240
240
  "@size-limit/esbuild": "11.1.4",
241
241
  "@size-limit/esbuild-why": "11.1.4",
242
242
  "@size-limit/file": "11.1.4",
243
- "@storm-software/esbuild": "^0.53.32",
244
- "@storm-software/npm-tools": "^0.5.32",
245
- "@storm-software/pnpm-tools": "^0.6.32",
246
- "@storm-software/prettier": "^0.57.32",
247
- "@storm-software/tsdown": "^0.45.32",
248
- "@storm-software/unbuild": "^0.57.32",
243
+ "@storm-software/esbuild": "^0.53.33",
244
+ "@storm-software/npm-tools": "^0.5.33",
245
+ "@storm-software/pnpm-tools": "^0.6.33",
246
+ "@storm-software/prettier": "^0.57.33",
247
+ "@storm-software/tsdown": "^0.45.33",
248
+ "@storm-software/unbuild": "^0.57.33",
249
249
  "fs-extra": "11.2.0",
250
250
  "glob": "^11.0.3",
251
251
  "jiti": "2.4.2",
@@ -270,5 +270,5 @@
270
270
  "publishConfig": { "access": "public" },
271
271
  "executors": "./executors.json",
272
272
  "generators": "./generators.json",
273
- "gitHead": "602be70a267e6bd8ac6c4c5e922151a6b48aa748"
273
+ "gitHead": "5c88ccffba3683f10a8dcc98422964880995e3b2"
274
274
  }