@acmekit/admin-vite-plugin 2.13.1
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 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +2194 -0
- package/dist/index.mjs +2196 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# @acmekit/admin-vite-plugin
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as Vite from 'vite';
|
|
2
|
+
|
|
3
|
+
interface AcmeKitVitePluginOptions {
|
|
4
|
+
sources?: string[];
|
|
5
|
+
pluginMode?: boolean;
|
|
6
|
+
}
|
|
7
|
+
type AcmeKitVitePlugin = (config?: AcmeKitVitePluginOptions) => Vite.Plugin;
|
|
8
|
+
|
|
9
|
+
declare const acmekitVitePlugin: AcmeKitVitePlugin;
|
|
10
|
+
|
|
11
|
+
export { type AcmeKitVitePlugin, acmekitVitePlugin as default };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as Vite from 'vite';
|
|
2
|
+
|
|
3
|
+
interface AcmeKitVitePluginOptions {
|
|
4
|
+
sources?: string[];
|
|
5
|
+
pluginMode?: boolean;
|
|
6
|
+
}
|
|
7
|
+
type AcmeKitVitePlugin = (config?: AcmeKitVitePluginOptions) => Vite.Plugin;
|
|
8
|
+
|
|
9
|
+
declare const acmekitVitePlugin: AcmeKitVitePlugin;
|
|
10
|
+
|
|
11
|
+
export { type AcmeKitVitePlugin, acmekitVitePlugin as default };
|