├── .browserslistrc ├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json ├── postcss.config.cjs ├── public ├── favicon.ico ├── index.html └── rollup.html ├── rollup.config.js ├── src ├── app.vue ├── hello.css ├── hello.vue ├── main.ts ├── main.vue └── test.vue ├── tsconfig.json └── webpack.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead 3 | ie 10 4 | chrome 45 5 | ios 9 6 | android 4.4 7 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | dist 4 | src/assets -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/rollup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/public/rollup.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/src/app.vue -------------------------------------------------------------------------------- /src/hello.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /src/hello.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/src/hello.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/src/main.vue -------------------------------------------------------------------------------- /src/test.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/src/test.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangjunlong/compile-vue-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------