create-vuetify
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "create-vuetify", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"main": "dist/output.cjs", | ||
@@ -5,0 +5,0 @@ "author": "Elijah Kotyluk <elijah@elijahkotyluk.com>", |
@@ -7,8 +7,7 @@ # create-vuetify | ||
| **Flags** | **Values** | **Example** | | ||
|:---------------|-----------------------------------|-----------------------------------------| | ||
| `preset` | `default, base, essentials` | `--preset="default" or --preset default`| | ||
| `typescript` | `boolean` | `--typescript` | | ||
| **Flags** | **Values** | **Example** | | ||
| :----------- | ----------------------------------------- | ---------------------------------------- | | ||
| `preset` | `default`, `base`, `essentials`, `custom` | `--preset="default" or --preset default` | | ||
| `typescript` | `boolean` | `--typescript` | | ||
## 💪 Supporting Vuetify | ||
@@ -15,0 +14,0 @@ |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"target": "esnext", | ||
"target": "ESNext", | ||
"useDefineForClassFields": true, | ||
"allowSyntheticDefaultImports": true, | ||
"composite": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"module": "ESNext", | ||
"moduleResolution": "Node", | ||
"strict": true, | ||
"jsx": "preserve", | ||
"sourceMap": false, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"lib": ["esnext", "dom"], | ||
"types": ["vuetify"], | ||
"lib": ["ESNext", "DOM"], | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"paths": { | ||
"@/*": ["src/*"] | ||
}, | ||
"@/*": [ | ||
"src/*" | ||
] | ||
} | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"src/**/*.d.ts", | ||
"src/**/*.tsx", | ||
"src/**/*.vue", | ||
"vite.config.ts" | ||
] | ||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], | ||
"references": [{ "path": "./tsconfig.node.json" }], | ||
"exclude": ["node_modules"] | ||
} |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"target": "esnext", | ||
"target": "ESNext", | ||
"useDefineForClassFields": true, | ||
"allowSyntheticDefaultImports": true, | ||
"composite": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"module": "ESNext", | ||
"moduleResolution": "Node", | ||
"strict": true, | ||
"jsx": "preserve", | ||
"sourceMap": false, | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"esModuleInterop": true, | ||
"lib": ["esnext", "dom"], | ||
"types": ["vuetify"], | ||
"lib": ["ESNext", "DOM"], | ||
"skipLibCheck": true, | ||
"noEmit": true, | ||
"paths": { | ||
"@/*": ["src/*"] | ||
}, | ||
"@/*": [ | ||
"src/*" | ||
] | ||
} | ||
}, | ||
"include": [ | ||
"src/**/*.ts", | ||
"src/**/*.d.ts", | ||
"src/**/*.tsx", | ||
"src/**/*.vue", | ||
"vite.config.ts" | ||
] | ||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], | ||
"references": [{ "path": "./tsconfig.node.json" }], | ||
"exclude": ["node_modules"] | ||
} |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
// Plugins | ||
import vue from '@vitejs/plugin-vue' | ||
import vuetify from 'vite-plugin-vuetify' | ||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' | ||
@@ -12,3 +12,5 @@ // Utilities | ||
plugins: [ | ||
vue(), | ||
vue({ | ||
template: { transformAssetUrls } | ||
}), | ||
// https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin | ||
@@ -15,0 +17,0 @@ vuetify({ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
234149
170
1452
7
41
7