From 7785958d28316464d2309981d9d0b0ac716da95e Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 1 Jan 2021 23:47:56 -0500 Subject: [PATCH] feat: create-app --- docs/guide/index.md | 3 - packages/create-app/LICENSE | 21 ++++ packages/create-app/README.md | 33 ++++++ packages/create-app/index.js | 111 ++++++++++++++++++ packages/create-app/package.json | 33 ++++++ .../create-app/template-react-ts/_gitignore | 5 + .../create-app/template-react-ts/index.html | 12 ++ .../create-app/template-react-ts/package.json | 19 +++ .../create-app/template-react-ts/src/App.css | 42 +++++++ .../create-app/template-react-ts/src/App.tsx | 32 +++++ .../template-react-ts/src/index.css | 13 ++ .../create-app/template-react-ts/src/logo.svg | 7 ++ .../create-app/template-react-ts/src/main.tsx | 11 ++ .../template-react-ts/tsconfig.json | 20 ++++ .../template-react-ts/vite.config.ts | 6 + packages/create-app/template-react/_gitignore | 5 + packages/create-app/template-react/index.html | 12 ++ .../create-app/template-react/package.json | 16 +++ .../create-app/template-react/src/App.css | 42 +++++++ .../create-app/template-react/src/App.jsx | 32 +++++ .../create-app/template-react/src/index.css | 13 ++ .../create-app/template-react/src/logo.svg | 7 ++ .../create-app/template-react/src/main.jsx | 11 ++ .../create-app/template-react/vite.config.js | 8 ++ .../create-app/template-vue-ts/_gitignore | 5 + .../create-app/template-vue-ts/index.html | 13 ++ .../create-app/template-vue-ts/package.json | 19 +++ .../template-vue-ts/public/favicon.ico | Bin 0 -> 4286 bytes .../create-app/template-vue-ts/src/App.vue | 27 +++++ .../template-vue-ts/src/assets/logo.png | Bin 0 -> 6849 bytes .../src/components/HelloWorld.vue | 48 ++++++++ .../create-app/template-vue-ts/src/main.ts | 4 + .../create-app/template-vue-ts/tsconfig.json | 13 ++ .../create-app/template-vue-ts/vite.config.ts | 6 + packages/create-app/template-vue/_gitignore | 5 + packages/create-app/template-vue/index.html | 13 ++ packages/create-app/template-vue/package.json | 16 +++ .../template-vue/public/favicon.ico | Bin 0 -> 4286 bytes packages/create-app/template-vue/src/App.vue | 19 +++ .../template-vue/src/assets/logo.png | Bin 0 -> 6849 bytes .../src/components/HelloWorld.vue | 18 +++ packages/create-app/template-vue/src/main.js | 4 + .../create-app/template-vue/vite.config.js | 8 ++ 43 files changed, 729 insertions(+), 3 deletions(-) create mode 100644 packages/create-app/LICENSE create mode 100644 packages/create-app/README.md create mode 100755 packages/create-app/index.js create mode 100644 packages/create-app/package.json create mode 100644 packages/create-app/template-react-ts/_gitignore create mode 100644 packages/create-app/template-react-ts/index.html create mode 100644 packages/create-app/template-react-ts/package.json create mode 100644 packages/create-app/template-react-ts/src/App.css create mode 100644 packages/create-app/template-react-ts/src/App.tsx create mode 100644 packages/create-app/template-react-ts/src/index.css create mode 100644 packages/create-app/template-react-ts/src/logo.svg create mode 100644 packages/create-app/template-react-ts/src/main.tsx create mode 100644 packages/create-app/template-react-ts/tsconfig.json create mode 100644 packages/create-app/template-react-ts/vite.config.ts create mode 100644 packages/create-app/template-react/_gitignore create mode 100644 packages/create-app/template-react/index.html create mode 100644 packages/create-app/template-react/package.json create mode 100644 packages/create-app/template-react/src/App.css create mode 100644 packages/create-app/template-react/src/App.jsx create mode 100644 packages/create-app/template-react/src/index.css create mode 100644 packages/create-app/template-react/src/logo.svg create mode 100644 packages/create-app/template-react/src/main.jsx create mode 100644 packages/create-app/template-react/vite.config.js create mode 100644 packages/create-app/template-vue-ts/_gitignore create mode 100644 packages/create-app/template-vue-ts/index.html create mode 100644 packages/create-app/template-vue-ts/package.json create mode 100644 packages/create-app/template-vue-ts/public/favicon.ico create mode 100644 packages/create-app/template-vue-ts/src/App.vue create mode 100644 packages/create-app/template-vue-ts/src/assets/logo.png create mode 100644 packages/create-app/template-vue-ts/src/components/HelloWorld.vue create mode 100644 packages/create-app/template-vue-ts/src/main.ts create mode 100644 packages/create-app/template-vue-ts/tsconfig.json create mode 100644 packages/create-app/template-vue-ts/vite.config.ts create mode 100644 packages/create-app/template-vue/_gitignore create mode 100644 packages/create-app/template-vue/index.html create mode 100644 packages/create-app/template-vue/package.json create mode 100644 packages/create-app/template-vue/public/favicon.ico create mode 100644 packages/create-app/template-vue/src/App.vue create mode 100644 packages/create-app/template-vue/src/assets/logo.png create mode 100644 packages/create-app/template-vue/src/components/HelloWorld.vue create mode 100644 packages/create-app/template-vue/src/main.js create mode 100644 packages/create-app/template-vue/vite.config.js diff --git a/docs/guide/index.md b/docs/guide/index.md index f814a9e7d2fd2d..c5a06b88bce839 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -34,9 +34,6 @@ Supported template presets include: - `vue-ts` - `react` - `react-ts` -- `preact` -- `preact-ts` -- `reason-react` See [@vitejs/create-app](https://github.com/vitejs/vite/tree/main/packages/create-app) for more details on each template. diff --git a/packages/create-app/LICENSE b/packages/create-app/LICENSE new file mode 100644 index 00000000000000..9c1b313d7b1816 --- /dev/null +++ b/packages/create-app/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019-present, Yuxi (Evan) You and Vite contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/packages/create-app/README.md b/packages/create-app/README.md new file mode 100644 index 00000000000000..033ef9b011de7f --- /dev/null +++ b/packages/create-app/README.md @@ -0,0 +1,33 @@ +# @vite/create-app + +## Scaffolding Your First Vite Project + +> **Comaptibility Note:** +> Vite requires [Node.js](https://nodejs.org/en/) version >=12.0.0. + +With NPM: + +```bash +$ npm init @vitejs/app +``` + +With Yarn: + +```bash +$ yarn create @vitejs/app +``` + +Then follow the prompts! + +You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Vite + Vue project, run: + +```bash +npm init @vitejs/app my-vue-app --template vue +``` + +Currently supported template presets include: + +- `vue` +- `vue-ts` +- `react` +- `react-ts` diff --git a/packages/create-app/index.js b/packages/create-app/index.js new file mode 100755 index 00000000000000..b46ca4f1f9570a --- /dev/null +++ b/packages/create-app/index.js @@ -0,0 +1,111 @@ +#!/usr/bin/env node + +// @ts-check +const fs = require('fs') +const path = require('path') +const argv = require('minimist')(process.argv.slice(2)) +const { prompt } = require('enquirer') + +const targetDir = argv._[0] || '.' +const cwd = process.cwd() +const root = path.join(cwd, targetDir) +const renameFiles = { + _gitignore: '.gitignore' +} +console.log(`Scaffolding project in ${root}...`) + +async function init() { + if (!fs.existsSync(root)) { + fs.mkdirSync(root, { recursive: true }) + } else { + const existing = fs.readdirSync(root) + if (existing.length) { + /** + * @type {{ yes: boolean }} + */ + const { yes } = await prompt({ + type: 'confirm', + name: 'yes', + message: + `Target directory ${targetDir} is not empty.\n` + + `Remove existing files and continue?` + }) + if (yes) { + emptyDir(root) + } else { + return + } + } + } + + const templateDir = path.join( + __dirname, + `template-${argv.t || argv.template || 'vue'}` + ) + + const write = (file, content) => { + const targetPath = renameFiles[file] + ? path.join(root, renameFiles[file]) + : path.join(root, file) + if (content) { + fs.writeFileSync(targetPath, content) + } else { + copy(path.join(templateDir, file), targetPath) + } + } + + const files = fs.readdirSync(templateDir) + for (const file of files.filter((f) => f !== 'package.json')) { + write(file) + } + + const pkg = require(path.join(templateDir, `package.json`)) + pkg.name = path.basename(root) + write('package.json', JSON.stringify(pkg, null, 2)) + + console.log(`\nDone. Now run:\n`) + if (root !== cwd) { + console.log(` cd ${path.relative(cwd, root)}`) + } + console.log(` npm install (or \`yarn\`)`) + console.log(` npm run dev (or \`yarn dev\`)`) + console.log() +} + +function copy(src, dest) { + const stat = fs.statSync(src) + if (stat.isDirectory()) { + copyDir(src, dest) + } else { + fs.copyFileSync(src, dest) + } +} + +function copyDir(srcDir, destDir) { + fs.mkdirSync(destDir, { recursive: true }) + for (const file of fs.readdirSync(srcDir)) { + const srcFile = path.resolve(srcDir, file) + const destFile = path.resolve(destDir, file) + copy(srcFile, destFile) + } +} + +function emptyDir(dir) { + if (!fs.existsSync(dir)) { + return + } + for (const file of fs.readdirSync(dir)) { + const abs = path.resolve(dir, file) + // baseline is Node 12 so can't use rmSync :( + if (fs.lstatSync(abs).isDirectory()) { + emptyDir(abs) + fs.rmdirSync(abs) + } else { + fs.unlinkSync(abs) + } + } +} + +init().catch((e) => { + console.error(e) +}) diff --git a/packages/create-app/package.json b/packages/create-app/package.json new file mode 100644 index 00000000000000..6895adb8d81519 --- /dev/null +++ b/packages/create-app/package.json @@ -0,0 +1,33 @@ +{ + "name": "@vitejs/create-app", + "version": "1.0.0", + "license": "MIT", + "author": "Evan You", + "bin": { + "create-vite-app": "index.js", + "cva": "index.js" + }, + "files": [ + "index.js" + ], + "main": "index.js", + "scripts": { + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s --commit-path . --lerna-package create-app", + "release": "node ../../scripts/release.js --skipBuild" + }, + "engines": { + "node": ">=12.0.0" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/vitejs/vite.git" + }, + "bugs": { + "url": "https://github.com/vitejs/vite/issues" + }, + "homepage": "https://github.com/vitejs/vite/tree/main/packages/create-app#readme", + "dependencies": { + "enquirer": "^2.3.6", + "minimist": "^1.2.5" + } +} diff --git a/packages/create-app/template-react-ts/_gitignore b/packages/create-app/template-react-ts/_gitignore new file mode 100644 index 00000000000000..d451ff16c1010b --- /dev/null +++ b/packages/create-app/template-react-ts/_gitignore @@ -0,0 +1,5 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local diff --git a/packages/create-app/template-react-ts/index.html b/packages/create-app/template-react-ts/index.html new file mode 100644 index 00000000000000..f3cb3615318c9a --- /dev/null +++ b/packages/create-app/template-react-ts/index.html @@ -0,0 +1,12 @@ + + + + + + Vite App + + +
+ + + diff --git a/packages/create-app/template-react-ts/package.json b/packages/create-app/template-react-ts/package.json new file mode 100644 index 00000000000000..14cb0e7be9f3db --- /dev/null +++ b/packages/create-app/template-react-ts/package.json @@ -0,0 +1,19 @@ +{ + "name": "vite-react-typescript-starter", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "tsc && vite build" + }, + "dependencies": { + "react": "^17.0.0", + "react-dom": "^17.0.0" + }, + "devDependencies": { + "@types/react": "^17.0.0", + "@types/react-dom": "^17.0.0", + "@vitejs/plugin-react-refresh": "^1.1.0", + "typescript": "^4.1.2", + "vite": "^2.0.0-beta.1" + } +} diff --git a/packages/create-app/template-react-ts/src/App.css b/packages/create-app/template-react-ts/src/App.css new file mode 100644 index 00000000000000..8da3fde63d9e7d --- /dev/null +++ b/packages/create-app/template-react-ts/src/App.css @@ -0,0 +1,42 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +button { + font-size: calc(10px + 2vmin); +} diff --git a/packages/create-app/template-react-ts/src/App.tsx b/packages/create-app/template-react-ts/src/App.tsx new file mode 100644 index 00000000000000..af4490c3b2ef9f --- /dev/null +++ b/packages/create-app/template-react-ts/src/App.tsx @@ -0,0 +1,32 @@ +import React, { useState } from 'react' +import logo from './logo.svg' +import './App.css' + +function App() { + const [count, setCount] = useState(0) + + return ( +
+
+ logo +

Hello Vite + React!

+

+ +

+

+ Edit App.tsx and save to test HMR updates. +

+ + Learn React + +
+
+ ) +} + +export default App diff --git a/packages/create-app/template-react-ts/src/index.css b/packages/create-app/template-react-ts/src/index.css new file mode 100644 index 00000000000000..4a1df4db71cdb3 --- /dev/null +++ b/packages/create-app/template-react-ts/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", + monospace; +} diff --git a/packages/create-app/template-react-ts/src/logo.svg b/packages/create-app/template-react-ts/src/logo.svg new file mode 100644 index 00000000000000..6b60c1042f58d9 --- /dev/null +++ b/packages/create-app/template-react-ts/src/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/packages/create-app/template-react-ts/src/main.tsx b/packages/create-app/template-react-ts/src/main.tsx new file mode 100644 index 00000000000000..606a3cf44ec02b --- /dev/null +++ b/packages/create-app/template-react-ts/src/main.tsx @@ -0,0 +1,11 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import './index.css' +import App from './App' + +ReactDOM.render( + + + , + document.getElementById('root') +) diff --git a/packages/create-app/template-react-ts/tsconfig.json b/packages/create-app/template-react-ts/tsconfig.json new file mode 100644 index 00000000000000..181704707c6996 --- /dev/null +++ b/packages/create-app/template-react-ts/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ESNext", + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "types": [], + "allowJs": false, + "skipLibCheck": false, + "esModuleInterop": false, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "ESNext", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react" + }, + "include": ["src"] +} diff --git a/packages/create-app/template-react-ts/vite.config.ts b/packages/create-app/template-react-ts/vite.config.ts new file mode 100644 index 00000000000000..64db055161a0b7 --- /dev/null +++ b/packages/create-app/template-react-ts/vite.config.ts @@ -0,0 +1,6 @@ +import reactRefresh from '@vitejs/plugin-react-refresh' +import { defineConfig } from 'vite' + +export default defineConfig({ + plugins: [reactRefresh()] +}) diff --git a/packages/create-app/template-react/_gitignore b/packages/create-app/template-react/_gitignore new file mode 100644 index 00000000000000..53f7466aca7003 --- /dev/null +++ b/packages/create-app/template-react/_gitignore @@ -0,0 +1,5 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local \ No newline at end of file diff --git a/packages/create-app/template-react/index.html b/packages/create-app/template-react/index.html new file mode 100644 index 00000000000000..a380e811bf0564 --- /dev/null +++ b/packages/create-app/template-react/index.html @@ -0,0 +1,12 @@ + + + + + + Vite App + + +
+ + + diff --git a/packages/create-app/template-react/package.json b/packages/create-app/template-react/package.json new file mode 100644 index 00000000000000..a091e5e73e2ad7 --- /dev/null +++ b/packages/create-app/template-react/package.json @@ -0,0 +1,16 @@ +{ + "name": "vite-react-starter", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "dependencies": { + "react": "^17.0.0", + "react-dom": "^17.0.0" + }, + "devDependencies": { + "@vitejs/plugin-react-refresh": "^1.1.0", + "vite": "^2.0.0-beta.1" + } +} diff --git a/packages/create-app/template-react/src/App.css b/packages/create-app/template-react/src/App.css new file mode 100644 index 00000000000000..8da3fde63d9e7d --- /dev/null +++ b/packages/create-app/template-react/src/App.css @@ -0,0 +1,42 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +button { + font-size: calc(10px + 2vmin); +} diff --git a/packages/create-app/template-react/src/App.jsx b/packages/create-app/template-react/src/App.jsx new file mode 100644 index 00000000000000..74f52af9a4da74 --- /dev/null +++ b/packages/create-app/template-react/src/App.jsx @@ -0,0 +1,32 @@ +import React, { useState } from 'react' +import logo from './logo.svg' +import './App.css' + +function App() { + const [count, setCount] = useState(0) + + return ( +
+
+ logo +

Hello Vite + React!

+

+ +

+

+ Edit App.jsx and save to test HMR updates. +

+ + Learn React + +
+
+ ) +} + +export default App diff --git a/packages/create-app/template-react/src/index.css b/packages/create-app/template-react/src/index.css new file mode 100644 index 00000000000000..4a1df4db71cdb3 --- /dev/null +++ b/packages/create-app/template-react/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", + "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", + monospace; +} diff --git a/packages/create-app/template-react/src/logo.svg b/packages/create-app/template-react/src/logo.svg new file mode 100644 index 00000000000000..6b60c1042f58d9 --- /dev/null +++ b/packages/create-app/template-react/src/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/packages/create-app/template-react/src/main.jsx b/packages/create-app/template-react/src/main.jsx new file mode 100644 index 00000000000000..606a3cf44ec02b --- /dev/null +++ b/packages/create-app/template-react/src/main.jsx @@ -0,0 +1,11 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import './index.css' +import App from './App' + +ReactDOM.render( + + + , + document.getElementById('root') +) diff --git a/packages/create-app/template-react/vite.config.js b/packages/create-app/template-react/vite.config.js new file mode 100644 index 00000000000000..53e50230352764 --- /dev/null +++ b/packages/create-app/template-react/vite.config.js @@ -0,0 +1,8 @@ +import reactRefresh from '@vitejs/plugin-react-refresh' + +/** + * @type { import('vite').UserConfig } + */ +export default { + plugins: [reactRefresh()] +} diff --git a/packages/create-app/template-vue-ts/_gitignore b/packages/create-app/template-vue-ts/_gitignore new file mode 100644 index 00000000000000..d451ff16c1010b --- /dev/null +++ b/packages/create-app/template-vue-ts/_gitignore @@ -0,0 +1,5 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local diff --git a/packages/create-app/template-vue-ts/index.html b/packages/create-app/template-vue-ts/index.html new file mode 100644 index 00000000000000..a508f2037dec8e --- /dev/null +++ b/packages/create-app/template-vue-ts/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/packages/create-app/template-vue-ts/package.json b/packages/create-app/template-vue-ts/package.json new file mode 100644 index 00000000000000..81bfc03e95a47c --- /dev/null +++ b/packages/create-app/template-vue-ts/package.json @@ -0,0 +1,19 @@ +{ + "name": "vite-vue-typescript-starter", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vuedx-typecheck . && vite build" + }, + "dependencies": { + "vue": "^3.0.5" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^1.0.2", + "@vue/compiler-sfc": "^3.0.5", + "@vuedx/typecheck": "^0.4.1", + "@vuedx/typescript-plugin-vue": "^0.4.1", + "typescript": "^4.1.3", + "vite": "^2.0.0-beta.1" + } +} \ No newline at end of file diff --git a/packages/create-app/template-vue-ts/public/favicon.ico b/packages/create-app/template-vue-ts/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/packages/create-app/template-vue-ts/src/App.vue b/packages/create-app/template-vue-ts/src/App.vue new file mode 100644 index 00000000000000..499a948f188002 --- /dev/null +++ b/packages/create-app/template-vue-ts/src/App.vue @@ -0,0 +1,27 @@ + + + + + \ No newline at end of file diff --git a/packages/create-app/template-vue-ts/src/assets/logo.png b/packages/create-app/template-vue-ts/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 GIT binary patch literal 6849 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 +

{{ msg }}

+

+ Recommended setup: + VSCode + + + Vetur + + + Vue DX +

+

+ Make sure to use workspace version of TypeScript to get improved support via + @vuedx. +
Note @vuedx is still experimental and this setup is provided for early feedback. +

+ +

+ Edit + components/HelloWorld.vue to test hot module replacement. +

+ + + diff --git a/packages/create-app/template-vue-ts/src/main.ts b/packages/create-app/template-vue-ts/src/main.ts new file mode 100644 index 00000000000000..01433bca2ac765 --- /dev/null +++ b/packages/create-app/template-vue-ts/src/main.ts @@ -0,0 +1,4 @@ +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/packages/create-app/template-vue-ts/tsconfig.json b/packages/create-app/template-vue-ts/tsconfig.json new file mode 100644 index 00000000000000..5072c8fa06465d --- /dev/null +++ b/packages/create-app/template-vue-ts/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "moduleResolution": "node", + "strict": true, + "jsx": "preserve", + "sourceMap": true, + "lib": ["esnext", "dom"], + "plugins": [{ "name": "@vuedx/typescript-plugin-vue" }] + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] +} diff --git a/packages/create-app/template-vue-ts/vite.config.ts b/packages/create-app/template-vue-ts/vite.config.ts new file mode 100644 index 00000000000000..2e3d2576fc2e28 --- /dev/null +++ b/packages/create-app/template-vue-ts/vite.config.ts @@ -0,0 +1,6 @@ +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' + +export default defineConfig({ + plugins: [vue()] +}) diff --git a/packages/create-app/template-vue/_gitignore b/packages/create-app/template-vue/_gitignore new file mode 100644 index 00000000000000..53f7466aca7003 --- /dev/null +++ b/packages/create-app/template-vue/_gitignore @@ -0,0 +1,5 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local \ No newline at end of file diff --git a/packages/create-app/template-vue/index.html b/packages/create-app/template-vue/index.html new file mode 100644 index 00000000000000..d49c18c6fb142f --- /dev/null +++ b/packages/create-app/template-vue/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/packages/create-app/template-vue/package.json b/packages/create-app/template-vue/package.json new file mode 100644 index 00000000000000..10fae9dd29acd3 --- /dev/null +++ b/packages/create-app/template-vue/package.json @@ -0,0 +1,16 @@ +{ + "name": "vite-starter", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vite build" + }, + "dependencies": { + "vue": "^3.0.5" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^1.0.2", + "@vue/compiler-sfc": "^3.0.5", + "vite": "^2.0.0-beta.1" + } +} diff --git a/packages/create-app/template-vue/public/favicon.ico b/packages/create-app/template-vue/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/packages/create-app/template-vue/src/App.vue b/packages/create-app/template-vue/src/App.vue new file mode 100644 index 00000000000000..9a72bd98acdc9f --- /dev/null +++ b/packages/create-app/template-vue/src/App.vue @@ -0,0 +1,19 @@ + + + + + \ No newline at end of file diff --git a/packages/create-app/template-vue/src/assets/logo.png b/packages/create-app/template-vue/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 GIT binary patch literal 6849 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 +

{{ msg }}

+ +

+ Edit + components/HelloWorld.vue to test hot module replacement. +

+ + + diff --git a/packages/create-app/template-vue/src/main.js b/packages/create-app/template-vue/src/main.js new file mode 100644 index 00000000000000..01433bca2ac765 --- /dev/null +++ b/packages/create-app/template-vue/src/main.js @@ -0,0 +1,4 @@ +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/packages/create-app/template-vue/vite.config.js b/packages/create-app/template-vue/vite.config.js new file mode 100644 index 00000000000000..9fa105dcf56ab7 --- /dev/null +++ b/packages/create-app/template-vue/vite.config.js @@ -0,0 +1,8 @@ +import vue from '@vitejs/plugin-vue' + +/** + * @type {import('vite').UserConfig} + */ +export default { + plugins: [vue()] +}