@cimplify/cli 0.6.11 → 0.6.14

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 (46) hide show
  1. package/dist/{add-5G7UZ6DA.mjs → add-6SPMUMSJ.mjs} +1 -1
  2. package/dist/{assets-EBEMMENZ.mjs → assets-74SK63TR.mjs} +73 -24
  3. package/dist/{chunk-SNDMYYOK.mjs → chunk-CNIFXKZV.mjs} +1 -1
  4. package/dist/{chunk-KOJZB3S4.mjs → chunk-RGF2RSSR.mjs} +4 -1
  5. package/dist/chunk-RIOQDUQO.mjs +5707 -0
  6. package/dist/dispatcher.mjs +12 -10
  7. package/dist/{doctor-3UOTPOJ6.mjs → doctor-726TVOXT.mjs} +2 -2
  8. package/dist/{explain-DXJ3R52F.mjs → explain-6BWR5MCK.mjs} +29 -1
  9. package/dist/inspect-CGYX4DDF.mjs +411 -0
  10. package/dist/{introspect-77SUZ5X5.mjs → introspect-4LD27NVX.mjs} +2 -2
  11. package/dist/{list-QX7RM3P3.mjs → list-2YRVKBXY.mjs} +1 -1
  12. package/dist/{update-UHKPFT6F.mjs → update-J65Z6Q7E.mjs} +1 -1
  13. package/package.json +4 -1
  14. package/templates/storefront-auto/app/api/revalidate/route.ts +5 -0
  15. package/templates/storefront-auto/bun.lock +745 -6
  16. package/templates/storefront-auto/package.json +2 -2
  17. package/templates/storefront-auto/tsconfig.json +24 -6
  18. package/templates/storefront-bakery/app/api/revalidate/route.ts +5 -0
  19. package/templates/storefront-bakery/bun.lock +1167 -0
  20. package/templates/storefront-bakery/package.json +2 -2
  21. package/templates/storefront-bakery/tsconfig.json +24 -6
  22. package/templates/storefront-fashion/app/api/revalidate/route.ts +5 -0
  23. package/templates/storefront-fashion/bun.lock +747 -8
  24. package/templates/storefront-fashion/package.json +2 -2
  25. package/templates/storefront-fashion/tsconfig.json +24 -6
  26. package/templates/storefront-grocery/app/api/revalidate/route.ts +5 -0
  27. package/templates/storefront-grocery/bun.lock +745 -6
  28. package/templates/storefront-grocery/package.json +2 -2
  29. package/templates/storefront-grocery/tsconfig.json +24 -6
  30. package/templates/storefront-pharmacy/app/api/revalidate/route.ts +5 -0
  31. package/templates/storefront-pharmacy/bun.lock +745 -6
  32. package/templates/storefront-pharmacy/package.json +2 -2
  33. package/templates/storefront-pharmacy/tsconfig.json +24 -6
  34. package/templates/storefront-restaurant/app/api/revalidate/route.ts +5 -0
  35. package/templates/storefront-restaurant/bun.lock +745 -6
  36. package/templates/storefront-restaurant/package.json +2 -2
  37. package/templates/storefront-restaurant/tsconfig.json +24 -6
  38. package/templates/storefront-retail/app/api/revalidate/route.ts +5 -0
  39. package/templates/storefront-retail/bun.lock +745 -6
  40. package/templates/storefront-retail/package.json +2 -2
  41. package/templates/storefront-retail/tsconfig.json +24 -6
  42. package/templates/storefront-services/app/api/revalidate/route.ts +5 -0
  43. package/templates/storefront-services/bun.lock +745 -6
  44. package/templates/storefront-services/package.json +2 -2
  45. package/templates/storefront-services/tsconfig.json +24 -6
  46. package/dist/chunk-OLZMA2TM.mjs +0 -5707
@@ -17,8 +17,8 @@
17
17
  "check": "bun run typecheck && bun run test:run"
18
18
  },
19
19
  "dependencies": {
20
- "@cimplify/sdk": "^0.48.2",
21
- "next": "^16.2.4",
20
+ "@cimplify/sdk": "^0.49.0",
21
+ "next": "^16.2.6",
22
22
  "react": "^19.0.0",
23
23
  "react-dom": "^19.0.0"
24
24
  },
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "ES2022",
4
- "lib": ["dom", "dom.iterable", "esnext"],
4
+ "lib": [
5
+ "dom",
6
+ "dom.iterable",
7
+ "esnext"
8
+ ],
5
9
  "allowJs": false,
6
10
  "skipLibCheck": true,
7
11
  "strict": true,
@@ -11,13 +15,27 @@
11
15
  "moduleResolution": "bundler",
12
16
  "resolveJsonModule": true,
13
17
  "isolatedModules": true,
14
- "jsx": "preserve",
18
+ "jsx": "react-jsx",
15
19
  "incremental": true,
16
- "plugins": [{ "name": "next" }],
20
+ "plugins": [
21
+ {
22
+ "name": "next"
23
+ }
24
+ ],
17
25
  "paths": {
18
- "@/*": ["./*"]
26
+ "@/*": [
27
+ "./*"
28
+ ]
19
29
  }
20
30
  },
21
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", ".next/dev/types/**/*.ts"],
22
- "exclude": ["node_modules"]
31
+ "include": [
32
+ "next-env.d.ts",
33
+ "**/*.ts",
34
+ "**/*.tsx",
35
+ ".next/types/**/*.ts",
36
+ ".next/dev/types/**/*.ts"
37
+ ],
38
+ "exclude": [
39
+ "node_modules"
40
+ ]
23
41
  }