@pinegrow/nuxt-module 3.0.0-beta.111 → 3.0.0-beta.113

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 CHANGED
@@ -1,5 +1,67 @@
1
- # @pinegrow/nuxt-module
1
+ <!-- [![@pinegrow/nuxt-module](https://tailwindcss.nuxtjs.org/social-card.png)](https://tailwindcss.nuxtjs.org) -->
2
2
 
3
- ## Pinegrow Nuxt module
3
+ # Pinegrow Nuxt Module
4
4
 
5
- http://www.pinegrow.com
5
+ [![npm version][npm-version-src]][npm-version-href]
6
+ [![npm downloads][npm-downloads-src]][npm-downloads-href]
7
+ [![License][license-src]][license-href]
8
+
9
+ [Nuxt](https://nuxt.com/) module for [Pinegrow](https://pinegrow.com) ⚡️
10
+
11
+ Pinegrow Nuxt Module enables connection and interaction between your Vite Dev-Server and Pinegrow apps (currently only Vue Designer).
12
+
13
+ - [📖 &nbsp;Documentation](https://pinegrow.com/vue-designer)
14
+
15
+ ## Features
16
+
17
+ - 🎨&nbsp; Visually live-design your Vite-powered Nuxt apps
18
+ - ⚙️&nbsp; Smartly integrates into your Nuxt workflow in dev-mode only
19
+ - ✨&nbsp; No lock-in, Pinegrow is an open-tool ❤️
20
+
21
+ ## Quick Setup
22
+
23
+ 1. Install: Add `@pinegrow/nuxt-module` to your project
24
+
25
+ ```bash
26
+ # Using npm
27
+ npm install --save-dev @pinegrow/nuxt-module
28
+
29
+ # Using pnpm
30
+ pnpm add --save-dev @pinegrow/nuxt-module
31
+ ```
32
+
33
+ 2. Configure: Add `@pinegrow/nuxt-module` to your Nuxt Integrations array `nuxt.config.{js,ts}`
34
+
35
+ ```js
36
+ //nuxt.config.js (or) nuxt.config.ts
37
+
38
+ export default defineNuxtConfig({
39
+ modules: [
40
+ '@pinegrow/nuxt-module',
41
+ //...
42
+ ],
43
+ pinegrow: {
44
+ liveDesigner: {
45
+ //...
46
+ },
47
+ },
48
+ //...
49
+ })
50
+ ```
51
+
52
+ Now, open your project in your Pinegrow app (currently only Vue Designer). ✨
53
+
54
+ ## License
55
+
56
+ [MIT License](./LICENSE)
57
+
58
+ Copyright (c) Pinegrow
59
+
60
+ <!-- Badges -->
61
+
62
+ [npm-version-src]: https://img.shields.io/npm/v/@pinegrow/nuxt-module/latest.svg?style=flat&colorA=18181B&colorB=28CF8D
63
+ [npm-version-href]: https://npmjs.com/package/@pinegrow/nuxt-module
64
+ [npm-downloads-src]: https://img.shields.io/npm/dm/@pinegrow/nuxt-module.svg?style=flat&colorA=18181B&colorB=28CF8D
65
+ [npm-downloads-href]: https://npmjs.com/package/@pinegrow/nuxt-module
66
+ [license-src]: https://img.shields.io/npm/l/@pinegrow/nuxt-module.svg?style=flat&colorA=18181B&colorB=28CF8D
67
+ [license-href]: https://npmjs.com/package/@pinegrow/nuxt-module
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.1.0"
6
6
  },
7
- "version": "3.0.0-beta.110"
7
+ "version": "3.0.0-beta.112"
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/nuxt-module",
3
- "version": "3.0.0-beta.111",
3
+ "version": "3.0.0-beta.113",
4
4
  "description": "Pinegrow Nuxt Module",
5
5
  "author": "Pinegrow (http://pinegrow.com/)",
6
6
  "license": "MIT",
@@ -19,7 +19,9 @@
19
19
  "types": "./dist/types.d.ts",
20
20
  "keywords": [
21
21
  "pinegrow",
22
- "nuxt module"
22
+ "vue-designer",
23
+ "nuxt-module",
24
+ "@pinegrow/nuxt-module"
23
25
  ],
24
26
  "scripts": {
25
27
  "build": "npm run dev:prepare && npm run build:module",
@@ -35,7 +37,7 @@
35
37
  },
36
38
  "dependencies": {
37
39
  "@nuxt/kit": "latest",
38
- "@pinegrow/vite-plugin": "3.0.0-beta.111"
40
+ "@pinegrow/vite-plugin": "3.0.0-beta.113"
39
41
  },
40
42
  "devDependencies": {
41
43
  "@nuxt/module-builder": "latest",