@cimplify/cli 0.6.10 → 0.6.12

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 (40) hide show
  1. package/dist/{add-GDHA7MKM.mjs → add-UZRM3FSU.mjs} +1 -1
  2. package/dist/{chunk-ZTKQOLAC.mjs → chunk-A2L5IV57.mjs} +1 -1
  3. package/dist/{chunk-R3FDBXR6.mjs → chunk-CLNS2NBR.mjs} +4 -1
  4. package/dist/{chunk-5L6LJE6I.mjs → chunk-E7P6GL73.mjs} +4 -1
  5. package/dist/chunk-VOQJ7GYE.mjs +5707 -0
  6. package/dist/{deploy-7BPO5BNB.mjs → deploy-YVCYHNSS.mjs} +48 -19
  7. package/dist/dispatcher.mjs +13 -11
  8. package/dist/{doctor-SSSYBYCL.mjs → doctor-Q6DWYG4D.mjs} +2 -2
  9. package/dist/{explain-VG7XUP62.mjs → explain-RA3PQCUF.mjs} +22 -1
  10. package/dist/inspect-CGYX4DDF.mjs +411 -0
  11. package/dist/{introspect-HYJ6VI3U.mjs → introspect-HKNLBZ73.mjs} +2 -2
  12. package/dist/{list-NQP4SU5K.mjs → list-U67HVMX5.mjs} +1 -1
  13. package/dist/{repo-WOBWKEAO.mjs → repo-KNQMSPVV.mjs} +1 -1
  14. package/dist/{update-HHRCPKSU.mjs → update-UT46Z6X4.mjs} +1 -1
  15. package/package.json +4 -1
  16. package/templates/storefront-auto/bun.lock +1167 -0
  17. package/templates/storefront-auto/package.json +1 -1
  18. package/templates/storefront-auto/tsconfig.json +24 -6
  19. package/templates/storefront-bakery/bun.lock +1167 -0
  20. package/templates/storefront-bakery/package.json +1 -1
  21. package/templates/storefront-bakery/tsconfig.json +24 -6
  22. package/templates/storefront-fashion/bun.lock +1176 -0
  23. package/templates/storefront-fashion/package.json +1 -1
  24. package/templates/storefront-fashion/tsconfig.json +24 -6
  25. package/templates/storefront-grocery/bun.lock +1167 -0
  26. package/templates/storefront-grocery/package.json +1 -1
  27. package/templates/storefront-grocery/tsconfig.json +24 -6
  28. package/templates/storefront-pharmacy/bun.lock +1167 -0
  29. package/templates/storefront-pharmacy/package.json +1 -1
  30. package/templates/storefront-pharmacy/tsconfig.json +24 -6
  31. package/templates/storefront-restaurant/bun.lock +1167 -0
  32. package/templates/storefront-restaurant/package.json +1 -1
  33. package/templates/storefront-restaurant/tsconfig.json +24 -6
  34. package/templates/storefront-retail/bun.lock +1167 -0
  35. package/templates/storefront-retail/package.json +1 -1
  36. package/templates/storefront-retail/tsconfig.json +24 -6
  37. package/templates/storefront-services/bun.lock +1167 -0
  38. package/templates/storefront-services/package.json +1 -1
  39. package/templates/storefront-services/tsconfig.json +24 -6
  40. package/dist/chunk-EKJ6T66O.mjs +0 -5707
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@cimplify/sdk": "^0.48.2",
21
- "next": "^16.2.4",
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
  }