unplugin-env 0.1.1 → 0.1.2
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/chunk-6MLX2H57.js +11 -0
- package/dist/{chunk-SE27KXSW.js → chunk-7VC4K6HT.js} +2172 -2020
- package/dist/chunk-C7KNK2L7.js +11 -0
- package/dist/esbuild.cjs +2169 -2021
- package/dist/esbuild.d.cts +6 -0
- package/dist/esbuild.js +4 -3
- package/dist/index.cjs +2175 -2021
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.js +7 -3
- package/dist/nuxt.cjs +2192 -2030
- package/dist/nuxt.d.cts +8 -0
- package/dist/nuxt.d.ts +5 -2
- package/dist/nuxt.js +21 -12
- package/dist/rollup.cjs +2169 -2021
- package/dist/rollup.d.cts +5 -0
- package/dist/rollup.d.ts +1 -2
- package/dist/rollup.js +4 -3
- package/dist/types.cjs +0 -1
- package/dist/types.d.cts +44 -0
- package/dist/types.d.ts +1 -0
- package/dist/vite.cjs +2169 -2021
- package/dist/vite.d.cts +6 -0
- package/dist/vite.js +3 -5
- package/dist/webpack.cjs +2169 -2021
- package/dist/webpack.d.cts +6 -0
- package/dist/webpack.js +3 -5
- package/package.json +33 -3
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as _unplugin from 'unplugin';
|
|
2
|
+
import { UnpluginFactory } from 'unplugin';
|
|
3
|
+
import { Options } from './types.cjs';
|
|
4
|
+
|
|
5
|
+
declare const unpluginFactory: UnpluginFactory<Options | undefined>;
|
|
6
|
+
declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
|
|
7
|
+
|
|
8
|
+
export { unplugin as default, unplugin, unpluginFactory };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _unplugin from 'unplugin';
|
|
2
|
+
import { UnpluginFactory } from 'unplugin';
|
|
2
3
|
import { Options } from './types.js';
|
|
3
4
|
|
|
4
|
-
declare const
|
|
5
|
+
declare const unpluginFactory: UnpluginFactory<Options | undefined>;
|
|
6
|
+
declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
|
|
5
7
|
|
|
6
|
-
export {
|
|
8
|
+
export { unplugin as default, unplugin, unpluginFactory };
|
package/dist/index.js
CHANGED