unplugin-dingtalk 1000.0.0 → 1002.0.0
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/README.md +1 -6
- package/dist/astro.js +1 -1
- package/dist/{chunk-W5UIO4ZZ.js → chunk-6LTE4RPT.js} +255 -1
- package/dist/{chunk-WE6LHUBA.js → chunk-CTXK6UCW.js} +1 -1
- package/dist/esbuild.js +1 -1
- package/dist/index.js +1 -1
- package/dist/nuxt.js +2 -2
- package/dist/rollup.js +1 -1
- package/dist/rspack.js +1 -1
- package/dist/vite.js +2 -2
- package/dist/webpack.js +1 -1
- package/package.json +14 -52
- package/dist/astro.cjs +0 -6853
- package/dist/astro.d.cts +0 -13
- package/dist/esbuild.cjs +0 -6843
- package/dist/esbuild.d.cts +0 -9
- package/dist/index.cjs +0 -6850
- package/dist/index.d.cts +0 -18
- package/dist/nuxt.cjs +0 -6869
- package/dist/nuxt.d.cts +0 -11
- package/dist/rollup.cjs +0 -6843
- package/dist/rollup.d.cts +0 -9
- package/dist/rspack.cjs +0 -6906
- package/dist/rspack.d.cts +0 -8
- package/dist/types.cjs +0 -19
- package/dist/types.d.cts +0 -40
- package/dist/vite.cjs +0 -6851
- package/dist/vite.d.cts +0 -9
- package/dist/webpack.cjs +0 -6900
- package/dist/webpack.d.cts +0 -9
package/dist/index.d.cts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import * as _unplugin from 'unplugin';
|
|
2
|
-
import { UnpluginFactory } from 'unplugin';
|
|
3
|
-
import dns2 from 'dns2';
|
|
4
|
-
import { Options } from './types.cjs';
|
|
5
|
-
import 'webpack-dev-server';
|
|
6
|
-
import 'node:http';
|
|
7
|
-
import 'vite-plugin-vconsole';
|
|
8
|
-
|
|
9
|
-
declare const resovedInfo: {
|
|
10
|
-
dnsServerInstence: ReturnType<typeof dns2.createServer> | undefined;
|
|
11
|
-
availablePort: number | undefined;
|
|
12
|
-
targetURL: undefined | URL;
|
|
13
|
-
};
|
|
14
|
-
declare function startDnsServer(options?: Options): void;
|
|
15
|
-
declare const unpluginFactory: UnpluginFactory<Options | undefined, boolean>;
|
|
16
|
-
declare const unplugin: _unplugin.UnpluginInstance<Options | undefined, boolean>;
|
|
17
|
-
|
|
18
|
-
export { unplugin as default, resovedInfo, startDnsServer, unplugin, unpluginFactory };
|