create-vuetify
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "create-vuetify", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"main": "dist/output.cjs", | ||
@@ -5,0 +5,0 @@ "author": "Elijah Kotyluk <elijah@elijahkotyluk.com>", |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -16,3 +16,3 @@ // Plugins | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -19,0 +19,0 @@ autoImport: true, |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -12,3 +12,3 @@ { | ||
"vue": "^3.2.0", | ||
"vuetify": "^3.0.0", | ||
"vuetify": "^3.0.0" | ||
}, | ||
@@ -15,0 +15,0 @@ "devDependencies": { |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -16,3 +16,3 @@ // Plugins | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -19,0 +19,0 @@ autoImport: true, |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -16,3 +16,3 @@ // Plugins | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -19,0 +19,0 @@ autoImport: true, |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -14,5 +14,5 @@ // Plugins | ||
vue({ | ||
template: { transformAssetUrls } | ||
template: { transformAssetUrls }, | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -26,6 +26,8 @@ autoImport: true, | ||
google: { | ||
families: [{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}], | ||
families: [ | ||
{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}, | ||
], | ||
}, | ||
@@ -37,13 +39,5 @@ }), | ||
alias: { | ||
'@': fileURLToPath(new URL('./src', import.meta.url)) | ||
'@': fileURLToPath(new URL('./src', import.meta.url)), | ||
}, | ||
extensions: [ | ||
'.js', | ||
'.json', | ||
'.jsx', | ||
'.mjs', | ||
'.ts', | ||
'.tsx', | ||
'.vue', | ||
], | ||
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'], | ||
}, | ||
@@ -50,0 +44,0 @@ server: { |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -14,5 +14,5 @@ // Plugins | ||
vue({ | ||
template: { transformAssetUrls } | ||
template: { transformAssetUrls }, | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -23,6 +23,8 @@ autoImport: true, | ||
google: { | ||
families: [{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}], | ||
families: [ | ||
{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}, | ||
], | ||
}, | ||
@@ -34,13 +36,5 @@ }), | ||
alias: { | ||
'@': fileURLToPath(new URL('./src', import.meta.url)) | ||
'@': fileURLToPath(new URL('./src', import.meta.url)), | ||
}, | ||
extensions: [ | ||
'.js', | ||
'.json', | ||
'.jsx', | ||
'.mjs', | ||
'.ts', | ||
'.tsx', | ||
'.vue', | ||
], | ||
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'], | ||
}, | ||
@@ -47,0 +41,0 @@ server: { |
@@ -7,2 +7,5 @@ /** | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
// Components | ||
@@ -14,5 +17,2 @@ import App from './App.vue' | ||
// Plugins | ||
import { registerPlugins } from '@/plugins' | ||
const app = createApp(App) | ||
@@ -19,0 +19,0 @@ |
@@ -13,5 +13,5 @@ // Composables | ||
// route level code-splitting | ||
// this generates a separate chunk (about.[hash].js) for this route | ||
// this generates a separate chunk (Home-[hash].js) for this route | ||
// which is lazy-loaded when the route is visited. | ||
component: () => import(/* webpackChunkName: "home" */ '@/views/Home.vue'), | ||
component: () => import('@/views/Home.vue'), | ||
}, | ||
@@ -18,0 +18,0 @@ ], |
@@ -22,3 +22,3 @@ { | ||
"@/*": ["src/*"] | ||
}, | ||
} | ||
}, | ||
@@ -25,0 +25,0 @@ "include": [ |
@@ -14,5 +14,5 @@ // Plugins | ||
vue({ | ||
template: { transformAssetUrls } | ||
template: { transformAssetUrls }, | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin#readme | ||
vuetify({ | ||
@@ -26,6 +26,8 @@ autoImport: true, | ||
google: { | ||
families: [{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}], | ||
families: [ | ||
{ | ||
name: 'Roboto', | ||
styles: 'wght@100;300;400;500;700;900', | ||
}, | ||
], | ||
}, | ||
@@ -37,13 +39,5 @@ }), | ||
alias: { | ||
'@': fileURLToPath(new URL('./src', import.meta.url)) | ||
'@': fileURLToPath(new URL('./src', import.meta.url)), | ||
}, | ||
extensions: [ | ||
'.js', | ||
'.json', | ||
'.jsx', | ||
'.mjs', | ||
'.ts', | ||
'.tsx', | ||
'.vue', | ||
], | ||
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'], | ||
}, | ||
@@ -50,0 +44,0 @@ server: { |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
7
232410
1387