@storm-software/esbuild 0.31.17 → 0.31.19

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/dist/clean.d.cts CHANGED
@@ -14,6 +14,7 @@ declare const StormConfigSchema: z.ZodObject<{
14
14
  homepage: z.ZodDefault<z.ZodString>;
15
15
  docs: z.ZodDefault<z.ZodString>;
16
16
  licensing: z.ZodDefault<z.ZodString>;
17
+ contact: z.ZodDefault<z.ZodString>;
17
18
  branch: z.ZodDefault<z.ZodString>;
18
19
  preid: z.ZodOptional<z.ZodString>;
19
20
  owner: z.ZodDefault<z.ZodString>;
@@ -27,6 +28,41 @@ declare const StormConfigSchema: z.ZodObject<{
27
28
  name?: string | undefined;
28
29
  email?: string | undefined;
29
30
  }>;
31
+ release: z.ZodObject<{
32
+ banner: z.ZodDefault<z.ZodString>;
33
+ header: z.ZodOptional<z.ZodString>;
34
+ footer: z.ZodDefault<z.ZodString>;
35
+ }, "strip", z.ZodTypeAny, {
36
+ banner: string;
37
+ footer: string;
38
+ header?: string | undefined;
39
+ }, {
40
+ banner?: string | undefined;
41
+ footer?: string | undefined;
42
+ header?: string | undefined;
43
+ }>;
44
+ account: z.ZodObject<{
45
+ twitter: z.ZodDefault<z.ZodString>;
46
+ discord: z.ZodDefault<z.ZodString>;
47
+ telegram: z.ZodDefault<z.ZodString>;
48
+ slack: z.ZodDefault<z.ZodString>;
49
+ medium: z.ZodDefault<z.ZodString>;
50
+ github: z.ZodDefault<z.ZodString>;
51
+ }, "strip", z.ZodTypeAny, {
52
+ twitter: string;
53
+ discord: string;
54
+ telegram: string;
55
+ slack: string;
56
+ medium: string;
57
+ github: string;
58
+ }, {
59
+ twitter?: string | undefined;
60
+ discord?: string | undefined;
61
+ telegram?: string | undefined;
62
+ slack?: string | undefined;
63
+ medium?: string | undefined;
64
+ github?: string | undefined;
65
+ }>;
30
66
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
31
67
  workspaceRoot: z.ZodDefault<z.ZodString>;
32
68
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -65,14 +101,14 @@ declare const StormConfigSchema: z.ZodObject<{
65
101
  cyclone: z.ZodOptional<z.ZodString>;
66
102
  container: z.ZodOptional<z.ZodString>;
67
103
  }, "strip", z.ZodTypeAny, {
68
- npm?: string | undefined;
69
104
  github?: string | undefined;
105
+ npm?: string | undefined;
70
106
  cargo?: string | undefined;
71
107
  cyclone?: string | undefined;
72
108
  container?: string | undefined;
73
109
  }, {
74
- npm?: string | undefined;
75
110
  github?: string | undefined;
111
+ npm?: string | undefined;
76
112
  cargo?: string | undefined;
77
113
  cyclone?: string | undefined;
78
114
  container?: string | undefined;
@@ -802,12 +838,26 @@ declare const StormConfigSchema: z.ZodObject<{
802
838
  homepage: string;
803
839
  docs: string;
804
840
  licensing: string;
841
+ contact: string;
805
842
  branch: string;
806
843
  owner: string;
807
844
  bot: {
808
845
  name: string;
809
846
  email: string;
810
847
  };
848
+ release: {
849
+ banner: string;
850
+ footer: string;
851
+ header?: string | undefined;
852
+ };
853
+ account: {
854
+ twitter: string;
855
+ discord: string;
856
+ telegram: string;
857
+ slack: string;
858
+ medium: string;
859
+ github: string;
860
+ };
811
861
  workspaceRoot: string;
812
862
  externalPackagePatterns: string[];
813
863
  skipCache: boolean;
@@ -823,8 +873,8 @@ declare const StormConfigSchema: z.ZodObject<{
823
873
  timezone: string;
824
874
  locale: string;
825
875
  registry: {
826
- npm?: string | undefined;
827
876
  github?: string | undefined;
877
+ npm?: string | undefined;
828
878
  cargo?: string | undefined;
829
879
  cyclone?: string | undefined;
830
880
  container?: string | undefined;
@@ -990,6 +1040,19 @@ declare const StormConfigSchema: z.ZodObject<{
990
1040
  name?: string | undefined;
991
1041
  email?: string | undefined;
992
1042
  };
1043
+ release: {
1044
+ banner?: string | undefined;
1045
+ footer?: string | undefined;
1046
+ header?: string | undefined;
1047
+ };
1048
+ account: {
1049
+ twitter?: string | undefined;
1050
+ discord?: string | undefined;
1051
+ telegram?: string | undefined;
1052
+ slack?: string | undefined;
1053
+ medium?: string | undefined;
1054
+ github?: string | undefined;
1055
+ };
993
1056
  directories: {
994
1057
  config?: string | undefined;
995
1058
  cache?: string | undefined;
@@ -1157,6 +1220,7 @@ declare const StormConfigSchema: z.ZodObject<{
1157
1220
  homepage?: string | undefined;
1158
1221
  docs?: string | undefined;
1159
1222
  licensing?: string | undefined;
1223
+ contact?: string | undefined;
1160
1224
  branch?: string | undefined;
1161
1225
  preid?: string | undefined;
1162
1226
  owner?: string | undefined;
@@ -1168,8 +1232,8 @@ declare const StormConfigSchema: z.ZodObject<{
1168
1232
  locale?: string | undefined;
1169
1233
  skipConfigLogging?: boolean | undefined;
1170
1234
  registry?: {
1171
- npm?: string | undefined;
1172
1235
  github?: string | undefined;
1236
+ npm?: string | undefined;
1173
1237
  cargo?: string | undefined;
1174
1238
  cyclone?: string | undefined;
1175
1239
  container?: string | undefined;
package/dist/clean.d.ts CHANGED
@@ -14,6 +14,7 @@ declare const StormConfigSchema: z.ZodObject<{
14
14
  homepage: z.ZodDefault<z.ZodString>;
15
15
  docs: z.ZodDefault<z.ZodString>;
16
16
  licensing: z.ZodDefault<z.ZodString>;
17
+ contact: z.ZodDefault<z.ZodString>;
17
18
  branch: z.ZodDefault<z.ZodString>;
18
19
  preid: z.ZodOptional<z.ZodString>;
19
20
  owner: z.ZodDefault<z.ZodString>;
@@ -27,6 +28,41 @@ declare const StormConfigSchema: z.ZodObject<{
27
28
  name?: string | undefined;
28
29
  email?: string | undefined;
29
30
  }>;
31
+ release: z.ZodObject<{
32
+ banner: z.ZodDefault<z.ZodString>;
33
+ header: z.ZodOptional<z.ZodString>;
34
+ footer: z.ZodDefault<z.ZodString>;
35
+ }, "strip", z.ZodTypeAny, {
36
+ banner: string;
37
+ footer: string;
38
+ header?: string | undefined;
39
+ }, {
40
+ banner?: string | undefined;
41
+ footer?: string | undefined;
42
+ header?: string | undefined;
43
+ }>;
44
+ account: z.ZodObject<{
45
+ twitter: z.ZodDefault<z.ZodString>;
46
+ discord: z.ZodDefault<z.ZodString>;
47
+ telegram: z.ZodDefault<z.ZodString>;
48
+ slack: z.ZodDefault<z.ZodString>;
49
+ medium: z.ZodDefault<z.ZodString>;
50
+ github: z.ZodDefault<z.ZodString>;
51
+ }, "strip", z.ZodTypeAny, {
52
+ twitter: string;
53
+ discord: string;
54
+ telegram: string;
55
+ slack: string;
56
+ medium: string;
57
+ github: string;
58
+ }, {
59
+ twitter?: string | undefined;
60
+ discord?: string | undefined;
61
+ telegram?: string | undefined;
62
+ slack?: string | undefined;
63
+ medium?: string | undefined;
64
+ github?: string | undefined;
65
+ }>;
30
66
  mode: z.ZodDefault<z.ZodEnum<["development", "staging", "production"]>>;
31
67
  workspaceRoot: z.ZodDefault<z.ZodString>;
32
68
  externalPackagePatterns: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
@@ -65,14 +101,14 @@ declare const StormConfigSchema: z.ZodObject<{
65
101
  cyclone: z.ZodOptional<z.ZodString>;
66
102
  container: z.ZodOptional<z.ZodString>;
67
103
  }, "strip", z.ZodTypeAny, {
68
- npm?: string | undefined;
69
104
  github?: string | undefined;
105
+ npm?: string | undefined;
70
106
  cargo?: string | undefined;
71
107
  cyclone?: string | undefined;
72
108
  container?: string | undefined;
73
109
  }, {
74
- npm?: string | undefined;
75
110
  github?: string | undefined;
111
+ npm?: string | undefined;
76
112
  cargo?: string | undefined;
77
113
  cyclone?: string | undefined;
78
114
  container?: string | undefined;
@@ -802,12 +838,26 @@ declare const StormConfigSchema: z.ZodObject<{
802
838
  homepage: string;
803
839
  docs: string;
804
840
  licensing: string;
841
+ contact: string;
805
842
  branch: string;
806
843
  owner: string;
807
844
  bot: {
808
845
  name: string;
809
846
  email: string;
810
847
  };
848
+ release: {
849
+ banner: string;
850
+ footer: string;
851
+ header?: string | undefined;
852
+ };
853
+ account: {
854
+ twitter: string;
855
+ discord: string;
856
+ telegram: string;
857
+ slack: string;
858
+ medium: string;
859
+ github: string;
860
+ };
811
861
  workspaceRoot: string;
812
862
  externalPackagePatterns: string[];
813
863
  skipCache: boolean;
@@ -823,8 +873,8 @@ declare const StormConfigSchema: z.ZodObject<{
823
873
  timezone: string;
824
874
  locale: string;
825
875
  registry: {
826
- npm?: string | undefined;
827
876
  github?: string | undefined;
877
+ npm?: string | undefined;
828
878
  cargo?: string | undefined;
829
879
  cyclone?: string | undefined;
830
880
  container?: string | undefined;
@@ -990,6 +1040,19 @@ declare const StormConfigSchema: z.ZodObject<{
990
1040
  name?: string | undefined;
991
1041
  email?: string | undefined;
992
1042
  };
1043
+ release: {
1044
+ banner?: string | undefined;
1045
+ footer?: string | undefined;
1046
+ header?: string | undefined;
1047
+ };
1048
+ account: {
1049
+ twitter?: string | undefined;
1050
+ discord?: string | undefined;
1051
+ telegram?: string | undefined;
1052
+ slack?: string | undefined;
1053
+ medium?: string | undefined;
1054
+ github?: string | undefined;
1055
+ };
993
1056
  directories: {
994
1057
  config?: string | undefined;
995
1058
  cache?: string | undefined;
@@ -1157,6 +1220,7 @@ declare const StormConfigSchema: z.ZodObject<{
1157
1220
  homepage?: string | undefined;
1158
1221
  docs?: string | undefined;
1159
1222
  licensing?: string | undefined;
1223
+ contact?: string | undefined;
1160
1224
  branch?: string | undefined;
1161
1225
  preid?: string | undefined;
1162
1226
  owner?: string | undefined;
@@ -1168,8 +1232,8 @@ declare const StormConfigSchema: z.ZodObject<{
1168
1232
  locale?: string | undefined;
1169
1233
  skipConfigLogging?: boolean | undefined;
1170
1234
  registry?: {
1171
- npm?: string | undefined;
1172
1235
  github?: string | undefined;
1236
+ npm?: string | undefined;
1173
1237
  cargo?: string | undefined;
1174
1238
  cyclone?: string | undefined;
1175
1239
  container?: string | undefined;
package/dist/clean.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  clean,
3
3
  cleanDirectories
4
- } from "./chunk-DXIR35ET.js";
5
- import "./chunk-544OYWSQ.js";
4
+ } from "./chunk-QJ5VE3PG.js";
5
+ import "./chunk-SGTMRJLZ.js";
6
6
  import "./chunk-YMTDVMD6.js";
7
7
  import "./chunk-3GQAWCBQ.js";
8
8
  export {
package/dist/config.cjs CHANGED
@@ -1,13 +1,13 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkGKES5W75cjs = require('./chunk-GKES5W75.cjs');
4
+ var _chunkAGWKKDSCcjs = require('./chunk-AGWKKDSC.cjs');
5
5
  require('./chunk-S6M44SSZ.cjs');
6
6
  require('./chunk-WRBUO7H6.cjs');
7
- require('./chunk-23BWXS7W.cjs');
7
+ require('./chunk-UONT522M.cjs');
8
8
  require('./chunk-SSEYS7LI.cjs');
9
- require('./chunk-CGC754NO.cjs');
10
- require('./chunk-7O55IAQT.cjs');
9
+ require('./chunk-YK3LK2JZ.cjs');
10
+ require('./chunk-IQNPH4CN.cjs');
11
11
  require('./chunk-XITTOHOG.cjs');
12
12
  require('./chunk-CGFDQ5AJ.cjs');
13
13
  require('./chunk-EZGTDCYM.cjs');
@@ -15,4 +15,4 @@ require('./chunk-BGYQAVKQ.cjs');
15
15
 
16
16
 
17
17
 
18
- exports.DEFAULT_BUILD_OPTIONS = _chunkGKES5W75cjs.DEFAULT_BUILD_OPTIONS; exports.getDefaultBuildPlugins = _chunkGKES5W75cjs.getDefaultBuildPlugins;
18
+ exports.DEFAULT_BUILD_OPTIONS = _chunkAGWKKDSCcjs.DEFAULT_BUILD_OPTIONS; exports.getDefaultBuildPlugins = _chunkAGWKKDSCcjs.getDefaultBuildPlugins;
package/dist/config.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  DEFAULT_BUILD_OPTIONS,
3
3
  getDefaultBuildPlugins
4
- } from "./chunk-LYZEF7N4.js";
4
+ } from "./chunk-YUFST2S3.js";
5
5
  import "./chunk-T5272PC2.js";
6
6
  import "./chunk-LYDEMC26.js";
7
- import "./chunk-JIM5EHQS.js";
7
+ import "./chunk-MP6USOJU.js";
8
8
  import "./chunk-Q3LOGZKI.js";
9
- import "./chunk-WDK7RJAQ.js";
10
- import "./chunk-544OYWSQ.js";
9
+ import "./chunk-NR55GSOK.js";
10
+ import "./chunk-SGTMRJLZ.js";
11
11
  import "./chunk-YMTDVMD6.js";
12
12
  import "./chunk-YNQ45EAM.js";
13
13
  import "./chunk-GWG4HOQ6.js";
package/dist/index.cjs CHANGED
@@ -7,23 +7,23 @@
7
7
 
8
8
 
9
9
 
10
- var _chunkMBZHX2SLcjs = require('./chunk-MBZHX2SL.cjs');
10
+ var _chunkKWCU6MTGcjs = require('./chunk-KWCU6MTG.cjs');
11
11
 
12
12
 
13
13
 
14
- var _chunkRPASR3EHcjs = require('./chunk-RPASR3EH.cjs');
14
+ var _chunkATQXZL2Ncjs = require('./chunk-ATQXZL2N.cjs');
15
15
 
16
16
 
17
17
 
18
- var _chunkGKES5W75cjs = require('./chunk-GKES5W75.cjs');
18
+ var _chunkAGWKKDSCcjs = require('./chunk-AGWKKDSC.cjs');
19
19
  require('./chunk-S6M44SSZ.cjs');
20
20
  require('./chunk-WRBUO7H6.cjs');
21
- require('./chunk-23BWXS7W.cjs');
21
+ require('./chunk-UONT522M.cjs');
22
22
  require('./chunk-SSEYS7LI.cjs');
23
- require('./chunk-CGC754NO.cjs');
23
+ require('./chunk-YK3LK2JZ.cjs');
24
24
  require('./chunk-SFZRYJZ2.cjs');
25
- require('./chunk-FHHDOIZH.cjs');
26
- require('./chunk-7O55IAQT.cjs');
25
+ require('./chunk-FY4GMRVA.cjs');
26
+ require('./chunk-IQNPH4CN.cjs');
27
27
  require('./chunk-XITTOHOG.cjs');
28
28
  require('./chunk-CGFDQ5AJ.cjs');
29
29
  require('./chunk-EZGTDCYM.cjs');
@@ -41,4 +41,4 @@ require('./chunk-BGYQAVKQ.cjs');
41
41
 
42
42
 
43
43
 
44
- exports.DEFAULT_BUILD_OPTIONS = _chunkGKES5W75cjs.DEFAULT_BUILD_OPTIONS; exports.Filter = _chunkMBZHX2SLcjs.Filter; exports.Mapper = _chunkMBZHX2SLcjs.Mapper; exports.build = _chunkMBZHX2SLcjs.build; exports.clean = _chunkRPASR3EHcjs.clean; exports.cleanDirectories = _chunkRPASR3EHcjs.cleanDirectories; exports.cleanOutputPath = _chunkMBZHX2SLcjs.cleanOutputPath; exports.getDefaultBuildPlugins = _chunkGKES5W75cjs.getDefaultBuildPlugins; exports.handle = _chunkMBZHX2SLcjs.handle; exports.pipe = _chunkMBZHX2SLcjs.pipe; exports.skip = _chunkMBZHX2SLcjs.skip; exports.transduce = _chunkMBZHX2SLcjs.transduce;
44
+ exports.DEFAULT_BUILD_OPTIONS = _chunkAGWKKDSCcjs.DEFAULT_BUILD_OPTIONS; exports.Filter = _chunkKWCU6MTGcjs.Filter; exports.Mapper = _chunkKWCU6MTGcjs.Mapper; exports.build = _chunkKWCU6MTGcjs.build; exports.clean = _chunkATQXZL2Ncjs.clean; exports.cleanDirectories = _chunkATQXZL2Ncjs.cleanDirectories; exports.cleanOutputPath = _chunkKWCU6MTGcjs.cleanOutputPath; exports.getDefaultBuildPlugins = _chunkAGWKKDSCcjs.getDefaultBuildPlugins; exports.handle = _chunkKWCU6MTGcjs.handle; exports.pipe = _chunkKWCU6MTGcjs.pipe; exports.skip = _chunkKWCU6MTGcjs.skip; exports.transduce = _chunkKWCU6MTGcjs.transduce;
package/dist/index.js CHANGED
@@ -7,23 +7,23 @@ import {
7
7
  pipe,
8
8
  skip,
9
9
  transduce
10
- } from "./chunk-ZI5KMS75.js";
10
+ } from "./chunk-GQSWMSGM.js";
11
11
  import {
12
12
  clean,
13
13
  cleanDirectories
14
- } from "./chunk-DXIR35ET.js";
14
+ } from "./chunk-QJ5VE3PG.js";
15
15
  import {
16
16
  DEFAULT_BUILD_OPTIONS,
17
17
  getDefaultBuildPlugins
18
- } from "./chunk-LYZEF7N4.js";
18
+ } from "./chunk-YUFST2S3.js";
19
19
  import "./chunk-T5272PC2.js";
20
20
  import "./chunk-LYDEMC26.js";
21
- import "./chunk-JIM5EHQS.js";
21
+ import "./chunk-MP6USOJU.js";
22
22
  import "./chunk-Q3LOGZKI.js";
23
- import "./chunk-WDK7RJAQ.js";
23
+ import "./chunk-NR55GSOK.js";
24
24
  import "./chunk-GGNOJ77I.js";
25
- import "./chunk-JZMOPFOH.js";
26
- import "./chunk-544OYWSQ.js";
25
+ import "./chunk-ILLWUPTW.js";
26
+ import "./chunk-SGTMRJLZ.js";
27
27
  import "./chunk-YMTDVMD6.js";
28
28
  import "./chunk-YNQ45EAM.js";
29
29
  import "./chunk-GWG4HOQ6.js";
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkFHHDOIZHcjs = require('../chunk-FHHDOIZH.cjs');
4
- require('../chunk-7O55IAQT.cjs');
3
+ var _chunkFY4GMRVAcjs = require('../chunk-FY4GMRVA.cjs');
4
+ require('../chunk-IQNPH4CN.cjs');
5
5
  require('../chunk-XITTOHOG.cjs');
6
6
  require('../chunk-BGYQAVKQ.cjs');
7
7
 
8
8
 
9
- exports.depsCheckPlugin = _chunkFHHDOIZHcjs.depsCheckPlugin;
9
+ exports.depsCheckPlugin = _chunkFY4GMRVAcjs.depsCheckPlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  depsCheckPlugin
3
- } from "../chunk-JZMOPFOH.js";
4
- import "../chunk-544OYWSQ.js";
3
+ } from "../chunk-ILLWUPTW.js";
4
+ import "../chunk-SGTMRJLZ.js";
5
5
  import "../chunk-YMTDVMD6.js";
6
6
  import "../chunk-3GQAWCBQ.js";
7
7
  export {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunk23BWXS7Wcjs = require('../chunk-23BWXS7W.cjs');
4
- require('../chunk-7O55IAQT.cjs');
3
+ var _chunkUONT522Mcjs = require('../chunk-UONT522M.cjs');
4
+ require('../chunk-IQNPH4CN.cjs');
5
5
  require('../chunk-XITTOHOG.cjs');
6
6
  require('../chunk-BGYQAVKQ.cjs');
7
7
 
8
8
 
9
- exports.onErrorPlugin = _chunk23BWXS7Wcjs.onErrorPlugin;
9
+ exports.onErrorPlugin = _chunkUONT522Mcjs.onErrorPlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  onErrorPlugin
3
- } from "../chunk-JIM5EHQS.js";
4
- import "../chunk-544OYWSQ.js";
3
+ } from "../chunk-MP6USOJU.js";
4
+ import "../chunk-SGTMRJLZ.js";
5
5
  import "../chunk-YMTDVMD6.js";
6
6
  import "../chunk-3GQAWCBQ.js";
7
7
  export {
@@ -1,9 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkCGC754NOcjs = require('../chunk-CGC754NO.cjs');
4
- require('../chunk-7O55IAQT.cjs');
3
+ var _chunkYK3LK2JZcjs = require('../chunk-YK3LK2JZ.cjs');
4
+ require('../chunk-IQNPH4CN.cjs');
5
5
  require('../chunk-XITTOHOG.cjs');
6
6
  require('../chunk-BGYQAVKQ.cjs');
7
7
 
8
8
 
9
- exports.tscPlugin = _chunkCGC754NOcjs.tscPlugin;
9
+ exports.tscPlugin = _chunkYK3LK2JZcjs.tscPlugin;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  tscPlugin
3
- } from "../chunk-WDK7RJAQ.js";
4
- import "../chunk-544OYWSQ.js";
3
+ } from "../chunk-NR55GSOK.js";
4
+ import "../chunk-SGTMRJLZ.js";
5
5
  import "../chunk-YMTDVMD6.js";
6
6
  import "../chunk-3GQAWCBQ.js";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/esbuild",
3
- "version": "0.31.17",
3
+ "version": "0.31.19",
4
4
  "type": "module",
5
5
  "description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -136,8 +136,8 @@
136
136
  ],
137
137
  "peerDependencies": {
138
138
  "@microsoft/api-extractor": "^7.48.1",
139
- "@nx/devkit": "^20.3.1",
140
- "@nx/js": "^20.3.1",
139
+ "@nx/devkit": "20.6.0",
140
+ "@nx/js": "20.6.0",
141
141
  "@storm-software/build-tools": "workspace:*",
142
142
  "@storm-software/config-tools": "workspace:*",
143
143
  "esbuild": "^0.25.0",
@@ -161,7 +161,7 @@
161
161
  "es-toolkit": "^1.30.1",
162
162
  "esbuild": "^0.25.0",
163
163
  "globby": "^14.0.2",
164
- "nx": "^20.3.1",
164
+ "nx": "20.6.0",
165
165
  "prettier-plugin-organize-imports": "^4.0.0",
166
166
  "prettier-plugin-pkg": "^0.18.1",
167
167
  "prettier-plugin-sh": "^0.15.0",
@@ -170,11 +170,11 @@
170
170
  },
171
171
  "devDependencies": {
172
172
  "@microsoft/api-extractor": "^7.48.1",
173
- "@nx/devkit": "^20.3.1",
174
- "@nx/js": "^20.3.1",
175
- "@storm-software/build-tools": "0.143.17",
176
- "@storm-software/config": "1.106.12",
177
- "@storm-software/config-tools": "1.158.12",
173
+ "@nx/devkit": "20.6.0",
174
+ "@nx/js": "20.6.0",
175
+ "@storm-software/build-tools": "0.143.19",
176
+ "@storm-software/config": "1.110.2",
177
+ "@storm-software/config-tools": "1.160.2",
178
178
  "@types/node": "^22.10.2",
179
179
  "rollup": "4.29.1",
180
180
  "spdx-exceptions": "^2.5.0",