@decocms/apps 1.13.0 → 1.14.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 +15 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -17,6 +17,21 @@ Commerce integrations for [deco.cx](https://deco.cx) storefronts on **TanStack S
|
|
|
17
17
|
npm install @decocms/apps
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
### Release channels
|
|
21
|
+
|
|
22
|
+
`@decocms/apps` publishes two npm dist-tags:
|
|
23
|
+
|
|
24
|
+
- **`@latest`** — default channel. `npm install @decocms/apps` and any `^X.Y.Z` range resolve here.
|
|
25
|
+
- **`@next`** — opt-in prerelease channel for validation builds (`X.Y.Z-next.N`). Carets never resolve to prereleases, so you only get these by asking:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# Follow the next channel (re-resolves on each install)
|
|
29
|
+
npm install @decocms/apps@next
|
|
30
|
+
|
|
31
|
+
# Or pin an exact prerelease
|
|
32
|
+
npm install @decocms/apps@1.14.0-next.0
|
|
33
|
+
```
|
|
34
|
+
|
|
20
35
|
---
|
|
21
36
|
|
|
22
37
|
## Minimum wiring
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decocms/apps",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Deco commerce apps for TanStack Start - Shopify, VTEX, commerce types, analytics utils",
|
|
6
6
|
"exports": {
|
|
@@ -118,7 +118,6 @@
|
|
|
118
118
|
"@biomejs/biome": "^2.4.7",
|
|
119
119
|
"@decocms/start": "^2.5.0",
|
|
120
120
|
"@semantic-release/exec": "^7.1.0",
|
|
121
|
-
"@semantic-release/git": "^10.0.1",
|
|
122
121
|
"@tanstack/react-query": "^5.90.21",
|
|
123
122
|
"@types/react": "^19.0.0",
|
|
124
123
|
"@vitest/coverage-v8": "^4.1.0",
|