@pinegrow/iles-module 3.0.0-beta.143 → 3.0.0-beta.145

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.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -10,13 +10,13 @@
10
10
 
11
11
  Pinegrow Iles Module enables connection and interaction between your Vite Dev-Server and Pinegrow apps (currently only Vue Designer).
12
12
 
13
- - [📖  Documentation](https://pinegrow.com/vue-designer)
13
+ - [ Learn more about Vue Designer](https://pinegrow.com/vue-designer)
14
14
 
15
15
  ## Features
16
16
 
17
17
  - 🎨  Visually live-design your Vite-powered Iles apps
18
18
  - ⚙️  Smartly integrates into your Iles workflow in dev-mode only
19
- - ✨  No lock-in, Pinegrow is an open-tool ❤️
19
+ - ✨  Clean code 😃, No lock-in - You are in control of your projects and development workflow ❤️
20
20
 
21
21
  ## Quick Setup
22
22
 
@@ -24,10 +24,10 @@ Pinegrow Iles Module enables connection and interaction between your Vite Dev-Se
24
24
 
25
25
  ```bash
26
26
  # Using npm
27
- npm install --save-dev @pinegrow/iles-module
27
+ npm install -D @pinegrow/iles-module
28
28
 
29
29
  # Using pnpm
30
- pnpm add --save-dev @pinegrow/iles-module
30
+ pnpm add -D @pinegrow/iles-module
31
31
  ```
32
32
 
33
33
  2. Configure: Add `@pinegrow/iles-module` to your Iles Integrations array `iles.config.{js,ts}`
@@ -43,6 +43,7 @@ export default defineConfig({
43
43
  '@pinegrow/iles-module',
44
44
  {
45
45
  liveDesigner: {
46
+ // For options, refer to https://www.npmjs.com/package/@pinegrow/vite-plugin
46
47
  //...
47
48
  },
48
49
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinegrow/iles-module",
3
- "version": "3.0.0-beta.143",
3
+ "version": "3.0.0-beta.145",
4
4
  "description": "Pinegrow Iles Module",
5
5
  "author": "Pinegrow (http://pinegrow.com/)",
6
6
  "license": "MIT",
@@ -14,9 +14,9 @@
14
14
  "exports": {
15
15
  "./package.json": "./package.json",
16
16
  ".": {
17
+ "types": "./dist/index.d.ts",
17
18
  "import": "./dist/index.js",
18
- "require": "./dist/index.cjs",
19
- "types": "./dist/index.d.ts"
19
+ "require": "./dist/index.cjs"
20
20
  }
21
21
  },
22
22
  "keywords": [
@@ -34,7 +34,7 @@
34
34
  "increment-beta-version": "npm version prerelease --preid=beta"
35
35
  },
36
36
  "dependencies": {
37
- "@pinegrow/vite-plugin": "3.0.0-beta.143",
37
+ "@pinegrow/vite-plugin": "3.0.0-beta.145",
38
38
  "node-html-parser": "^6.1.5"
39
39
  },
40
40
  "devDependencies": {