@wix/vibe-forms-plugin 0.32.1 → 0.32.2

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 +27 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,3 +1,29 @@
1
1
  # Wix Vibe Forms Plugin
2
2
 
3
- A Wix Vibe plugin that enables using form headless components for Forms consumers.
3
+ A Wix Vibe plugin that enables using form headless components for Forms consumers.
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. The version should be bumped for *all* forms plugins.
29
+ You also have to update the Old Wix Forms and Payments SDK extension on dev center to use the new version.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/vibe-forms-plugin",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "main": "dist/index.cjs",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@types/adm-zip": "^0.5.7",
33
- "@wix/vibe-forms-plugin-files": "0.32.1",
33
+ "@wix/vibe-forms-plugin-files": "0.32.2",
34
34
  "@wix/vibe-plugin-utils": "0.1.0",
35
35
  "@wix/wix-vibe-plugins": "^0.0.2",
36
36
  "adm-zip": "^0.5.16"
@@ -55,5 +55,5 @@
55
55
  ]
56
56
  }
57
57
  },
58
- "falconPackageHash": "f41e4d21e5e58e6c0e9f96af0b9e44f04e6389980feaca6bc96a7a7c"
58
+ "falconPackageHash": "be5fc3e8c15ba087821dd4da51aa1e45156dcf2f5f803d93efa2dab7"
59
59
  }