@powerlines/plugin-env 0.13.4 → 0.13.6

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.
Files changed (63) hide show
  1. package/dist/babel/index.cjs +1 -0
  2. package/dist/babel/index.d.cts +30 -0
  3. package/dist/babel/index.d.ts +30 -0
  4. package/dist/babel/index.js +1 -0
  5. package/dist/babel/plugin.cjs +19 -0
  6. package/dist/babel/plugin.d.cts +33 -0
  7. package/dist/babel/plugin.d.ts +33 -0
  8. package/dist/babel/plugin.js +19 -0
  9. package/dist/chunk-FBBMZ4NC.cjs +7 -0
  10. package/dist/chunk-UCUR73HG.js +7 -0
  11. package/dist/components/env.cjs +40 -0
  12. package/dist/components/env.d.cts +106 -0
  13. package/dist/components/env.d.ts +106 -0
  14. package/dist/components/env.js +40 -0
  15. package/dist/components/index.cjs +1 -0
  16. package/dist/components/index.d.cts +10 -0
  17. package/dist/components/index.d.ts +10 -0
  18. package/dist/components/index.js +1 -0
  19. package/dist/helpers/index.cjs +1 -0
  20. package/dist/helpers/index.d.cts +34 -0
  21. package/dist/helpers/index.d.ts +34 -0
  22. package/dist/helpers/index.js +1 -0
  23. package/dist/helpers/load.cjs +7 -0
  24. package/dist/helpers/load.d.cts +59 -0
  25. package/dist/helpers/load.d.ts +59 -0
  26. package/dist/helpers/load.js +7 -0
  27. package/dist/helpers/persistence.cjs +7 -0
  28. package/dist/helpers/persistence.d.cts +107 -0
  29. package/dist/helpers/persistence.d.ts +107 -0
  30. package/dist/helpers/persistence.js +7 -0
  31. package/dist/helpers/reflect.cjs +7 -0
  32. package/dist/helpers/reflect.d.cts +71 -0
  33. package/dist/helpers/reflect.d.ts +71 -0
  34. package/dist/helpers/reflect.js +7 -0
  35. package/dist/helpers/source-file-env.cjs +7 -0
  36. package/dist/helpers/source-file-env.d.cts +7 -0
  37. package/dist/helpers/source-file-env.d.ts +7 -0
  38. package/dist/helpers/source-file-env.js +7 -0
  39. package/dist/helpers/template-helpers.cjs +7 -0
  40. package/dist/helpers/template-helpers.d.cts +40 -0
  41. package/dist/helpers/template-helpers.d.ts +40 -0
  42. package/dist/helpers/template-helpers.js +7 -0
  43. package/dist/index.cjs +22 -0
  44. package/dist/index.d.cts +70 -0
  45. package/dist/index.d.ts +70 -0
  46. package/dist/index.js +22 -0
  47. package/dist/runtime-CUeIsMV9.d.ts +1753 -0
  48. package/dist/runtime-DEhb6gxi.d.cts +1753 -0
  49. package/dist/types/index.cjs +1 -0
  50. package/dist/types/index.d.cts +29 -0
  51. package/dist/types/index.d.ts +29 -0
  52. package/dist/types/index.js +1 -0
  53. package/dist/types/plugin.cjs +1 -0
  54. package/dist/types/plugin.d.cts +1727 -0
  55. package/dist/types/plugin.d.ts +1727 -0
  56. package/dist/types/plugin.js +0 -0
  57. package/dist/types/runtime.cjs +1 -0
  58. package/dist/types/runtime.d.cts +24 -0
  59. package/dist/types/runtime.d.ts +24 -0
  60. package/dist/types/runtime.js +0 -0
  61. package/dist/vfs-Bl84Hw2V.d.cts +393 -0
  62. package/dist/vfs-Bl84Hw2V.d.ts +393 -0
  63. package/package.json +75 -81
@@ -0,0 +1 @@
1
+ 'use strict';var plugin=require('./plugin'),runtime=require('./runtime');Object.keys(plugin).forEach(function(k){if(k!=='default'&&!Object.prototype.hasOwnProperty.call(exports,k))Object.defineProperty(exports,k,{enumerable:true,get:function(){return plugin[k]}})});Object.keys(runtime).forEach(function(k){if(k!=='default'&&!Object.prototype.hasOwnProperty.call(exports,k))Object.defineProperty(exports,k,{enumerable:true,get:function(){return runtime[k]}})});
@@ -0,0 +1,29 @@
1
+ export { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig, EnvType } from './plugin.cjs';
2
+ export { E as EnvInterface, S as SecretsInterface } from '../runtime-DEhb6gxi.cjs';
3
+ import '@alloy-js/core/jsx-runtime';
4
+ import '@deepkit/type';
5
+ import '@stryke/capnp';
6
+ import '@stryke/env/types';
7
+ import '@stryke/types/configuration';
8
+ import '@stryke/env/get-env-paths';
9
+ import '@stryke/types/package-json';
10
+ import 'jiti';
11
+ import 'oxc-parser';
12
+ import 'semver';
13
+ import 'unplugin';
14
+ import '@babel/core';
15
+ import '@storm-software/build-tools/types';
16
+ import '@storm-software/config-tools/types';
17
+ import '@storm-software/config/types';
18
+ import '@stryke/types/base';
19
+ import '@stryke/types/file';
20
+ import 'vite';
21
+ import '@babel/helper-plugin-utils';
22
+ import '@stryke/types/array';
23
+ import '@stryke/types/tsconfig';
24
+ import 'typescript';
25
+ import '../vfs-Bl84Hw2V.cjs';
26
+ import '@stryke/json/types';
27
+ import 'memfs';
28
+ import 'node:fs';
29
+ import 'unionfs';
@@ -0,0 +1,29 @@
1
+ export { EnvPluginContext, EnvPluginOptions, EnvPluginResolvedConfig, EnvPluginUserConfig, EnvType } from './plugin.js';
2
+ export { E as EnvInterface, S as SecretsInterface } from '../runtime-CUeIsMV9.js';
3
+ import '@alloy-js/core/jsx-runtime';
4
+ import '@deepkit/type';
5
+ import '@stryke/capnp';
6
+ import '@stryke/env/types';
7
+ import '@stryke/types/configuration';
8
+ import '@stryke/env/get-env-paths';
9
+ import '@stryke/types/package-json';
10
+ import 'jiti';
11
+ import 'oxc-parser';
12
+ import 'semver';
13
+ import 'unplugin';
14
+ import '@babel/core';
15
+ import '@storm-software/build-tools/types';
16
+ import '@storm-software/config-tools/types';
17
+ import '@storm-software/config/types';
18
+ import '@stryke/types/base';
19
+ import '@stryke/types/file';
20
+ import 'vite';
21
+ import '@babel/helper-plugin-utils';
22
+ import '@stryke/types/array';
23
+ import '@stryke/types/tsconfig';
24
+ import 'typescript';
25
+ import '../vfs-Bl84Hw2V.js';
26
+ import '@stryke/json/types';
27
+ import 'memfs';
28
+ import 'node:fs';
29
+ import 'unionfs';
@@ -0,0 +1 @@
1
+ export*from'./plugin';export*from'./runtime';
@@ -0,0 +1 @@
1
+ 'use strict';