@lookiero/checkout 15.1.0 → 15.2.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/AGENTS.md +54 -0
- package/CHANGELOG.md +9 -0
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +2 -2
- package/package.json +3 -3
- package/src/infrastructure/ui/views/item/components/productVariantSlider/__snapshots__/ProductVariantSlider.test.tsx.snap +0 -2
- package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +0 -6
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +0 -1
package/AGENTS.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# checkout — AI Agent Ruleset
|
|
2
|
+
|
|
3
|
+
Workspace: `@lookiero/checkout`. Expo + `sty-psp` tooling. Has EAS hooks, Cypress (port 19004), Detox e2e.
|
|
4
|
+
|
|
5
|
+
Root rules: see `../../AGENTS.md`. This file overrides root on conflict.
|
|
6
|
+
|
|
7
|
+
## Auto-invoke skills
|
|
8
|
+
|
|
9
|
+
| Action | Skill |
|
|
10
|
+
| ---------------------------------------------- | ---------------------- |
|
|
11
|
+
| Add/modify Expo Router native UI | `building-native-ui` |
|
|
12
|
+
| Build/distribute Expo dev clients | `expo-dev-client` |
|
|
13
|
+
| Create Expo Router API routes (EAS Hosting) | `expo-api-routes` |
|
|
14
|
+
| Deploy to stores / web | `expo-deployment` |
|
|
15
|
+
| Implement network requests / React Query / SWR | `native-data-fetching` |
|
|
16
|
+
| Migrate web code to native via DOM components | `use-dom` |
|
|
17
|
+
| Upgrade Expo SDK and dependencies | `upgrading-expo` |
|
|
18
|
+
|
|
19
|
+
## Commands
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# Local dev (web on proxy-server)
|
|
23
|
+
npm run dev --workspace @lookiero/checkout
|
|
24
|
+
|
|
25
|
+
# Build / lint / test
|
|
26
|
+
npm run build --workspace @lookiero/checkout
|
|
27
|
+
npm run lint --workspace @lookiero/checkout
|
|
28
|
+
npm run test --workspace @lookiero/checkout
|
|
29
|
+
|
|
30
|
+
# Specific Jest test
|
|
31
|
+
npm run test --workspace @lookiero/checkout -- -t "<name>"
|
|
32
|
+
|
|
33
|
+
# Cypress (port 19004)
|
|
34
|
+
npm run cypress --workspace @lookiero/checkout
|
|
35
|
+
npm run cypress:open --workspace @lookiero/checkout
|
|
36
|
+
|
|
37
|
+
# Native
|
|
38
|
+
npx expo prebuild --clean
|
|
39
|
+
npx expo run:android
|
|
40
|
+
npx expo run:ios
|
|
41
|
+
|
|
42
|
+
# Detox e2e
|
|
43
|
+
EXPO_PUBLIC_APP_VARIANT=test npx detox build --configuration android.release
|
|
44
|
+
npx detox test --configuration android.release
|
|
45
|
+
|
|
46
|
+
# EAS
|
|
47
|
+
npm run eas:all --workspace @lookiero/checkout
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Notes
|
|
51
|
+
|
|
52
|
+
- `eas-hooks/` runs on EAS build lifecycle — do not bypass.
|
|
53
|
+
- `proxy-server.js` for local dev; Cypress relies on it.
|
|
54
|
+
- E2E specs in `e2e/`; Cypress in `cypress/`.
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@lookiero/checkout` are generated from Conventional Commits scoped to `apps/checkout`.
|
|
4
|
+
|
|
5
|
+
This file follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
Regenerate with `sp-changelog` (see `skills/sp-changelog/SKILL.md`).
|
|
8
|
+
|
|
9
|
+
> History before 2026-05-15 is not captured here — pre-existing commits did not follow Conventional Commits. New entries are generated from this point forward.
|
package/dist/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "15.
|
|
2
|
-
export declare const RELEASE = "checkout@15.
|
|
1
|
+
export declare const VERSION = "15.2.0";
|
|
2
|
+
export declare const RELEASE = "checkout@15.2.0";
|
package/dist/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = "15.
|
|
2
|
-
export const RELEASE = "checkout@15.
|
|
1
|
+
export const VERSION = "15.2.0";
|
|
2
|
+
export const RELEASE = "checkout@15.2.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lookiero/checkout",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.2.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"sideEffects": "false",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"@lookiero/sty-psp-i18n": "^2.1",
|
|
29
29
|
"@lookiero/sty-psp-locale": "^2.1",
|
|
30
30
|
"@lookiero/sty-psp-logging": "^2.3",
|
|
31
|
-
"@lookiero/sty-psp-notifications": "^2.
|
|
31
|
+
"@lookiero/sty-psp-notifications": "^2.23",
|
|
32
32
|
"@lookiero/sty-psp-react-native": "^3.0",
|
|
33
33
|
"@lookiero/sty-psp-segment": "^0.1",
|
|
34
34
|
"@lookiero/sty-psp-storage": "^1.1",
|
|
35
35
|
"@lookiero/sty-psp-tracking": "^2.5",
|
|
36
|
-
"@lookiero/sty-psp-ui": "^5.
|
|
36
|
+
"@lookiero/sty-psp-ui": "^5.2",
|
|
37
37
|
"@lookiero/sty-psp-ui-settings": "^1.7",
|
|
38
38
|
"@lookiero/sty-psp-units": "^0.1",
|
|
39
39
|
"@lookiero/sty-psp-uuid": "^0.2",
|
|
@@ -459,7 +459,6 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
|
|
|
459
459
|
style={
|
|
460
460
|
[
|
|
461
461
|
{
|
|
462
|
-
"backgroundColor": "#0C0A0A",
|
|
463
462
|
"marginHorizontal": 3,
|
|
464
463
|
},
|
|
465
464
|
{
|
|
@@ -515,7 +514,6 @@ exports[`ProductVariantSlider matches the snapshot 1`] = `
|
|
|
515
514
|
style={
|
|
516
515
|
[
|
|
517
516
|
{
|
|
518
|
-
"backgroundColor": "#0C0A0A",
|
|
519
517
|
"marginHorizontal": 3,
|
|
520
518
|
},
|
|
521
519
|
{
|
|
@@ -470,7 +470,6 @@ exports[`ItemActions component matches the snapshot for a KEPT checkoutItem 1`]
|
|
|
470
470
|
style={
|
|
471
471
|
[
|
|
472
472
|
{
|
|
473
|
-
"backgroundColor": "#0C0A0A",
|
|
474
473
|
"marginHorizontal": 3,
|
|
475
474
|
},
|
|
476
475
|
{
|
|
@@ -526,7 +525,6 @@ exports[`ItemActions component matches the snapshot for a KEPT checkoutItem 1`]
|
|
|
526
525
|
style={
|
|
527
526
|
[
|
|
528
527
|
{
|
|
529
|
-
"backgroundColor": "#0C0A0A",
|
|
530
528
|
"marginHorizontal": 3,
|
|
531
529
|
},
|
|
532
530
|
{
|
|
@@ -1146,7 +1144,6 @@ exports[`ItemActions component matches the snapshot for a REPLACED checkoutItem
|
|
|
1146
1144
|
style={
|
|
1147
1145
|
[
|
|
1148
1146
|
{
|
|
1149
|
-
"backgroundColor": "#0C0A0A",
|
|
1150
1147
|
"marginHorizontal": 3,
|
|
1151
1148
|
},
|
|
1152
1149
|
{
|
|
@@ -1202,7 +1199,6 @@ exports[`ItemActions component matches the snapshot for a REPLACED checkoutItem
|
|
|
1202
1199
|
style={
|
|
1203
1200
|
[
|
|
1204
1201
|
{
|
|
1205
|
-
"backgroundColor": "#0C0A0A",
|
|
1206
1202
|
"marginHorizontal": 3,
|
|
1207
1203
|
},
|
|
1208
1204
|
{
|
|
@@ -1822,7 +1818,6 @@ exports[`ItemActions component matches the snapshot for an INITIAL checkoutItem
|
|
|
1822
1818
|
style={
|
|
1823
1819
|
[
|
|
1824
1820
|
{
|
|
1825
|
-
"backgroundColor": "#0C0A0A",
|
|
1826
1821
|
"marginHorizontal": 3,
|
|
1827
1822
|
},
|
|
1828
1823
|
{
|
|
@@ -1878,7 +1873,6 @@ exports[`ItemActions component matches the snapshot for an INITIAL checkoutItem
|
|
|
1878
1873
|
style={
|
|
1879
1874
|
[
|
|
1880
1875
|
{
|
|
1881
|
-
"backgroundColor": "#0C0A0A",
|
|
1882
1876
|
"marginHorizontal": 3,
|
|
1883
1877
|
},
|
|
1884
1878
|
{
|