@pinegrow/vite-plugin 3.0.0-beta.122 → 3.0.0-beta.125
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/index.cjs +1 -1
- package/dist/index.cjs.LICENSE.txt +1 -1
- package/package.json +3 -2
- package/types.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/vite-plugin",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.125",
|
|
4
4
|
"description": "Pinegrow Vite Plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@vue/compiler-sfc": "^3.2.45",
|
|
45
45
|
"magic-string": "^0.27.0",
|
|
46
|
-
"node-html-parser": "^5.2.0"
|
|
46
|
+
"node-html-parser": "^5.2.0",
|
|
47
|
+
"vite": "^4.3.5"
|
|
47
48
|
}
|
|
48
49
|
}
|
package/types.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { PinegrowTailwindCSSModuleOptions } from '@pinegrow/tailwindcss-plugin'
|
|
2
2
|
import type { Options as AutoImportComponentsOptions } from 'unplugin-vue-components/types'
|
|
3
3
|
import type { Options as AutoImportAPIsOptions } from 'unplugin-auto-import/types'
|
|
4
|
+
import type { PluginOption as VitePluginOption } from 'vite'
|
|
4
5
|
|
|
5
6
|
interface Options {
|
|
6
7
|
/**
|
|
@@ -40,7 +41,7 @@ interface Options {
|
|
|
40
41
|
tailwindcss?: PinegrowTailwindCSSModuleOptions
|
|
41
42
|
}
|
|
42
43
|
|
|
43
|
-
interface PinegrowVitePlugin {
|
|
44
|
+
interface PinegrowVitePlugin<VitePluginOption> {
|
|
44
45
|
/**
|
|
45
46
|
* Pinegrow Live Designer options
|
|
46
47
|
* For details, check https://pinegrow.com/vue-designer
|