@jarwizz/create-jarshop 0.1.2 → 0.1.3

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.
Files changed (31) hide show
  1. package/README.md +2 -2
  2. package/dist/generator.js +4 -1
  3. package/dist/generator.js.map +1 -1
  4. package/dist/template/AGENTS.md +3 -3
  5. package/dist/template/CONTEXT.md +4 -0
  6. package/dist/template/README.md +5 -0
  7. package/dist/template/package.json +6 -1
  8. package/dist/template/pnpm-lock.yaml +2339 -79
  9. package/dist/template/pnpm-workspace.yaml +12 -1
  10. package/dist/template/src/plugins/jarshop-checkout/cod-payment.test.ts +44 -0
  11. package/dist/template/src/plugins/jarshop-checkout/cod-payment.ts +28 -0
  12. package/dist/template/src/plugins/jarshop-checkout/confirmation.ts +37 -4
  13. package/dist/template/src/plugins/jarshop-checkout/index.ts +5 -1
  14. package/dist/template/src/plugins/jarshop-checkout/jarshop-checkout.plugin.ts +80 -23
  15. package/dist/template/src/plugins/jarshop-checkout/order-email-delivery-core.ts +1 -1
  16. package/dist/template/src/seed.ts +41 -19
  17. package/dist/template/src/vendure-config.ts +5 -3
  18. package/dist/template/storefront/app/[locale]/checkout/confirmation/route.ts +21 -0
  19. package/dist/template/storefront/app/[locale]/checkout/success/page.tsx +6 -1
  20. package/dist/template/storefront/app/[locale]/page.tsx +2 -2
  21. package/dist/template/storefront/eslint.config.mjs +8 -1
  22. package/dist/template/storefront/lib/checkout.ts +14 -8
  23. package/dist/template/storefront/lib/commerce.ts +7 -3
  24. package/dist/template/storefront/lib/confirmation.ts +66 -18
  25. package/dist/template/storefront/package.json +7 -3
  26. package/dist/template/storefront/vitest.config.ts +8 -0
  27. package/dist/template/turbo.json +7 -0
  28. package/dist/template-manifest.json +1 -1
  29. package/package.json +1 -1
  30. package/dist/template/storefront/pnpm-lock.yaml +0 -4316
  31. 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