@wix/vibe-forms-app-plugin 0.18.0 → 0.20.0
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 +27 -1
- package/dist/index.cjs +1043 -1459
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -8
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
1
|
# Wix Vibe Forms App Plugin
|
|
2
2
|
|
|
3
|
-
A Wix Vibe plugin
|
|
3
|
+
A Wix Vibe plugin that automatically installs and configures the Wix Forms App, enabling dynamic form creation and integration for Wix Vibe projects.
|
|
4
|
+
|
|
5
|
+
## Development
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Install dependencies
|
|
9
|
+
yarn install
|
|
10
|
+
|
|
11
|
+
# Build the plugin
|
|
12
|
+
yarn build
|
|
13
|
+
|
|
14
|
+
# Build the plugin in watch mode
|
|
15
|
+
yarn build --watch
|
|
16
|
+
|
|
17
|
+
# Fix linting issues
|
|
18
|
+
yarn lint:fix
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
To use local build of `vibe-forms-plugin-files`, set `useLocal` param to true on `install` function.
|
|
22
|
+
```
|
|
23
|
+
await unzipAndMergePluginFiles(env, true);
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Publishing new version
|
|
27
|
+
|
|
28
|
+
Publish new version by bumping the package version in `package.json` manually.
|
|
29
|
+
You also have to update the Form app SDK extension on dev center to use the new version.
|