@powerlines/plugin-env 0.16.114 → 0.16.116
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/components/docs.cjs +1 -1
- package/dist/components/docs.mjs +1 -1
- package/dist/components/docs.mjs.map +1 -1
- package/dist/components/env-builtin.cjs +3 -2
- package/dist/components/env-builtin.d.cts.map +1 -1
- package/dist/components/env-builtin.d.mts.map +1 -1
- package/dist/components/env-builtin.mjs +3 -2
- package/dist/components/env-builtin.mjs.map +1 -1
- package/dist/helpers/load.d.cts +1 -1
- package/dist/helpers/load.d.mts +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types/runtime.d.cts +141 -0
- package/dist/types/runtime.d.cts.map +1 -1
- package/dist/types/runtime.d.mts +141 -0
- package/dist/types/runtime.d.mts.map +1 -1
- package/dist/types/runtime.mjs.map +1 -1
- package/package.json +13 -13
- package/dist/node_modules/.pnpm/@stryke_helpers@0.10.8/node_modules/@stryke/helpers/dist/get-unique.cjs +0 -14
- package/dist/node_modules/.pnpm/@stryke_helpers@0.10.8/node_modules/@stryke/helpers/dist/get-unique.mjs +0 -14
- package/dist/node_modules/.pnpm/@stryke_helpers@0.10.8/node_modules/@stryke/helpers/dist/get-unique.mjs.map +0 -1
package/dist/types/runtime.d.cts
CHANGED
|
@@ -143,6 +143,8 @@ interface EnvInterface {
|
|
|
143
143
|
* The name of the agent running the application. This variable is set by certain CI/CD systems.
|
|
144
144
|
*
|
|
145
145
|
* @readonly
|
|
146
|
+
* @runtime
|
|
147
|
+
* @hidden
|
|
146
148
|
* @category neutral
|
|
147
149
|
*/
|
|
148
150
|
readonly AGENT_NAME?: string;
|
|
@@ -150,6 +152,8 @@ interface EnvInterface {
|
|
|
150
152
|
* The color terminal type. This variable is set by certain terminal emulators.
|
|
151
153
|
*
|
|
152
154
|
* @readonly
|
|
155
|
+
* @runtime
|
|
156
|
+
* @hidden
|
|
153
157
|
* @category node
|
|
154
158
|
*/
|
|
155
159
|
readonly COLORTERM?: string;
|
|
@@ -160,6 +164,8 @@ interface EnvInterface {
|
|
|
160
164
|
* This variable is used to specify the terminal type that the application is running in. It can be used to determine how to format output for the terminal.
|
|
161
165
|
*
|
|
162
166
|
* @readonly
|
|
167
|
+
* @runtime
|
|
168
|
+
* @hidden
|
|
163
169
|
* @category node
|
|
164
170
|
*/
|
|
165
171
|
readonly TERM?: string;
|
|
@@ -167,6 +173,8 @@ interface EnvInterface {
|
|
|
167
173
|
* The terminal program name. This variable is set by certain terminal emulators.
|
|
168
174
|
*
|
|
169
175
|
* @readonly
|
|
176
|
+
* @runtime
|
|
177
|
+
* @hidden
|
|
170
178
|
* @category node
|
|
171
179
|
*/
|
|
172
180
|
readonly TERM_PROGRAM?: string;
|
|
@@ -174,6 +182,8 @@ interface EnvInterface {
|
|
|
174
182
|
* The terminal program version. This variable is set by certain terminal emulators.
|
|
175
183
|
*
|
|
176
184
|
* @readonly
|
|
185
|
+
* @runtime
|
|
186
|
+
* @hidden
|
|
177
187
|
* @category node
|
|
178
188
|
*/
|
|
179
189
|
readonly TERM_PROGRAM_VERSION?: string;
|
|
@@ -181,6 +191,8 @@ interface EnvInterface {
|
|
|
181
191
|
* The terminal emulator name. This variable is set by certain terminal emulators.
|
|
182
192
|
*
|
|
183
193
|
* @readonly
|
|
194
|
+
* @runtime
|
|
195
|
+
* @hidden
|
|
184
196
|
* @category node
|
|
185
197
|
*/
|
|
186
198
|
readonly TERMINAL_EMULATOR?: string;
|
|
@@ -188,6 +200,8 @@ interface EnvInterface {
|
|
|
188
200
|
* The terminal emulator session ID. This variable is set by certain terminal emulators.
|
|
189
201
|
*
|
|
190
202
|
* @readonly
|
|
203
|
+
* @runtime
|
|
204
|
+
* @hidden
|
|
191
205
|
* @category node
|
|
192
206
|
*/
|
|
193
207
|
readonly WT_SESSION?: string;
|
|
@@ -195,6 +209,8 @@ interface EnvInterface {
|
|
|
195
209
|
* An indicator that specifies the current terminal is running Terminus Sublime. This variable is set by certain terminal emulators.
|
|
196
210
|
*
|
|
197
211
|
* @readonly
|
|
212
|
+
* @runtime
|
|
213
|
+
* @hidden
|
|
198
214
|
* @category node
|
|
199
215
|
*/
|
|
200
216
|
readonly TERMINUS_SUBLIME?: boolean;
|
|
@@ -202,6 +218,8 @@ interface EnvInterface {
|
|
|
202
218
|
* The ConEmu task name. This variable is set by certain terminal emulators.
|
|
203
219
|
*
|
|
204
220
|
* @readonly
|
|
221
|
+
* @runtime
|
|
222
|
+
* @hidden
|
|
205
223
|
* @category node
|
|
206
224
|
*/
|
|
207
225
|
readonly ConEmuTask?: string;
|
|
@@ -209,6 +227,8 @@ interface EnvInterface {
|
|
|
209
227
|
* The cursor trace ID. This variable is set by certain terminal emulators.
|
|
210
228
|
*
|
|
211
229
|
* @readonly
|
|
230
|
+
* @runtime
|
|
231
|
+
* @hidden
|
|
212
232
|
* @category node
|
|
213
233
|
*/
|
|
214
234
|
readonly CURSOR_TRACE_ID?: string;
|
|
@@ -216,6 +236,8 @@ interface EnvInterface {
|
|
|
216
236
|
* The VTE version. This variable is set by certain terminal emulators.
|
|
217
237
|
*
|
|
218
238
|
* @readonly
|
|
239
|
+
* @runtime
|
|
240
|
+
* @hidden
|
|
219
241
|
* @category node
|
|
220
242
|
*/
|
|
221
243
|
readonly VTE_VERSION?: string;
|
|
@@ -275,6 +297,8 @@ interface EnvInterface {
|
|
|
275
297
|
* The unique identifier for the current run. This value is set by certain CI/CD systems.
|
|
276
298
|
*
|
|
277
299
|
* @readonly
|
|
300
|
+
* @runtime
|
|
301
|
+
* @hidden
|
|
278
302
|
* @category node
|
|
279
303
|
*/
|
|
280
304
|
readonly RUN_ID?: string;
|
|
@@ -282,6 +306,8 @@ interface EnvInterface {
|
|
|
282
306
|
* The agola git reference. This value is set by certain CI/CD systems.
|
|
283
307
|
*
|
|
284
308
|
* @readonly
|
|
309
|
+
* @runtime
|
|
310
|
+
* @hidden
|
|
285
311
|
* @category node
|
|
286
312
|
*/
|
|
287
313
|
readonly AGOLA_GIT_REF?: string;
|
|
@@ -289,6 +315,8 @@ interface EnvInterface {
|
|
|
289
315
|
* The appcircle build ID. This value is set by certain CI/CD systems.
|
|
290
316
|
*
|
|
291
317
|
* @readonly
|
|
318
|
+
* @runtime
|
|
319
|
+
* @hidden
|
|
292
320
|
* @category node
|
|
293
321
|
*/
|
|
294
322
|
readonly AC_APPCIRCLE?: string;
|
|
@@ -296,6 +324,8 @@ interface EnvInterface {
|
|
|
296
324
|
* The appveyor build ID. This value is set by certain CI/CD systems.
|
|
297
325
|
*
|
|
298
326
|
* @readonly
|
|
327
|
+
* @runtime
|
|
328
|
+
* @hidden
|
|
299
329
|
* @category node
|
|
300
330
|
*/
|
|
301
331
|
readonly APPVEYOR?: string;
|
|
@@ -303,6 +333,8 @@ interface EnvInterface {
|
|
|
303
333
|
* The codebuild build ID. This value is set by certain CI/CD systems.
|
|
304
334
|
*
|
|
305
335
|
* @readonly
|
|
336
|
+
* @runtime
|
|
337
|
+
* @hidden
|
|
306
338
|
* @category node
|
|
307
339
|
*/
|
|
308
340
|
readonly CODEBUILD?: string;
|
|
@@ -310,6 +342,8 @@ interface EnvInterface {
|
|
|
310
342
|
* The task force build ID. This value is set by certain CI/CD systems.
|
|
311
343
|
*
|
|
312
344
|
* @readonly
|
|
345
|
+
* @runtime
|
|
346
|
+
* @hidden
|
|
313
347
|
* @category node
|
|
314
348
|
*/
|
|
315
349
|
readonly TF_BUILD?: string;
|
|
@@ -317,6 +351,8 @@ interface EnvInterface {
|
|
|
317
351
|
* The bamboo plan key. This value is set by certain CI/CD systems.
|
|
318
352
|
*
|
|
319
353
|
* @readonly
|
|
354
|
+
* @runtime
|
|
355
|
+
* @hidden
|
|
320
356
|
* @category node
|
|
321
357
|
*/
|
|
322
358
|
readonly bamboo_planKey?: string;
|
|
@@ -324,6 +360,8 @@ interface EnvInterface {
|
|
|
324
360
|
* The bitbucket commit. This value is set by certain CI/CD systems.
|
|
325
361
|
*
|
|
326
362
|
* @readonly
|
|
363
|
+
* @runtime
|
|
364
|
+
* @hidden
|
|
327
365
|
* @category node
|
|
328
366
|
*/
|
|
329
367
|
readonly BITBUCKET_COMMIT?: string;
|
|
@@ -331,6 +369,8 @@ interface EnvInterface {
|
|
|
331
369
|
* The bitrise build ID. This value is set by certain CI/CD systems.
|
|
332
370
|
*
|
|
333
371
|
* @readonly
|
|
372
|
+
* @runtime
|
|
373
|
+
* @hidden
|
|
334
374
|
* @category node
|
|
335
375
|
*/
|
|
336
376
|
readonly BITRISE_IO?: string;
|
|
@@ -338,6 +378,8 @@ interface EnvInterface {
|
|
|
338
378
|
* The buddy workspace ID. This value is set by certain CI/CD systems.
|
|
339
379
|
*
|
|
340
380
|
* @readonly
|
|
381
|
+
* @runtime
|
|
382
|
+
* @hidden
|
|
341
383
|
* @category node
|
|
342
384
|
*/
|
|
343
385
|
readonly BUDDY_WORKSPACE_ID?: string;
|
|
@@ -345,6 +387,8 @@ interface EnvInterface {
|
|
|
345
387
|
* The buildkite build ID. This value is set by certain CI/CD systems.
|
|
346
388
|
*
|
|
347
389
|
* @readonly
|
|
390
|
+
* @runtime
|
|
391
|
+
* @hidden
|
|
348
392
|
* @category node
|
|
349
393
|
*/
|
|
350
394
|
readonly BUILDKITE?: string;
|
|
@@ -352,6 +396,8 @@ interface EnvInterface {
|
|
|
352
396
|
* The circleci build ID. This value is set by certain CI/CD systems.
|
|
353
397
|
*
|
|
354
398
|
* @readonly
|
|
399
|
+
* @runtime
|
|
400
|
+
* @hidden
|
|
355
401
|
* @category node
|
|
356
402
|
*/
|
|
357
403
|
readonly CIRCLECI?: string;
|
|
@@ -359,6 +405,8 @@ interface EnvInterface {
|
|
|
359
405
|
* The cirrus-ci build ID. This value is set by certain CI/CD systems.
|
|
360
406
|
*
|
|
361
407
|
* @readonly
|
|
408
|
+
* @runtime
|
|
409
|
+
* @hidden
|
|
362
410
|
* @category node
|
|
363
411
|
*/
|
|
364
412
|
readonly CIRRUS_CI?: string;
|
|
@@ -366,6 +414,8 @@ interface EnvInterface {
|
|
|
366
414
|
* The cf build ID. This value is set by certain CI/CD systems.
|
|
367
415
|
*
|
|
368
416
|
* @readonly
|
|
417
|
+
* @runtime
|
|
418
|
+
* @hidden
|
|
369
419
|
* @category node
|
|
370
420
|
*/
|
|
371
421
|
readonly CF_BUILD_ID?: string;
|
|
@@ -373,6 +423,8 @@ interface EnvInterface {
|
|
|
373
423
|
* The cm build ID. This value is set by certain CI/CD systems.
|
|
374
424
|
*
|
|
375
425
|
* @readonly
|
|
426
|
+
* @runtime
|
|
427
|
+
* @hidden
|
|
376
428
|
* @category node
|
|
377
429
|
*/
|
|
378
430
|
readonly CM_BUILD_ID?: string;
|
|
@@ -380,6 +432,8 @@ interface EnvInterface {
|
|
|
380
432
|
* The ci name. This value is set by certain CI/CD systems.
|
|
381
433
|
*
|
|
382
434
|
* @readonly
|
|
435
|
+
* @runtime
|
|
436
|
+
* @hidden
|
|
383
437
|
* @category node
|
|
384
438
|
*/
|
|
385
439
|
readonly CI_NAME?: string;
|
|
@@ -387,6 +441,8 @@ interface EnvInterface {
|
|
|
387
441
|
* The drone build ID. This value is set by certain CI/CD systems.
|
|
388
442
|
*
|
|
389
443
|
* @readonly
|
|
444
|
+
* @runtime
|
|
445
|
+
* @hidden
|
|
390
446
|
* @category node
|
|
391
447
|
*/
|
|
392
448
|
readonly DRONE?: string;
|
|
@@ -394,6 +450,8 @@ interface EnvInterface {
|
|
|
394
450
|
* The dsari build ID. This value is set by certain CI/CD systems.
|
|
395
451
|
*
|
|
396
452
|
* @readonly
|
|
453
|
+
* @runtime
|
|
454
|
+
* @hidden
|
|
397
455
|
* @category node
|
|
398
456
|
*/
|
|
399
457
|
readonly DSARI?: string;
|
|
@@ -401,6 +459,8 @@ interface EnvInterface {
|
|
|
401
459
|
* The earthly build ID. This value is set by certain CI/CD systems.
|
|
402
460
|
*
|
|
403
461
|
* @readonly
|
|
462
|
+
* @runtime
|
|
463
|
+
* @hidden
|
|
404
464
|
* @category node
|
|
405
465
|
*/
|
|
406
466
|
readonly EARTHLY_CI?: string;
|
|
@@ -408,6 +468,8 @@ interface EnvInterface {
|
|
|
408
468
|
* The eas build ID. This value is set by certain CI/CD systems.
|
|
409
469
|
*
|
|
410
470
|
* @readonly
|
|
471
|
+
* @runtime
|
|
472
|
+
* @hidden
|
|
411
473
|
* @category node
|
|
412
474
|
*/
|
|
413
475
|
readonly EAS_BUILD?: string;
|
|
@@ -415,6 +477,8 @@ interface EnvInterface {
|
|
|
415
477
|
* The gerrit project. This value is set by certain CI/CD systems.
|
|
416
478
|
*
|
|
417
479
|
* @readonly
|
|
480
|
+
* @runtime
|
|
481
|
+
* @hidden
|
|
418
482
|
* @category node
|
|
419
483
|
*/
|
|
420
484
|
readonly GERRIT_PROJECT?: string;
|
|
@@ -422,6 +486,8 @@ interface EnvInterface {
|
|
|
422
486
|
* The gitea actions build ID. This value is set by certain CI/CD systems.
|
|
423
487
|
*
|
|
424
488
|
* @readonly
|
|
489
|
+
* @runtime
|
|
490
|
+
* @hidden
|
|
425
491
|
* @category node
|
|
426
492
|
*/
|
|
427
493
|
readonly GITEA_ACTIONS?: string;
|
|
@@ -429,6 +495,8 @@ interface EnvInterface {
|
|
|
429
495
|
* The github actions build ID. This value is set by certain CI/CD systems.
|
|
430
496
|
*
|
|
431
497
|
* @readonly
|
|
498
|
+
* @runtime
|
|
499
|
+
* @hidden
|
|
432
500
|
* @category node
|
|
433
501
|
*/
|
|
434
502
|
readonly GITHUB_ACTIONS?: string;
|
|
@@ -436,6 +504,8 @@ interface EnvInterface {
|
|
|
436
504
|
* The gitlab ci build ID. This value is set by certain CI/CD systems.
|
|
437
505
|
*
|
|
438
506
|
* @readonly
|
|
507
|
+
* @runtime
|
|
508
|
+
* @hidden
|
|
439
509
|
* @category node
|
|
440
510
|
*/
|
|
441
511
|
readonly GITLAB_CI?: string;
|
|
@@ -443,6 +513,8 @@ interface EnvInterface {
|
|
|
443
513
|
* The go cd build ID. This value is set by certain CI/CD systems.
|
|
444
514
|
*
|
|
445
515
|
* @readonly
|
|
516
|
+
* @runtime
|
|
517
|
+
* @hidden
|
|
446
518
|
* @category node
|
|
447
519
|
*/
|
|
448
520
|
readonly GOCD?: string;
|
|
@@ -450,6 +522,8 @@ interface EnvInterface {
|
|
|
450
522
|
* The builder output build ID. This value is set by certain CI/CD systems.
|
|
451
523
|
*
|
|
452
524
|
* @readonly
|
|
525
|
+
* @runtime
|
|
526
|
+
* @hidden
|
|
453
527
|
* @category node
|
|
454
528
|
*/
|
|
455
529
|
readonly BUILDER_OUTPUT?: string;
|
|
@@ -457,6 +531,8 @@ interface EnvInterface {
|
|
|
457
531
|
* The harness build ID. This value is set by certain CI/CD systems.
|
|
458
532
|
*
|
|
459
533
|
* @readonly
|
|
534
|
+
* @runtime
|
|
535
|
+
* @hidden
|
|
460
536
|
* @category node
|
|
461
537
|
*/
|
|
462
538
|
readonly HARNESS_BUILD_ID?: string;
|
|
@@ -464,6 +540,8 @@ interface EnvInterface {
|
|
|
464
540
|
* The jenkins url. This value is set by certain CI/CD systems.
|
|
465
541
|
*
|
|
466
542
|
* @readonly
|
|
543
|
+
* @runtime
|
|
544
|
+
* @hidden
|
|
467
545
|
* @category node
|
|
468
546
|
*/
|
|
469
547
|
readonly JENKINS_URL?: string;
|
|
@@ -471,6 +549,8 @@ interface EnvInterface {
|
|
|
471
549
|
* The layerci build ID. This value is set by certain CI/CD systems.
|
|
472
550
|
*
|
|
473
551
|
* @readonly
|
|
552
|
+
* @runtime
|
|
553
|
+
* @hidden
|
|
474
554
|
* @category node
|
|
475
555
|
*/
|
|
476
556
|
readonly LAYERCI?: string;
|
|
@@ -478,6 +558,8 @@ interface EnvInterface {
|
|
|
478
558
|
* The magnum build ID. This value is set by certain CI/CD systems.
|
|
479
559
|
*
|
|
480
560
|
* @readonly
|
|
561
|
+
* @runtime
|
|
562
|
+
* @hidden
|
|
481
563
|
* @category node
|
|
482
564
|
*/
|
|
483
565
|
readonly MAGNUM?: string;
|
|
@@ -485,6 +567,8 @@ interface EnvInterface {
|
|
|
485
567
|
* The netlify build ID. This value is set by certain CI/CD systems.
|
|
486
568
|
*
|
|
487
569
|
* @readonly
|
|
570
|
+
* @runtime
|
|
571
|
+
* @hidden
|
|
488
572
|
* @category node
|
|
489
573
|
*/
|
|
490
574
|
readonly NETLIFY?: string;
|
|
@@ -492,6 +576,8 @@ interface EnvInterface {
|
|
|
492
576
|
* The nevercode build ID. This value is set by certain CI/CD systems.
|
|
493
577
|
*
|
|
494
578
|
* @readonly
|
|
579
|
+
* @runtime
|
|
580
|
+
* @hidden
|
|
495
581
|
* @category node
|
|
496
582
|
*/
|
|
497
583
|
readonly NEVERCODE?: string;
|
|
@@ -499,6 +585,8 @@ interface EnvInterface {
|
|
|
499
585
|
* The prow job ID. This value is set by certain CI/CD systems.
|
|
500
586
|
*
|
|
501
587
|
* @readonly
|
|
588
|
+
* @runtime
|
|
589
|
+
* @hidden
|
|
502
590
|
* @category node
|
|
503
591
|
*/
|
|
504
592
|
readonly PROW_JOB_ID?: string;
|
|
@@ -506,6 +594,8 @@ interface EnvInterface {
|
|
|
506
594
|
* The release build ID. This value is set by certain CI/CD systems.
|
|
507
595
|
*
|
|
508
596
|
* @readonly
|
|
597
|
+
* @runtime
|
|
598
|
+
* @hidden
|
|
509
599
|
* @category node
|
|
510
600
|
*/
|
|
511
601
|
readonly RELEASE_BUILD_ID?: string;
|
|
@@ -513,6 +603,8 @@ interface EnvInterface {
|
|
|
513
603
|
* The render build ID. This value is set by certain CI/CD systems.
|
|
514
604
|
*
|
|
515
605
|
* @readonly
|
|
606
|
+
* @runtime
|
|
607
|
+
* @hidden
|
|
516
608
|
* @category node
|
|
517
609
|
*/
|
|
518
610
|
readonly RENDER?: string;
|
|
@@ -520,6 +612,8 @@ interface EnvInterface {
|
|
|
520
612
|
* The sailci build ID. This value is set by certain CI/CD systems.
|
|
521
613
|
*
|
|
522
614
|
* @readonly
|
|
615
|
+
* @runtime
|
|
616
|
+
* @hidden
|
|
523
617
|
* @category node
|
|
524
618
|
*/
|
|
525
619
|
readonly SAILCI?: string;
|
|
@@ -527,6 +621,8 @@ interface EnvInterface {
|
|
|
527
621
|
* The hudson build ID. This value is set by certain CI/CD systems.
|
|
528
622
|
*
|
|
529
623
|
* @readonly
|
|
624
|
+
* @runtime
|
|
625
|
+
* @hidden
|
|
530
626
|
* @category node
|
|
531
627
|
*/
|
|
532
628
|
readonly HUDSON?: string;
|
|
@@ -534,6 +630,8 @@ interface EnvInterface {
|
|
|
534
630
|
* The screwdriver build ID. This value is set by certain CI/CD systems.
|
|
535
631
|
*
|
|
536
632
|
* @readonly
|
|
633
|
+
* @runtime
|
|
634
|
+
* @hidden
|
|
537
635
|
* @category node
|
|
538
636
|
*/
|
|
539
637
|
readonly SCREWDRIVER?: string;
|
|
@@ -541,6 +639,8 @@ interface EnvInterface {
|
|
|
541
639
|
* The semaphore build ID. This value is set by certain CI/CD systems.
|
|
542
640
|
*
|
|
543
641
|
* @readonly
|
|
642
|
+
* @runtime
|
|
643
|
+
* @hidden
|
|
544
644
|
* @category node
|
|
545
645
|
*/
|
|
546
646
|
readonly SEMAPHORE?: string;
|
|
@@ -548,6 +648,8 @@ interface EnvInterface {
|
|
|
548
648
|
* The sourcehut build ID. This value is set by certain CI/CD systems.
|
|
549
649
|
*
|
|
550
650
|
* @readonly
|
|
651
|
+
* @runtime
|
|
652
|
+
* @hidden
|
|
551
653
|
* @category node
|
|
552
654
|
*/
|
|
553
655
|
readonly SOURCEHUT?: string;
|
|
@@ -555,6 +657,8 @@ interface EnvInterface {
|
|
|
555
657
|
* The spaceship build ID. This value is set by certain CI/CD systems.
|
|
556
658
|
*
|
|
557
659
|
* @readonly
|
|
660
|
+
* @runtime
|
|
661
|
+
* @hidden
|
|
558
662
|
* @category node
|
|
559
663
|
*/
|
|
560
664
|
readonly SPACESHIP_CI?: string;
|
|
@@ -562,6 +666,8 @@ interface EnvInterface {
|
|
|
562
666
|
* The strider build ID. This value is set by certain CI/CD systems.
|
|
563
667
|
*
|
|
564
668
|
* @readonly
|
|
669
|
+
* @runtime
|
|
670
|
+
* @hidden
|
|
565
671
|
* @category node
|
|
566
672
|
*/
|
|
567
673
|
readonly STRIDER?: string;
|
|
@@ -569,6 +675,8 @@ interface EnvInterface {
|
|
|
569
675
|
* The task ID. This value is set by certain CI/CD systems.
|
|
570
676
|
*
|
|
571
677
|
* @readonly
|
|
678
|
+
* @runtime
|
|
679
|
+
* @hidden
|
|
572
680
|
* @category node
|
|
573
681
|
*/
|
|
574
682
|
readonly TASK_ID?: string;
|
|
@@ -576,6 +684,8 @@ interface EnvInterface {
|
|
|
576
684
|
* The teamcity version. This value is set by certain CI/CD systems.
|
|
577
685
|
*
|
|
578
686
|
* @readonly
|
|
687
|
+
* @runtime
|
|
688
|
+
* @hidden
|
|
579
689
|
* @category node
|
|
580
690
|
*/
|
|
581
691
|
readonly TEAMCITY_VERSION?: string;
|
|
@@ -583,6 +693,8 @@ interface EnvInterface {
|
|
|
583
693
|
* The travis build ID. This value is set by certain CI/CD systems.
|
|
584
694
|
*
|
|
585
695
|
* @readonly
|
|
696
|
+
* @runtime
|
|
697
|
+
* @hidden
|
|
586
698
|
* @category node
|
|
587
699
|
*/
|
|
588
700
|
readonly TRAVIS?: string;
|
|
@@ -590,6 +702,8 @@ interface EnvInterface {
|
|
|
590
702
|
* The vela build ID. This value is set by certain CI/CD systems.
|
|
591
703
|
*
|
|
592
704
|
* @readonly
|
|
705
|
+
* @runtime
|
|
706
|
+
* @hidden
|
|
593
707
|
* @category node
|
|
594
708
|
*/
|
|
595
709
|
readonly VELA?: string;
|
|
@@ -597,6 +711,8 @@ interface EnvInterface {
|
|
|
597
711
|
* The now builder build ID. This value is set by certain CI/CD systems.
|
|
598
712
|
*
|
|
599
713
|
* @readonly
|
|
714
|
+
* @runtime
|
|
715
|
+
* @hidden
|
|
600
716
|
* @category node
|
|
601
717
|
*/
|
|
602
718
|
readonly NOW_BUILDER?: string;
|
|
@@ -604,6 +720,8 @@ interface EnvInterface {
|
|
|
604
720
|
* The appcenter build ID. This value is set by certain CI/CD systems.
|
|
605
721
|
*
|
|
606
722
|
* @readonly
|
|
723
|
+
* @runtime
|
|
724
|
+
* @hidden
|
|
607
725
|
* @category node
|
|
608
726
|
*/
|
|
609
727
|
readonly APPCENTER_BUILD_ID?: string;
|
|
@@ -611,6 +729,8 @@ interface EnvInterface {
|
|
|
611
729
|
* The xcode project build ID. This value is set by certain CI/CD systems.
|
|
612
730
|
*
|
|
613
731
|
* @readonly
|
|
732
|
+
* @runtime
|
|
733
|
+
* @hidden
|
|
614
734
|
* @category node
|
|
615
735
|
*/
|
|
616
736
|
readonly CI_XCODE_PROJECT?: string;
|
|
@@ -618,6 +738,8 @@ interface EnvInterface {
|
|
|
618
738
|
* The xcode server build ID. This value is set by certain CI/CD systems.
|
|
619
739
|
*
|
|
620
740
|
* @readonly
|
|
741
|
+
* @runtime
|
|
742
|
+
* @hidden
|
|
621
743
|
* @category node
|
|
622
744
|
*/
|
|
623
745
|
readonly XCS?: string;
|
|
@@ -628,6 +750,7 @@ interface EnvInterface {
|
|
|
628
750
|
* This variable is used to override the base path of the system's local application data directory. This variable is used to set the \`$storm.paths.data\` property.
|
|
629
751
|
*
|
|
630
752
|
* @title Data Directory
|
|
753
|
+
* @runtime
|
|
631
754
|
* @category node
|
|
632
755
|
*/
|
|
633
756
|
DATA_DIR?: string;
|
|
@@ -638,6 +761,7 @@ interface EnvInterface {
|
|
|
638
761
|
* This variable is used to override the base path of the system's local application configuration directory. This variable is used to set the \`$storm.paths.config\` property.
|
|
639
762
|
*
|
|
640
763
|
* @title Configuration Directory
|
|
764
|
+
* @runtime
|
|
641
765
|
* @category node
|
|
642
766
|
*/
|
|
643
767
|
CONFIG_DIR?: string;
|
|
@@ -648,6 +772,7 @@ interface EnvInterface {
|
|
|
648
772
|
* This variable is used to override the base path of the system's local cache data directory. This variable is used to set the \`$storm.paths.cache\` property.
|
|
649
773
|
*
|
|
650
774
|
* @title Cache Directory
|
|
775
|
+
* @runtime
|
|
651
776
|
* @category node
|
|
652
777
|
*/
|
|
653
778
|
CACHE_DIR?: string;
|
|
@@ -658,6 +783,7 @@ interface EnvInterface {
|
|
|
658
783
|
* This variable is used to override the base path of the system's local application log directory. This variable is used to set the \`$storm.paths.log\` property.
|
|
659
784
|
*
|
|
660
785
|
* @title Log Directory
|
|
786
|
+
* @runtime
|
|
661
787
|
* @category node
|
|
662
788
|
*/
|
|
663
789
|
LOG_DIR?: string;
|
|
@@ -668,6 +794,7 @@ interface EnvInterface {
|
|
|
668
794
|
* This variable is used to override the base path of the system's local temporary data directory. This variable is used to set the \`$storm.paths.temp\` property.
|
|
669
795
|
*
|
|
670
796
|
* @title Temporary Directory
|
|
797
|
+
* @runtime
|
|
671
798
|
* @category node
|
|
672
799
|
*/
|
|
673
800
|
TEMP_DIR?: string;
|
|
@@ -680,6 +807,8 @@ interface EnvInterface {
|
|
|
680
807
|
* This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \`$storm.paths.data\`, \`$storm.paths.cache\`, and \`$storm.paths.log\` properties.
|
|
681
808
|
*
|
|
682
809
|
* @readonly
|
|
810
|
+
* @runtime
|
|
811
|
+
* @hidden
|
|
683
812
|
* @category node
|
|
684
813
|
*/
|
|
685
814
|
readonly LOCALAPPDATA?: string;
|
|
@@ -692,6 +821,8 @@ interface EnvInterface {
|
|
|
692
821
|
* This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \`$storm.paths.config\` property.
|
|
693
822
|
*
|
|
694
823
|
* @readonly
|
|
824
|
+
* @runtime
|
|
825
|
+
* @hidden
|
|
695
826
|
* @category node
|
|
696
827
|
*/
|
|
697
828
|
readonly APPDATA?: string;
|
|
@@ -704,6 +835,8 @@ interface EnvInterface {
|
|
|
704
835
|
* This variable is used to specify a path to application data that is specific to the current user. This variable can be used to set the \`$storm.paths.data\` property.
|
|
705
836
|
*
|
|
706
837
|
* @readonly
|
|
838
|
+
* @runtime
|
|
839
|
+
* @hidden
|
|
707
840
|
* @category node
|
|
708
841
|
*/
|
|
709
842
|
readonly XDG_DATA_HOME?: string;
|
|
@@ -716,6 +849,8 @@ interface EnvInterface {
|
|
|
716
849
|
* This variable is used to specify a path to configuration data that is specific to the current user. This variable can be used to set the \`$storm.paths.config\` property.
|
|
717
850
|
*
|
|
718
851
|
* @readonly
|
|
852
|
+
* @runtime
|
|
853
|
+
* @hidden
|
|
719
854
|
* @category node
|
|
720
855
|
*/
|
|
721
856
|
readonly XDG_CONFIG_HOME?: string;
|
|
@@ -728,6 +863,8 @@ interface EnvInterface {
|
|
|
728
863
|
* This variable is used to specify a path to cache data that is specific to the current user. This variable can be used to set the \`$storm.paths.cache\` property.
|
|
729
864
|
*
|
|
730
865
|
* @readonly
|
|
866
|
+
* @runtime
|
|
867
|
+
* @hidden
|
|
731
868
|
* @category node
|
|
732
869
|
*/
|
|
733
870
|
readonly XDG_CACHE_HOME?: string;
|
|
@@ -740,6 +877,8 @@ interface EnvInterface {
|
|
|
740
877
|
* This variable is used to specify a path to application state data that is specific to the current user. This variable can be used to set the \`$storm.paths.state\` property.
|
|
741
878
|
*
|
|
742
879
|
* @readonly
|
|
880
|
+
* @runtime
|
|
881
|
+
* @hidden
|
|
743
882
|
* @category node
|
|
744
883
|
*/
|
|
745
884
|
readonly XDG_STATE_HOME?: string;
|
|
@@ -752,6 +891,8 @@ interface EnvInterface {
|
|
|
752
891
|
* This variable is used to specify a path to runtime data that is specific to the current user. This variable can be used to set the \`$storm.paths.temp\` property.
|
|
753
892
|
*
|
|
754
893
|
* @readonly
|
|
894
|
+
* @runtime
|
|
895
|
+
* @hidden
|
|
755
896
|
* @category node
|
|
756
897
|
*/
|
|
757
898
|
readonly XDG_RUNTIME_DIR?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.cts","names":[],"sources":["../../src/types/runtime.ts"],"mappings":";;AA6BA;;;;;;;;;;UAAiB,YAAA;EAqEf;;;;;;EAAA,SA9DS,QAAA;EAyHT;;;;;;;;EAAA,SA/GS,WAAA;
|
|
1
|
+
{"version":3,"file":"runtime.d.cts","names":[],"sources":["../../src/types/runtime.ts"],"mappings":";;AA6BA;;;;;;;;;;UAAiB,YAAA;EAqEf;;;;;;EAAA,SA9DS,QAAA;EAyHT;;;;;;;;EAAA,SA/GS,WAAA;EAyMA;;;;;;EAAA,SAjMA,QAAA;EAkQT;;;;;;EAAA,SA1PS,eAAA;EA0TA;;;;;;EAAA,SAlTA,cAAA;EAwXA;;;;;;EAAA,SAhXA,UAAA;EAsbA;;;;;;EAAA,SA9aA,WAAA;EAofA;;;;;;;;;;EAxeT,YAAA;EAslBS;;;;;;;EA7kBT,QAAA;EA4pBS;;;;;;;;;;;EA/oBT,IAAA;EAixBA;;;;;;;EAxwBA,WAAA;EA83BA;;;AASF;;EAh4BE,KAAA;EAy4BA;;;;;EAl4BA,IAAA;;;;;;EAOA,OAAA;;;;;;EAOA,QAAA;;;;;;EAOA,WAAA;;;;;;;;EAUA,eAAA;;;;;;;;;WAUS,UAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;;;;WAaA,IAAA;;;;;;;;;WAUA,YAAA;;;;;;;;;WAUA,oBAAA;;;;;;;;;WAUA,iBAAA;;;;;;;;;WAUA,UAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,UAAA;;;;;;;;;WAUA,eAAA;;;;;;;;;WAUA,WAAA;;;;;;EAOT,UAAA;;;;;;EAOA,kBAAA;;;;;;;;;;EAWA,SAAA;;;;;;;EAQA,gBAAA;;;;;;;EAQA,cAAA;;;;;;;;EASA,SAAA;;;;;;;;EASA,EAAA;;;;;;;;;WAUS,MAAA;;;;;;;;;WAUA,aAAA;;;;;;;;;WAUA,YAAA;;;;;;;;;WAUA,QAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,QAAA;;;;;;;;;WAUA,cAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,UAAA;;;;;;;;;WAUA,kBAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,QAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,OAAA;;;;;;;;;WAUA,KAAA;;;;;;;;;WAUA,KAAA;;;;;;;;;WAUA,UAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,cAAA;;;;;;;;;WAUA,aAAA;;;;;;;;;WAUA,cAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,IAAA;;;;;;;;;WAUA,cAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,OAAA;;;;;;;;;WAUA,MAAA;;;;;;;;;WAUA,OAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,MAAA;;;;;;;;;WAUA,MAAA;;;;;;;;;WAUA,MAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WAUA,SAAA;;;;;;;;;WASA,YAAA;;;;;;;;;WAUA,OAAA;;;;;;;;;WAUA,OAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,MAAA;;;;;;;;;WAUA,IAAA;;;;;;;;;WAUA,WAAA;;;;;;;;;WAUA,kBAAA;;;;;;;;;WAUA,gBAAA;;;;;;;;;WAUA,GAAA;;;;;;;;;;;EAYT,QAAA;;;;;;;;;;;EAYA,UAAA;;;;;;;;;;;EAYA,SAAA;;;;;;;;;;;EAYA,OAAA;;;;;;;;;;;EAYA,QAAA;;;;;;;;;;;;;;WAeS,YAAA;;;;;;;;;;;;;;WAeA,OAAA;;;;;;;;;;;;;;WAeA,aAAA;;;;;;;;;;;;;;WAeA,eAAA;;;;;;;;;;;;;;WAeA,cAAA;;;;;;;;;;;;;;WAeA,cAAA;;;;;;;;;;;;;;WAeA,eAAA;;;;;;;;;;;;EAaT,cAAA;AAAA;;;;;;;UASe,gBAAA;;;;;;;;;EASf,cAAA;AAAA"}
|