@storm-software/workspace-tools 1.7.27 → 1.7.29

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.7.27",
3
+ "version": "1.7.29",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -474150,6 +474150,7 @@ function modernConfig({
474150
474150
  platform = "neutral",
474151
474151
  verbose = false,
474152
474152
  define: define2,
474153
+ env,
474153
474154
  options
474154
474155
  }) {
474155
474156
  return {
@@ -474175,8 +474176,14 @@ function modernConfig({
474175
474176
  platform,
474176
474177
  banner,
474177
474178
  define: define2,
474178
- dts: true,
474179
- experimentalDts: true,
474179
+ env,
474180
+ dts: false,
474181
+ experimentalDts: {
474182
+ entry,
474183
+ compilerOptions: {
474184
+ noEmit: false
474185
+ }
474186
+ },
474180
474187
  sourcemap: debug,
474181
474188
  clean: false,
474182
474189
  outExtension
@@ -474192,6 +474199,7 @@ function legacyConfig({
474192
474199
  platform = "neutral",
474193
474200
  verbose = false,
474194
474201
  define: define2,
474202
+ env,
474195
474203
  options
474196
474204
  }) {
474197
474205
  return {
@@ -474209,8 +474217,14 @@ function legacyConfig({
474209
474217
  platform,
474210
474218
  banner,
474211
474219
  define: define2,
474212
- dts: true,
474213
- experimentalDts: true,
474220
+ env,
474221
+ dts: false,
474222
+ experimentalDts: {
474223
+ entry,
474224
+ compilerOptions: {
474225
+ noEmit: false
474226
+ }
474227
+ },
474214
474228
  sourcemap: debug,
474215
474229
  clean: false,
474216
474230
  outExtension
@@ -474226,6 +474240,7 @@ function getConfig(sourceRoot, {
474226
474240
  options,
474227
474241
  additionalEntryPoints,
474228
474242
  define: define2,
474243
+ env,
474229
474244
  verbose
474230
474245
  }) {
474231
474246
  const entry = globSync(
@@ -474253,6 +474268,7 @@ function getConfig(sourceRoot, {
474253
474268
  external,
474254
474269
  verbose,
474255
474270
  define: define2,
474271
+ env,
474256
474272
  options
474257
474273
  }),
474258
474274
  legacyConfig({
@@ -474265,6 +474281,7 @@ function getConfig(sourceRoot, {
474265
474281
  external,
474266
474282
  verbose,
474267
474283
  define: define2,
474284
+ env,
474268
474285
  options
474269
474286
  })
474270
474287
  ]);
@@ -276252,6 +276252,7 @@ function modernConfig({
276252
276252
  platform = "neutral",
276253
276253
  verbose = false,
276254
276254
  define: define2,
276255
+ env,
276255
276256
  options
276256
276257
  }) {
276257
276258
  return {
@@ -276277,8 +276278,14 @@ function modernConfig({
276277
276278
  platform,
276278
276279
  banner,
276279
276280
  define: define2,
276280
- dts: true,
276281
- experimentalDts: true,
276281
+ env,
276282
+ dts: false,
276283
+ experimentalDts: {
276284
+ entry,
276285
+ compilerOptions: {
276286
+ noEmit: false
276287
+ }
276288
+ },
276282
276289
  sourcemap: debug,
276283
276290
  clean: false,
276284
276291
  outExtension
@@ -276294,6 +276301,7 @@ function legacyConfig({
276294
276301
  platform = "neutral",
276295
276302
  verbose = false,
276296
276303
  define: define2,
276304
+ env,
276297
276305
  options
276298
276306
  }) {
276299
276307
  return {
@@ -276311,8 +276319,14 @@ function legacyConfig({
276311
276319
  platform,
276312
276320
  banner,
276313
276321
  define: define2,
276314
- dts: true,
276315
- experimentalDts: true,
276322
+ env,
276323
+ dts: false,
276324
+ experimentalDts: {
276325
+ entry,
276326
+ compilerOptions: {
276327
+ noEmit: false
276328
+ }
276329
+ },
276316
276330
  sourcemap: debug,
276317
276331
  clean: false,
276318
276332
  outExtension
@@ -276328,6 +276342,7 @@ function getConfig(sourceRoot, {
276328
276342
  options,
276329
276343
  additionalEntryPoints,
276330
276344
  define: define2,
276345
+ env,
276331
276346
  verbose
276332
276347
  }) {
276333
276348
  const entry = globSync(
@@ -276355,6 +276370,7 @@ function getConfig(sourceRoot, {
276355
276370
  external,
276356
276371
  verbose,
276357
276372
  define: define2,
276373
+ env,
276358
276374
  options
276359
276375
  }),
276360
276376
  legacyConfig({
@@ -276367,6 +276383,7 @@ function getConfig(sourceRoot, {
276367
276383
  external,
276368
276384
  verbose,
276369
276385
  define: define2,
276386
+ env,
276370
276387
  options
276371
276388
  })
276372
276389
  ]);
@@ -22,4 +22,5 @@ export type TsupExecutorSchema = Omit<
22
22
  banner?: string;
23
23
  verbose: boolean;
24
24
  define?: Record<string, string>;
25
+ env?: Record<string, string>;
25
26
  };
@@ -86,6 +86,11 @@
86
86
  "description": "Define global constants that can be used in the source code. The value will be converted into a stringified JSON.",
87
87
  "additionalProperties": true
88
88
  },
89
+ "env": {
90
+ "type": "object",
91
+ "description": "Define environment variables that can be used in the source code. The value will be converted into a stringified JSON.",
92
+ "additionalProperties": true
93
+ },
89
94
  "options": {
90
95
  "type": "object",
91
96
  "description": "Additional options to pass to tsup. See https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e.",