storefront-layouts 1.0.0 → 1.0.1
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 +2 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A comprehensive package of shared layout components, utilities, and services for Storefront applications. This package contains all layout components, UI components, hooks, contexts, and utility functions used across Payaza Storefront applications.
|
|
4
4
|
|
|
5
|
-
**This is the
|
|
6
|
-
|
|
7
|
-
> An unrelated `payaza-storefront-layouts` package previously existed on npm, published from an account that wasn't authorized to represent this project. It is not affiliated with this repo - use `storefront-layouts` above.
|
|
5
|
+
**This is the staging package** - built from the `development` branch and wired to Payaza's staging checkout SDK. Do not use it in production; use [`storefront-layouts`](https://www.npmjs.com/package/storefront-layouts) (built from `main`) instead. See [Releasing](#releasing) below for how the two relate.
|
|
8
6
|
|
|
9
7
|
## Overview
|
|
10
8
|
|
|
@@ -533,7 +531,7 @@ Layouts are designed to work with dynamic data:
|
|
|
533
531
|
## Releasing
|
|
534
532
|
|
|
535
533
|
- **Staging**: every push to `development` publishes a new `storefront-layouts-staging` prerelease automatically - no manual steps.
|
|
536
|
-
- **Production**:
|
|
534
|
+
- **Production**: every merge into `main` publishes a new patch version of `storefront-layouts` (`latest` tag) automatically - no manual version edits, changesets, or `npm publish` needed. The workflow reads the version currently on npm, bumps it by one patch, and publishes that. If you need a minor or major bump instead, run `npm version minor|major` on `main` yourself right after a merge - the next automated run will patch forward from whatever it finds published.
|
|
537
535
|
|
|
538
536
|
Check current published versions with `npm view storefront-layouts dist-tags` / `npm view storefront-layouts-staging dist-tags`.
|
|
539
537
|
|