@storm-software/workspace-tools 1.293.0 → 1.293.1

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,32 @@
2
2
 
3
3
  # Changelog for Storm Ops - Workspace Tools
4
4
 
5
+ ## [1.293.0](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.293.0) (11/13/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Reformat workspace files
10
+ ([41b537422](https://github.com/storm-software/storm-ops/commit/41b537422))
11
+ - **monorepo:** Regenerate README markdown files
12
+ ([0ff6533a0](https://github.com/storm-software/storm-ops/commit/0ff6533a0))
13
+
14
+ ### Features
15
+
16
+ - **workspace-tools:** Added the `napi` executor to build rust bindings
17
+ ([5f075ee38](https://github.com/storm-software/storm-ops/commit/5f075ee38))
18
+
19
+ ### Updated Dependencies
20
+
21
+ - Updated **testing-tools** to **v1.119.30**
22
+ - Updated **config-tools** to **v1.188.30**
23
+ - Updated **pnpm-tools** to **v0.6.30**
24
+ - Updated **npm-tools** to **v0.5.30**
25
+ - Updated **prettier** to **v0.57.30**
26
+ - Updated **esbuild** to **v0.53.30**
27
+ - Updated **unbuild** to **v0.57.30**
28
+ - Updated **config** to **v1.134.30**
29
+ - Updated **tsdown** to **v0.45.30**
30
+
5
31
  ## [1.292.29](https://github.com/storm-software/storm-ops/releases/tag/workspace-tools%401.292.29) (11/12/2025)
6
32
 
7
33
  ### Miscellaneous
package/README.md CHANGED
@@ -40,7 +40,6 @@ 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
-
44
43
  ## Table of Contents
45
44
 
46
45
  - [Storm Workspace Tools](#storm-workspace-tools)
package/dist/executors.js CHANGED
@@ -26,10 +26,10 @@ var _chunkEECJXHDAjs = require('./chunk-EECJXHDA.js');
26
26
  var _chunk5N7GGHPMjs = require('./chunk-5N7GGHPM.js');
27
27
 
28
28
 
29
- var _chunkIUDAADGVjs = require('./chunk-IUDAADGV.js');
29
+ var _chunkQEGJ4PKWjs = require('./chunk-QEGJ4PKW.js');
30
30
 
31
31
 
32
- var _chunkQEGJ4PKWjs = require('./chunk-QEGJ4PKW.js');
32
+ var _chunkIUDAADGVjs = require('./chunk-IUDAADGV.js');
33
33
 
34
34
 
35
35
  var _chunkHD4WVBQRjs = require('./chunk-HD4WVBQR.js');
@@ -24,12 +24,12 @@ import {
24
24
  import {
25
25
  cargoClippyExecutor
26
26
  } from "./chunk-332US6XA.mjs";
27
- import {
28
- cargoFormatExecutor
29
- } from "./chunk-HT7FNLPL.mjs";
30
27
  import {
31
28
  cargoDocExecutor
32
29
  } from "./chunk-6JX3VJQY.mjs";
30
+ import {
31
+ cargoFormatExecutor
32
+ } from "./chunk-HT7FNLPL.mjs";
33
33
  import {
34
34
  getRegistryVersion
35
35
  } from "./chunk-H4EFSMAS.mjs";
package/dist/index.js CHANGED
@@ -83,10 +83,10 @@ var _chunkEECJXHDAjs = require('./chunk-EECJXHDA.js');
83
83
  var _chunk5N7GGHPMjs = require('./chunk-5N7GGHPM.js');
84
84
 
85
85
 
86
- var _chunkIUDAADGVjs = require('./chunk-IUDAADGV.js');
86
+ var _chunkQEGJ4PKWjs = require('./chunk-QEGJ4PKW.js');
87
87
 
88
88
 
89
- var _chunkQEGJ4PKWjs = require('./chunk-QEGJ4PKW.js');
89
+ var _chunkIUDAADGVjs = require('./chunk-IUDAADGV.js');
90
90
 
91
91
 
92
92
  var _chunkHD4WVBQRjs = require('./chunk-HD4WVBQR.js');
package/dist/index.mjs CHANGED
@@ -81,12 +81,12 @@ import {
81
81
  import {
82
82
  cargoClippyExecutor
83
83
  } from "./chunk-332US6XA.mjs";
84
- import {
85
- cargoFormatExecutor
86
- } from "./chunk-HT7FNLPL.mjs";
87
84
  import {
88
85
  cargoDocExecutor
89
86
  } from "./chunk-6JX3VJQY.mjs";
87
+ import {
88
+ cargoFormatExecutor
89
+ } from "./chunk-HT7FNLPL.mjs";
90
90
  import {
91
91
  getRegistryVersion
92
92
  } from "./chunk-H4EFSMAS.mjs";
package/executors.json CHANGED
@@ -59,6 +59,11 @@
59
59
  "implementation": "./dist/src/executors/cargo-doc/executor",
60
60
  "schema": "./dist/src/executors/cargo-doc/schema.json",
61
61
  "description": "Create docs for a Rust project with Cargo Doc"
62
+ },
63
+ "napi": {
64
+ "implementation": "./dist/src/executors/napi/executor",
65
+ "schema": "./dist/src/executors/napi/schema.json",
66
+ "description": "Build Node.js native addons using N-API and Rust via the NAPI-RS framework"
62
67
  }
63
68
  }
64
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.293.0",
3
+ "version": "1.293.1",
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.30",
244
- "@storm-software/npm-tools": "^0.5.30",
245
- "@storm-software/pnpm-tools": "^0.6.30",
246
- "@storm-software/prettier": "^0.57.30",
247
- "@storm-software/tsdown": "^0.45.30",
248
- "@storm-software/unbuild": "^0.57.30",
243
+ "@storm-software/esbuild": "^0.53.31",
244
+ "@storm-software/npm-tools": "^0.5.31",
245
+ "@storm-software/pnpm-tools": "^0.6.31",
246
+ "@storm-software/prettier": "^0.57.31",
247
+ "@storm-software/tsdown": "^0.45.31",
248
+ "@storm-software/unbuild": "^0.57.31",
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": "9cb94503bd31113afe1893deb47dba3808c80e13"
273
+ "gitHead": "f21daf5d548f7a6c140f0c7d54bf58309aa2e4ae"
274
274
  }