├── .gitignore ├── LICENSE ├── README.md ├── circle.yml ├── deploy-docs.sh ├── docs ├── README.md ├── SUMMARY.md ├── backend.md ├── commands.md ├── e2e.md ├── env.md ├── pre-processors.md ├── prerender.md ├── proxy.md ├── static.md ├── structure.md └── unit.md ├── meta.js ├── package.json ├── template ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── README.md ├── build │ ├── build.js │ ├── check-versions.js │ ├── logo.png │ ├── utils.js │ ├── vue-loader.conf.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ └── logo.png │ ├── components │ │ └── HelloWorld.vue │ ├── main.ts │ └── router │ │ └── index.ts ├── static │ └── .gitkeep ├── test │ ├── e2e │ │ ├── custom-assertions │ │ │ └── elementCount.js │ │ ├── nightwatch.conf.js │ │ ├── runner.js │ │ └── specs │ │ │ └── test.js │ └── unit │ │ ├── index.js │ │ ├── jest.conf.js │ │ ├── karma.conf.js │ │ ├── setup.js │ │ └── specs │ │ └── HelloWorld.spec.js ├── tsconfig.json └── typings │ └── vue-shims.d.ts └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | docs/_book 4 | test/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/circle.yml -------------------------------------------------------------------------------- /deploy-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/deploy-docs.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/backend.md -------------------------------------------------------------------------------- /docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/commands.md -------------------------------------------------------------------------------- /docs/e2e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/e2e.md -------------------------------------------------------------------------------- /docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/env.md -------------------------------------------------------------------------------- /docs/pre-processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/pre-processors.md -------------------------------------------------------------------------------- /docs/prerender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/prerender.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/static.md -------------------------------------------------------------------------------- /docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/structure.md -------------------------------------------------------------------------------- /docs/unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/docs/unit.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/package.json -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/.postcssrc.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/README.md -------------------------------------------------------------------------------- /template/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/build.js -------------------------------------------------------------------------------- /template/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/check-versions.js -------------------------------------------------------------------------------- /template/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/logo.png -------------------------------------------------------------------------------- /template/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/utils.js -------------------------------------------------------------------------------- /template/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/vue-loader.conf.js -------------------------------------------------------------------------------- /template/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/webpack.base.conf.js -------------------------------------------------------------------------------- /template/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /template/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /template/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/build/webpack.test.conf.js -------------------------------------------------------------------------------- /template/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/config/dev.env.js -------------------------------------------------------------------------------- /template/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/config/index.js -------------------------------------------------------------------------------- /template/config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /template/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/config/test.env.js -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/index.html -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/src/App.vue -------------------------------------------------------------------------------- /template/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/src/assets/logo.png -------------------------------------------------------------------------------- /template/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /template/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/src/main.ts -------------------------------------------------------------------------------- /template/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/src/router/index.ts -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/test/e2e/custom-assertions/elementCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/e2e/custom-assertions/elementCount.js -------------------------------------------------------------------------------- /template/test/e2e/nightwatch.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/e2e/nightwatch.conf.js -------------------------------------------------------------------------------- /template/test/e2e/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/e2e/runner.js -------------------------------------------------------------------------------- /template/test/e2e/specs/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/e2e/specs/test.js -------------------------------------------------------------------------------- /template/test/unit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/unit/index.js -------------------------------------------------------------------------------- /template/test/unit/jest.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/unit/jest.conf.js -------------------------------------------------------------------------------- /template/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/unit/karma.conf.js -------------------------------------------------------------------------------- /template/test/unit/setup.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | 3 | Vue.config.productionTip = false 4 | -------------------------------------------------------------------------------- /template/test/unit/specs/HelloWorld.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/test/unit/specs/HelloWorld.spec.js -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/typings/vue-shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/template/typings/vue-shims.d.ts -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryutamaki/vue-template-webpack-typescript/HEAD/test.sh --------------------------------------------------------------------------------