]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commit
wip: basic structure
authorHaoqun Jiang <haoqunjiang@gmail.com>
Fri, 23 Jul 2021 06:03:21 +0000 (14:03 +0800)
committerHaoqun Jiang <haoqunjiang@gmail.com>
Fri, 23 Jul 2021 06:04:40 +0000 (14:04 +0800)
commitcf01dbc6bcf3e9cda94301ea6f9609b17ebae4a0
tree11eedc013dd63906e798354e2901b26ce40fb3ef
parentfafa537e6d4d6069df2a9571e48eea2209d09edb
wip: basic structure
40 files changed:
index.js [new file with mode: 0644]
package.json [new file with mode: 0644]
playground/.gitkeep [new file with mode: 0644]
pnpm-lock.yaml [new file with mode: 0644]
renderTemplate.js [new file with mode: 0644]
template/config/base/.vscode/extensions.json [new file with mode: 0644]
template/config/base/README.md [new file with mode: 0644]
template/config/base/_gitignore [new file with mode: 0644]
template/config/base/index.html [new file with mode: 0644]
template/config/base/package.json [new file with mode: 0644]
template/config/base/public/favicon.ico [new file with mode: 0644]
template/config/base/vite.config.js [new file with mode: 0644]
template/config/cypress/cypress.json [new file with mode: 0644]
template/config/cypress/cypress/fixtures/example.json [new file with mode: 0644]
template/config/cypress/cypress/plugins/index.js [new file with mode: 0644]
template/config/cypress/cypress/support/commands.js [new file with mode: 0644]
template/config/cypress/cypress/support/index.js [new file with mode: 0644]
template/config/cypress/cypress/tsconfig.json [new file with mode: 0644]
template/config/cypress/package.json [new file with mode: 0644]
template/config/typescript/package.json [new file with mode: 0644]
template/config/typescript/src/shims-vue.d.ts [new file with mode: 0644]
template/config/typescript/src/vite-env.d.ts [new file with mode: 0644]
template/config/typescript/tsconfig.json [new file with mode: 0644]
template/config/typescript/vite.config.ts [new file with mode: 0644]
template/source/default/cypress/integration/example.spec.js [new file with mode: 0644]
template/source/spa/cypress/integration/example.spec.js [new file with mode: 0644]
template/source/spa/package.json [new file with mode: 0644]
template/source/typescript-default/cypress/integration/example.spec.ts [new file with mode: 0644]
template/source/typescript-spa/cypress/integration/example.spec.ts [new file with mode: 0644]
template/source/typescript-spa/src/App.vue [new file with mode: 0644]
template/source/typescript-spa/src/assets/logo.png [new file with mode: 0644]
template/source/typescript-spa/src/components/HelloWorld.vue [new file with mode: 0644]
template/source/typescript-spa/src/components/__tests__/HelloWorld.spec.ts [new file with mode: 0644]
template/source/typescript-spa/src/main.ts [new file with mode: 0644]
template/source/typescript-spa/src/router/index.ts [new file with mode: 0644]
template/source/typescript-spa/src/shims-vue.d.ts [new file with mode: 0644]
template/source/typescript-spa/src/store/index.ts [new file with mode: 0644]
template/source/typescript-spa/src/views/About.vue [new file with mode: 0644]
template/source/typescript-spa/src/views/Home.vue [new file with mode: 0644]
template/source/typescript-spa/src/vite-env.d.ts [new file with mode: 0644]