@pinegrow/vite-plugin 3.0.72-beta.0 → 3.0.72-beta.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/package.json CHANGED
@@ -1,50 +1,50 @@
1
- {
2
- "name": "@pinegrow/vite-plugin",
3
- "version": "3.0.72-beta.0",
4
- "description": "Pinegrow Vite Plugin",
5
- "type": "module",
6
- "files": [
7
- "dist",
8
- "./types.d.ts"
9
- ],
10
- "main": "./dist/index.cjs",
11
- "module": "./dist/index.mjs",
12
- "types": "./types.d.ts",
13
- "exports": {
14
- ".": {
15
- "types": "./types.d.ts",
16
- "import": "./dist/index.mjs",
17
- "require": "./dist/index.cjs"
1
+ {
2
+ "name": "@pinegrow/vite-plugin",
3
+ "version": "3.0.72-beta.1",
4
+ "description": "Pinegrow Vite Plugin",
5
+ "type": "module",
6
+ "files": [
7
+ "dist",
8
+ "./types.d.ts"
9
+ ],
10
+ "main": "./dist/index.cjs",
11
+ "module": "./dist/index.mjs",
12
+ "types": "./types.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./types.d.ts",
16
+ "import": "./dist/index.mjs",
17
+ "require": "./dist/index.cjs"
18
18
  },
19
19
  "./dev": {
20
20
  "import": "./src/index.dev.js",
21
21
  "require": "./src/index.dev.js"
22
22
  },
23
- "./vue": {
24
- "import": "./dist/vue/index.js"
25
- }
26
- },
27
- "keywords": [
28
- "pinegrow",
29
- "vue designer",
30
- "vuedesigner",
31
- "vue-designer",
32
- "vite-plugin",
33
- "@pinegrow/vite-plugin"
34
- ],
35
- "author": "Pinegrow (http://pinegrow.com/)",
36
- "license": "MIT",
37
- "scripts": {
38
- "build": "webpack -- --env mode=production vite",
39
- "build:vite-plugin": "webpack -- --env mode=production vite",
40
- "build:vite-plugin:dev": "webpack -- --env mode=development vite",
41
- "publish-beta": "npm run increment-beta-version && npm publish --tag beta",
42
- "increment-beta-version": "npm version prerelease --preid=beta",
43
- "publish-patch": "npm run increment-version && npm publish",
44
- "increment-version": "npm version patch"
45
- },
46
- "dependencies": {
47
- "@vue/compiler-sfc": "^3.2.45",
48
- "magic-string": "^0.27.0"
49
- }
50
- }
23
+ "./vue": {
24
+ "import": "./dist/vue/index.js"
25
+ }
26
+ },
27
+ "keywords": [
28
+ "pinegrow",
29
+ "vue designer",
30
+ "vuedesigner",
31
+ "vue-designer",
32
+ "vite-plugin",
33
+ "@pinegrow/vite-plugin"
34
+ ],
35
+ "author": "Pinegrow (http://pinegrow.com/)",
36
+ "license": "MIT",
37
+ "scripts": {
38
+ "build": "webpack -- --env mode=production vite",
39
+ "build:vite-plugin": "webpack -- --env mode=production vite",
40
+ "build:vite-plugin:dev": "webpack -- --env mode=development vite",
41
+ "publish-beta": "npm run increment-beta-version && npm publish --tag beta",
42
+ "increment-beta-version": "npm version prerelease --preid=beta",
43
+ "publish-patch": "npm run increment-version && npm publish",
44
+ "increment-version": "npm version patch"
45
+ },
46
+ "dependencies": {
47
+ "@vue/compiler-sfc": "^3.2.45",
48
+ "magic-string": "^0.27.0"
49
+ }
50
+ }
package/types.d.ts CHANGED
@@ -84,29 +84,8 @@ export interface LiveDesignerOptions {
84
84
  devServerUrls?: {
85
85
  local?: string
86
86
  network?: string
87
- hmr?: string
88
87
  }
89
88
 
90
- /**
91
- * Debounce delay, in milliseconds, for Pinegrow-triggered Vite watcher change events.
92
- * This coalesces live-edit snapshot bursts before Vite/Nuxt HMR processing.
93
- * @default 75
94
- */
95
- watcherEventDelay?: number
96
-
97
- /**
98
- * Socket.IO transports used to connect the dev server to Pinegrow.
99
- * Defaults to websocket-only to avoid polling/upgrade resets in Nuxt dev servers.
100
- */
101
- socketTransports?: string[]
102
-
103
- /**
104
- * Allow Socket.IO transport upgrades. Disabled by default for deterministic local
105
- * Pinegrow connections.
106
- * @default false
107
- */
108
- socketUpgrade?: boolean
109
-
110
89
  /**
111
90
  * Preferred format for icons in icon-picker - https://github.com/antfu/icones/blob/main/src/utils/case.ts
112
91
  * * @default 'unocss' // For eg, i-material-symbols-home
@@ -159,3 +138,4 @@ interface PinegrowVitePlugin<VitePluginOption> {
159
138
  declare function export_default(liveDesigner: LiveDesignerOptions): PinegrowVitePlugin
160
139
 
161
140
  export { PinegrowVitePlugin, LiveDesignerOptions, export_default as default, export_default as liveDesigner }
141
+