@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.
- package/dist/babel/index.cjs +1 -0
- package/dist/babel/index.d.cts +30 -0
- package/dist/babel/index.d.ts +30 -0
- package/dist/babel/index.js +1 -0
- package/dist/babel/plugin.cjs +19 -0
- package/dist/babel/plugin.d.cts +33 -0
- package/dist/babel/plugin.d.ts +33 -0
- package/dist/babel/plugin.js +19 -0
- package/dist/chunk-FBBMZ4NC.cjs +7 -0
- package/dist/chunk-UCUR73HG.js +7 -0
- package/dist/components/env.cjs +40 -0
- package/dist/components/env.d.cts +106 -0
- package/dist/components/env.d.ts +106 -0
- package/dist/components/env.js +40 -0
- package/dist/components/index.cjs +1 -0
- package/dist/components/index.d.cts +10 -0
- package/dist/components/index.d.ts +10 -0
- package/dist/components/index.js +1 -0
- package/dist/helpers/index.cjs +1 -0
- package/dist/helpers/index.d.cts +34 -0
- package/dist/helpers/index.d.ts +34 -0
- package/dist/helpers/index.js +1 -0
- package/dist/helpers/load.cjs +7 -0
- package/dist/helpers/load.d.cts +59 -0
- package/dist/helpers/load.d.ts +59 -0
- package/dist/helpers/load.js +7 -0
- package/dist/helpers/persistence.cjs +7 -0
- package/dist/helpers/persistence.d.cts +107 -0
- package/dist/helpers/persistence.d.ts +107 -0
- package/dist/helpers/persistence.js +7 -0
- package/dist/helpers/reflect.cjs +7 -0
- package/dist/helpers/reflect.d.cts +71 -0
- package/dist/helpers/reflect.d.ts +71 -0
- package/dist/helpers/reflect.js +7 -0
- package/dist/helpers/source-file-env.cjs +7 -0
- package/dist/helpers/source-file-env.d.cts +7 -0
- package/dist/helpers/source-file-env.d.ts +7 -0
- package/dist/helpers/source-file-env.js +7 -0
- package/dist/helpers/template-helpers.cjs +7 -0
- package/dist/helpers/template-helpers.d.cts +40 -0
- package/dist/helpers/template-helpers.d.ts +40 -0
- package/dist/helpers/template-helpers.js +7 -0
- package/dist/index.cjs +22 -0
- package/dist/index.d.cts +70 -0
- package/dist/index.d.ts +70 -0
- package/dist/index.js +22 -0
- package/dist/runtime-CUeIsMV9.d.ts +1753 -0
- package/dist/runtime-DEhb6gxi.d.cts +1753 -0
- package/dist/types/index.cjs +1 -0
- package/dist/types/index.d.cts +29 -0
- package/dist/types/index.d.ts +29 -0
- package/dist/types/index.js +1 -0
- package/dist/types/plugin.cjs +1 -0
- package/dist/types/plugin.d.cts +1727 -0
- package/dist/types/plugin.d.ts +1727 -0
- package/dist/types/plugin.js +0 -0
- package/dist/types/runtime.cjs +1 -0
- package/dist/types/runtime.d.cts +24 -0
- package/dist/types/runtime.d.ts +24 -0
- package/dist/types/runtime.js +0 -0
- package/dist/vfs-Bl84Hw2V.d.cts +393 -0
- package/dist/vfs-Bl84Hw2V.d.ts +393 -0
- 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';
|