@jarwizz/create-jarshop 0.1.2 → 0.1.4
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 -2
- package/dist/generator.js +4 -1
- package/dist/generator.js.map +1 -1
- package/dist/template/AGENTS.md +3 -3
- package/dist/template/CONTEXT.md +4 -0
- package/dist/template/README.md +5 -0
- package/dist/template/package.json +6 -1
- package/dist/template/pnpm-lock.yaml +2339 -79
- package/dist/template/pnpm-workspace.yaml +12 -1
- package/dist/template/src/plugins/jarshop-checkout/cod-payment.test.ts +44 -0
- package/dist/template/src/plugins/jarshop-checkout/cod-payment.ts +28 -0
- package/dist/template/src/plugins/jarshop-checkout/confirmation.ts +50 -4
- package/dist/template/src/plugins/jarshop-checkout/index.ts +5 -1
- package/dist/template/src/plugins/jarshop-checkout/jarshop-checkout.plugin.ts +95 -31
- package/dist/template/src/plugins/jarshop-checkout/order-email-delivery-core.ts +1 -1
- package/dist/template/src/seed.ts +41 -19
- package/dist/template/src/vendure-config.ts +5 -3
- package/dist/template/storefront/app/[locale]/checkout/confirmation/route.ts +21 -0
- package/dist/template/storefront/app/[locale]/checkout/success/page.tsx +6 -1
- package/dist/template/storefront/app/[locale]/page.tsx +2 -2
- package/dist/template/storefront/eslint.config.mjs +8 -1
- package/dist/template/storefront/lib/checkout.ts +14 -8
- package/dist/template/storefront/lib/commerce.ts +7 -3
- package/dist/template/storefront/lib/confirmation.ts +66 -18
- package/dist/template/storefront/package.json +7 -3
- package/dist/template/storefront/vitest.config.ts +8 -0
- package/dist/template/turbo.json +7 -0
- package/dist/template-manifest.json +1 -1
- package/package.json +1 -1
- package/dist/template/storefront/pnpm-lock.yaml +0 -4316
- package/dist/template/storefront/pnpm-workspace.yaml +0 -26
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
packages: []
|
|
2
|
-
# The eslint-config-next range otherwise resolves 3.10.1, which pnpm rejects as
|
|
3
|
-
# a trust downgrade. Keep the reviewed compatible resolver exact.
|
|
4
|
-
overrides:
|
|
5
|
-
eslint-import-resolver-typescript: 3.8.7
|
|
6
|
-
minimumReleaseAgeExclude:
|
|
7
|
-
- "@jarwizz/commerce-sdk@0.1.0"
|
|
8
|
-
|
|
9
|
-
allowBuilds:
|
|
10
|
-
esbuild: true
|
|
11
|
-
sharp: true
|
|
12
|
-
protobufjs: false
|
|
13
|
-
strictDepBuilds: true
|
|
14
|
-
dangerouslyAllowAllBuilds: false
|
|
15
|
-
verifyDepsBeforeRun: warn
|
|
16
|
-
savePrefix: ""
|
|
17
|
-
minimumReleaseAge: 1440
|
|
18
|
-
minimumReleaseAgeStrict: true
|
|
19
|
-
minimumReleaseAgeIgnoreMissingTime: false
|
|
20
|
-
trustPolicy: no-downgrade
|
|
21
|
-
# eslint-plugin-react retains this reviewed legacy transitive version. The
|
|
22
|
-
# lockfile still pins its registry integrity and all other trust checks remain on.
|
|
23
|
-
trustPolicyExclude:
|
|
24
|
-
- semver@6.3.1
|
|
25
|
-
trustLockfile: false
|
|
26
|
-
blockExoticSubdeps: true
|