@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 CHANGED
@@ -1,3 +1,29 @@
1
1
  # Wix Vibe Forms App Plugin
2
2
 
3
- A Wix Vibe plugin for Forms App.
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.