@idevconn/create-icore 0.5.2 → 0.6.1

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 (98) hide show
  1. package/dist/cli.js +109 -45
  2. package/dist/index.cjs +109 -45
  3. package/dist/index.d.cts +1 -1
  4. package/dist/index.d.ts +1 -1
  5. package/dist/index.js +109 -45
  6. package/package.json +1 -1
  7. package/templates/apps/api/.env.example +20 -0
  8. package/templates/apps/api/package.json +1 -0
  9. package/templates/apps/api/tsconfig.json +6 -1
  10. package/templates/apps/api/webpack.config.js +20 -0
  11. package/templates/apps/microservices/auth/.env.example +5 -0
  12. package/templates/apps/microservices/auth/tsconfig.json +6 -1
  13. package/templates/apps/microservices/auth/webpack.config.js +30 -0
  14. package/templates/apps/microservices/jobs/tsconfig.json +6 -1
  15. package/templates/apps/microservices/jobs/webpack.config.js +30 -0
  16. package/templates/apps/microservices/notes/.env.example +5 -0
  17. package/templates/apps/microservices/notes/tsconfig.json +6 -1
  18. package/templates/apps/microservices/notes/webpack.config.js +30 -0
  19. package/templates/apps/microservices/notes-e2e/src/support/global.d.ts +6 -0
  20. package/templates/apps/microservices/payment/.env.example +5 -0
  21. package/templates/apps/microservices/payment/tsconfig.json +6 -1
  22. package/templates/apps/microservices/payment/webpack.config.js +30 -0
  23. package/templates/apps/microservices/upload/.env.example +5 -0
  24. package/templates/apps/microservices/upload/tsconfig.json +6 -1
  25. package/templates/apps/microservices/upload/webpack.config.js +30 -0
  26. package/templates/apps/templates/client-antd/src/components/AccessDeniedPage.tsx +1 -1
  27. package/templates/apps/templates/client-antd/src/components/layout/LayoutHeader.tsx +1 -1
  28. package/templates/apps/templates/client-antd/src/components/layout/LayoutSider.tsx +3 -3
  29. package/templates/apps/templates/client-antd/src/routes/_dashboard/dashboard.tsx +2 -2
  30. package/templates/apps/templates/client-antd/src/routes/_dashboard/notes.tsx +2 -2
  31. package/templates/apps/templates/client-antd/src/routes/_dashboard/profile.tsx +2 -2
  32. package/templates/apps/templates/client-antd/src/routes/auth.callback.tsx +1 -1
  33. package/templates/apps/templates/client-antd/src/routes/auth.oauth.callback.tsx +1 -1
  34. package/templates/apps/templates/client-antd/src/routes/login.tsx +1 -1
  35. package/templates/apps/templates/client-antd/tsconfig.json +6 -1
  36. package/templates/apps/templates/client-antd-e2e/src/icore.spec.ts +2 -2
  37. package/templates/apps/templates/client-mui/src/components/AccessDeniedPage.tsx +1 -1
  38. package/templates/apps/templates/client-mui/src/components/layout/LayoutHeader.tsx +1 -1
  39. package/templates/apps/templates/client-mui/src/components/layout/LayoutSider.tsx +3 -15
  40. package/templates/apps/templates/client-mui/src/routes/_dashboard/dashboard.tsx +2 -6
  41. package/templates/apps/templates/client-mui/src/routes/_dashboard/notes.tsx +2 -2
  42. package/templates/apps/templates/client-mui/src/routes/_dashboard/profile.tsx +3 -3
  43. package/templates/apps/templates/client-mui/src/routes/auth.callback.tsx +1 -1
  44. package/templates/apps/templates/client-mui/src/routes/auth.oauth.callback.tsx +1 -1
  45. package/templates/apps/templates/client-mui/src/routes/login.tsx +3 -3
  46. package/templates/apps/templates/client-mui/tsconfig.json +6 -1
  47. package/templates/apps/templates/client-mui-e2e/src/icore.spec.ts +2 -2
  48. package/templates/apps/templates/client-shadcn/src/components/AccessDeniedPage.tsx +1 -1
  49. package/templates/apps/templates/client-shadcn/src/components/layout/LayoutSider.tsx +3 -3
  50. package/templates/apps/templates/client-shadcn/src/components/notes/DeleteNoteConfirm.tsx +1 -1
  51. package/templates/apps/templates/client-shadcn/src/components/notes/NoteDialog.tsx +3 -3
  52. package/templates/apps/templates/client-shadcn/src/components/notes/NotesTable.tsx +1 -1
  53. package/templates/apps/templates/client-shadcn/src/components/ui/button.tsx +1 -1
  54. package/templates/apps/templates/client-shadcn/src/components/ui/card.tsx +1 -1
  55. package/templates/apps/templates/client-shadcn/src/components/ui/input.tsx +1 -1
  56. package/templates/apps/templates/client-shadcn/src/components/ui/label.tsx +1 -1
  57. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/dashboard.tsx +3 -9
  58. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/notes.tsx +6 -6
  59. package/templates/apps/templates/client-shadcn/src/routes/_dashboard/profile.tsx +7 -7
  60. package/templates/apps/templates/client-shadcn/src/routes/auth.callback.tsx +1 -1
  61. package/templates/apps/templates/client-shadcn/src/routes/auth.oauth.callback.tsx +1 -1
  62. package/templates/apps/templates/client-shadcn/src/routes/login.tsx +4 -4
  63. package/templates/apps/templates/client-shadcn/tsconfig.json +6 -1
  64. package/templates/libs/auth-client/package.json +1 -1
  65. package/templates/libs/auth-strategies/firebase/package.json +1 -1
  66. package/templates/libs/auth-strategies/firebase/src/lib/__tests__/firebase-auth.contract.unit.test.ts +6 -3
  67. package/templates/libs/auth-strategies/supabase/package.json +1 -1
  68. package/templates/libs/auth-strategies/supabase/src/lib/__tests__/supabase-auth.contract.unit.test.ts +5 -2
  69. package/templates/libs/db-strategies/firestore/package.json +1 -1
  70. package/templates/libs/db-strategies/firestore/src/lib/__tests__/firestore-db.contract.unit.test.ts +1 -2
  71. package/templates/libs/db-strategies/supabase/package.json +1 -1
  72. package/templates/libs/db-strategies/supabase/src/lib/__tests__/supabase-db.contract.unit.test.ts +1 -2
  73. package/templates/libs/firebase-admin/package.json +1 -1
  74. package/templates/libs/jobs-client/package.json +1 -1
  75. package/templates/libs/notes-client/package.json +1 -1
  76. package/templates/libs/payment-client/package.json +1 -1
  77. package/templates/libs/shared/package.json +3 -3
  78. package/templates/libs/shared/src/__tests__/cross-boundary.unit.test.ts +2 -1
  79. package/templates/libs/shared/src/__tests__/transport.unit.test.ts +47 -8
  80. package/templates/libs/shared/src/abilities/subjects.ts +12 -1
  81. package/templates/libs/shared/src/strategies/__tests__/fake-auth.contract.unit.test.ts +2 -2
  82. package/templates/libs/shared/src/strategies/__tests__/fake-db.contract.unit.test.ts +2 -2
  83. package/templates/libs/shared/src/strategies/__tests__/fake-storage.contract.unit.test.ts +2 -2
  84. package/templates/libs/shared/src/transport.ts +41 -0
  85. package/templates/libs/storage-strategies/cloudinary/package.json +1 -1
  86. package/templates/libs/storage-strategies/cloudinary/src/lib/__tests__/cloudinary-storage.contract.unit.test.ts +1 -2
  87. package/templates/libs/storage-strategies/firebase/package.json +1 -1
  88. package/templates/libs/storage-strategies/firebase/src/lib/__tests__/firebase-storage.contract.unit.test.ts +1 -2
  89. package/templates/libs/storage-strategies/supabase/package.json +1 -1
  90. package/templates/libs/storage-strategies/supabase/src/lib/__tests__/supabase-storage.contract.unit.test.ts +1 -2
  91. package/templates/libs/template-shared/package.json +1 -1
  92. package/templates/libs/upload-client/package.json +1 -1
  93. package/templates/libs/vite-plugins/src/index.d.mts +5 -7
  94. package/templates/libs/vite-plugins/src/index.mjs +1 -1
  95. package/templates/libs/vite-plugins/tsconfig.json +2 -1
  96. package/templates/package.json +2 -1
  97. package/templates/tools/create-icore/_template-shell/package.json +2 -1
  98. package/templates/.yarn/releases/yarn-4.5.0.cjs +0 -925

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.