create-vuetify 0.0.6-beta.2
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/README.md +37 -0
- package/dist/index.mjs +29252 -0
- package/dist/multipart-parser-CbtVsPSq.mjs +175 -0
- package/dist/node-CcjDTqtN.mjs +4007 -0
- package/dist/prompt-CAXcFxNm.mjs +848 -0
- package/package.json +40 -0
- package/src/commands/upgrade.ts +5 -0
- package/src/features/dependencies/package.json +17 -0
- package/src/features/eslint.ts +75 -0
- package/src/features/i18n.ts +108 -0
- package/src/features/index.ts +31 -0
- package/src/features/pinia.ts +84 -0
- package/src/features/router.ts +147 -0
- package/src/features/types.ts +13 -0
- package/src/features/vuetify-nuxt-manual.ts +47 -0
- package/src/features/vuetify-nuxt-module.ts +58 -0
- package/src/index.ts +177 -0
- package/src/prompts.ts +201 -0
- package/src/utils/cli/postinstall/index.ts +1 -0
- package/src/utils/cli/postinstall/pnpm.ts +20 -0
- package/src/utils/cli/preinstall/index.ts +1 -0
- package/src/utils/cli/preinstall/yarn.ts +22 -0
- package/src/utils/convertProjectToJS.ts +98 -0
- package/src/utils/installDependencies.ts +25 -0
- package/src/utils/installFeature.ts +25 -0
- package/test/conflict.test.ts +75 -0
- package/test/index.test.ts +117 -0
- package/tsdown.config.ts +7 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# create-vuetify
|
|
2
|
+
|
|
3
|
+
Create a new Vuetify project.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
# npm
|
|
9
|
+
npm create vuetify
|
|
10
|
+
|
|
11
|
+
# pnpm
|
|
12
|
+
pnpm create vuetify
|
|
13
|
+
|
|
14
|
+
# yarn
|
|
15
|
+
yarn create vuetify
|
|
16
|
+
|
|
17
|
+
# bun
|
|
18
|
+
bun create vuetify
|
|
19
|
+
|
|
20
|
+
# deno
|
|
21
|
+
deno run -A npm:create-vuetify
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Status
|
|
25
|
+
|
|
26
|
+
Work in progress.
|
|
27
|
+
|
|
28
|
+
## Development
|
|
29
|
+
|
|
30
|
+
This package is part of the Vuetify CLI monorepo. From the repo root:
|
|
31
|
+
|
|
32
|
+
- Install deps: `pnpm install`
|
|
33
|
+
- Build: `pnpm -F create-vuetify run build`
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT
|