create-mantiq 0.8.0 → 0.9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-mantiq",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Scaffold a new MantiqJS application",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/templates.ts CHANGED
@@ -22,7 +22,7 @@ export function getTemplates(ctx: TemplateContext): Record<string, string> {
22
22
  dependencies: {
23
23
  '@mantiq/auth': '^0.2.0',
24
24
  '@mantiq/cli': '^0.1.6',
25
- '@mantiq/core': '^0.2.0',
25
+ '@mantiq/core': '^0.3.0',
26
26
  '@mantiq/database': '^0.1.4',
27
27
  '@mantiq/events': '^0.1.2',
28
28
  '@mantiq/filesystem': '^0.1.2',
@@ -781,10 +781,10 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
781
781
 
782
782
  // ── package.json ────────────────────────────────────────────────────────
783
783
  const frameworkDevDeps: Record<string, string> = kit === 'react'
784
- ? { 'react': '^19.0.0', 'react-dom': '^19.0.0', '@vitejs/plugin-react': '^4.0.0', '@types/react': '^19.0.0', '@types/react-dom': '^19.0.0' }
784
+ ? { 'react': '^19.0.0', 'react-dom': '^19.0.0', '@vitejs/plugin-react': '^6.0.0', '@types/react': '^19.0.0', '@types/react-dom': '^19.0.0' }
785
785
  : kit === 'vue'
786
- ? { 'vue': '^3.5.0', '@vitejs/plugin-vue': '^5.0.0' }
787
- : { 'svelte': '^5.0.0', '@sveltejs/vite-plugin-svelte': '^5.0.0' }
786
+ ? { 'vue': '^3.5.0', '@vitejs/plugin-vue': '^6.0.0' }
787
+ : { 'svelte': '^5.0.0', '@sveltejs/vite-plugin-svelte': '^7.0.0' }
788
788
 
789
789
  // UI library deps (shadcn + icons) — must match what the stubs actually import
790
790
  const uiDeps: Record<string, string> = kit === 'react'
@@ -811,7 +811,7 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
811
811
  dependencies: {
812
812
  '@mantiq/auth': '^0.2.0',
813
813
  '@mantiq/cli': '^0.1.6',
814
- '@mantiq/core': '^0.2.0',
814
+ '@mantiq/core': '^0.3.0',
815
815
  '@mantiq/database': '^0.1.4',
816
816
  '@mantiq/events': '^0.1.2',
817
817
  '@mantiq/filesystem': '^0.1.2',
@@ -831,7 +831,7 @@ function applyKitOverrides(templates: Record<string, string>, ctx: TemplateConte
831
831
  devDependencies: {
832
832
  'bun-types': 'latest',
833
833
  'typescript': '^5.7.0',
834
- 'vite': '^6.0.0',
834
+ 'vite': '^8.0.0',
835
835
  'tailwindcss': '^4.0.0',
836
836
  '@tailwindcss/vite': '^4.0.0',
837
837
  ...frameworkDevDeps,
@@ -15,7 +15,7 @@ export default defineConfig({
15
15
  outDir: 'public/build',
16
16
  manifest: true,
17
17
  emptyOutDir: true,
18
- rollupOptions: {
18
+ rolldownOptions: {
19
19
  input: ['src/main.tsx', 'src/style.css'],
20
20
  },
21
21
  },
@@ -16,7 +16,7 @@ export default defineConfig({
16
16
  outDir: 'public/build',
17
17
  manifest: true,
18
18
  emptyOutDir: true,
19
- rollupOptions: {
19
+ rolldownOptions: {
20
20
  input: ['src/main.ts', 'src/style.css'],
21
21
  },
22
22
  },
@@ -15,7 +15,7 @@ export default defineConfig({
15
15
  outDir: 'public/build',
16
16
  manifest: true,
17
17
  emptyOutDir: true,
18
- rollupOptions: {
18
+ rolldownOptions: {
19
19
  input: ['src/main.ts', 'src/style.css'],
20
20
  },
21
21
  },