@wix/builder-utils 1.21.1 → 1.21.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.
- package/README.md +44 -0
- package/package.json +3 -2
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Package Overview
|
|
2
|
+
|
|
3
|
+
This package is part of the site export system provided by Wix.
|
|
4
|
+
|
|
5
|
+
It is used as a supporting dependency for React applications generated through the Wix export flow, and is installed automatically as part of that process.
|
|
6
|
+
|
|
7
|
+
## Intended Usage
|
|
8
|
+
|
|
9
|
+
This package is designed to work within the context of:
|
|
10
|
+
|
|
11
|
+
- Applications generated via Wix site export
|
|
12
|
+
- The associated runtime and tooling provided by Wix
|
|
13
|
+
|
|
14
|
+
When used in this environment, it will be kept up to date and function as expected.
|
|
15
|
+
|
|
16
|
+
## Usage Outside of Wix Export
|
|
17
|
+
|
|
18
|
+
While this package is publicly available on npm, it is not intended for standalone use.
|
|
19
|
+
|
|
20
|
+
- The API surface may change without notice
|
|
21
|
+
- Behavior may depend on internal Wix systems or assumptions
|
|
22
|
+
- Documentation is limited to the export use case
|
|
23
|
+
|
|
24
|
+
If you're not using a Wix-generated project, this package is unlikely to behave as expected.
|
|
25
|
+
|
|
26
|
+
## Stability & Updates
|
|
27
|
+
|
|
28
|
+
This package follows the release cycle of Wix export features.
|
|
29
|
+
|
|
30
|
+
- Updates may include breaking changes
|
|
31
|
+
- Versioning is aligned with internal system needs
|
|
32
|
+
- No guarantees are made for external compatibility
|
|
33
|
+
|
|
34
|
+
Projects generated through Wix will receive compatible updates as needed.
|
|
35
|
+
|
|
36
|
+
## Support
|
|
37
|
+
|
|
38
|
+
Support is provided for:
|
|
39
|
+
|
|
40
|
+
- Issues encountered within Wix-exported applications
|
|
41
|
+
|
|
42
|
+
Support is not provided for:
|
|
43
|
+
|
|
44
|
+
- Custom or standalone usage of this package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/builder-utils",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.2",
|
|
4
4
|
"description": "Builder utilities for merging props with custom logic",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"src",
|
|
11
11
|
"dist",
|
|
12
|
+
"README.md",
|
|
12
13
|
"!**/*.tsbuildinfo"
|
|
13
14
|
],
|
|
14
15
|
"scripts": {
|
|
@@ -60,5 +61,5 @@
|
|
|
60
61
|
}
|
|
61
62
|
},
|
|
62
63
|
"module": "dist/esm/index.js",
|
|
63
|
-
"falconPackageHash": "
|
|
64
|
+
"falconPackageHash": "86584a97423b2dd17431a2f7fd280a974c44eda1466e3768530ea58f"
|
|
64
65
|
}
|