@pinegrow/vite-plugin 3.0.15 → 3.0.16

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.
@@ -572,6 +572,10 @@
572
572
  !*** ../../node_modules/chokidar/lib/nodefs-handler.js ***!
573
573
  \*********************************************************/
574
574
 
575
+ /*!**********************************************************!*\
576
+ !*** ./node_modules/engine.io-parser/build/esm/index.js ***!
577
+ \**********************************************************/
578
+
575
579
  /*!***********************************************************!*\
576
580
  !*** ../../node_modules/@babel/runtime/helpers/typeof.js ***!
577
581
  \***********************************************************/
@@ -584,6 +588,10 @@
584
588
  !*** ../../src/framework-mgmt/pinegrow-config-manager.js ***!
585
589
  \***********************************************************/
586
590
 
591
+ /*!************************************************************!*\
592
+ !*** ./node_modules/engine.io-parser/build/esm/commons.js ***!
593
+ \************************************************************/
594
+
587
595
  /*!*************************************************************!*\
588
596
  !*** ./node_modules/socket.io-client/build/esm-debug/on.js ***!
589
597
  \*************************************************************/
@@ -592,10 +600,6 @@
592
600
  !*** ../../node_modules/@babel/runtime/regenerator/index.js ***!
593
601
  \**************************************************************/
594
602
 
595
- /*!**************************************************************!*\
596
- !*** ../../node_modules/engine.io-parser/build/esm/index.js ***!
597
- \**************************************************************/
598
-
599
603
  /*!**************************************************************!*\
600
604
  !*** ./node_modules/socket.io-client/build/esm-debug/url.js ***!
601
605
  \**************************************************************/
@@ -612,10 +616,6 @@
612
616
  !*** ../../node_modules/@babel/runtime/helpers/toPrimitive.js ***!
613
617
  \****************************************************************/
614
618
 
615
- /*!****************************************************************!*\
616
- !*** ../../node_modules/engine.io-parser/build/esm/commons.js ***!
617
- \****************************************************************/
618
-
619
619
  /*!****************************************************************!*\
620
620
  !*** ./node_modules/engine.io-client/build/esm-debug/index.js ***!
621
621
  \****************************************************************/
@@ -632,6 +632,14 @@
632
632
  !*** ./node_modules/engine.io-client/build/esm-debug/socket.js ***!
633
633
  \*****************************************************************/
634
634
 
635
+ /*!*****************************************************************!*\
636
+ !*** ./node_modules/engine.io-parser/build/esm/decodePacket.js ***!
637
+ \*****************************************************************/
638
+
639
+ /*!*****************************************************************!*\
640
+ !*** ./node_modules/engine.io-parser/build/esm/encodePacket.js ***!
641
+ \*****************************************************************/
642
+
635
643
  /*!*****************************************************************!*\
636
644
  !*** ./node_modules/socket.io-client/build/esm-debug/socket.js ***!
637
645
  \*****************************************************************/
@@ -692,14 +700,6 @@
692
700
  !*** ../../node_modules/@babel/runtime/helpers/asyncToGenerator.js ***!
693
701
  \*********************************************************************/
694
702
 
695
- /*!*********************************************************************!*\
696
- !*** ../../node_modules/engine.io-parser/build/esm/decodePacket.js ***!
697
- \*********************************************************************/
698
-
699
- /*!*********************************************************************!*\
700
- !*** ../../node_modules/engine.io-parser/build/esm/encodePacket.js ***!
701
- \*********************************************************************/
702
-
703
703
  /*!*********************************************************************!*\
704
704
  !*** ../../node_modules/socket.io-parser/build/esm-debug/binary.js ***!
705
705
  \*********************************************************************/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/vite-plugin",
3
- "version": "3.0.15",
3
+ "version": "3.0.16",
4
4
  "description": "Pinegrow Vite Plugin",
5
5
  "type": "module",
6
6
  "files": [
package/types.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  // https://vuedesigner.com
2
2
 
3
3
  import type { PinegrowTailwindCSSModuleOptions } from '@pinegrow/tailwindcss-plugin'
4
+ import type { PinegrowVuetifyModuleOptions } from '@pinegrow/vuetify-plugin'
4
5
  import type { PluginOption as VitePluginOption } from 'vite'
5
6
 
6
7
  interface PinegrowExternalPlugin {
@@ -101,6 +102,7 @@ export interface LiveDesignerOptions {
101
102
  * For options, refer to https://www.npmjs.com/package/@pinegrow/tailwindcss-plugin
102
103
  */
103
104
  tailwindcss?: PinegrowTailwindCSSModuleOptions
105
+ vuetify?: PinegrowVuetifyModuleOptions
104
106
  }
105
107
 
106
108
  interface PinegrowVitePlugin<VitePluginOption> {