@jskit-ai/create-app 0.1.89 → 0.1.91

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": "@jskit-ai/create-app",
3
- "version": "0.1.89",
3
+ "version": "0.1.91",
4
4
  "description": "Scaffold minimal JSKIT app shells.",
5
5
  "type": "module",
6
6
  "files": [
@@ -49,6 +49,7 @@
49
49
  "@vitejs/plugin-vue": "^5.2.1",
50
50
  "eslint": "^9.39.1",
51
51
  "vite": "^6.1.0",
52
+ "vite-plugin-vuetify": "^2.1.3",
52
53
  "vitest": "^4.0.18"
53
54
  }
54
55
  }
@@ -5,8 +5,6 @@ import { createRouter, createWebHistory } from "vue-router/auto";
5
5
  import { routes } from "vue-router/auto-routes";
6
6
  import "vuetify/styles";
7
7
  import { createVuetify } from "vuetify";
8
- import * as components from "vuetify/components";
9
- import * as directives from "vuetify/directives";
10
8
  import { aliases as mdiAliases, mdi } from "vuetify/iconsets/mdi-svg";
11
9
  import App from "./App.vue";
12
10
  import NotFoundView from "./views/NotFound.vue";
@@ -44,8 +42,6 @@ const { router, fallbackRoute } = createShellRouter({
44
42
  });
45
43
 
46
44
  const vuetify = createVuetify({
47
- components,
48
- directives,
49
45
  theme: {
50
46
  defaultTheme: "light"
51
47
  },
@@ -1,6 +1,7 @@
1
1
  import { fileURLToPath, URL } from "node:url";
2
2
  import { defineConfig } from "vite";
3
3
  import vue from "@vitejs/plugin-vue";
4
+ import vuetify from "vite-plugin-vuetify";
4
5
  import VueRouter from "vue-router/vite";
5
6
  import { createJskitClientBootstrapPlugin } from "@jskit-ai/kernel/client/vite";
6
7
  import { loadViteDevProxyEntries, toPositiveInt } from "./vite.shared.mjs";
@@ -41,6 +42,9 @@ export default defineConfig({
41
42
  // beforeWriteFiles: reparentNestedChildrenToIndexOwners
42
43
  }),
43
44
  vue(),
45
+ vuetify({
46
+ autoImport: true
47
+ }),
44
48
  {
45
49
  name: "jskit-client-entry",
46
50
  transformIndexHtml(source) {