├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── fixtures ├── more-themes.vue ├── normal-component.vue ├── normalComponent.vue ├── sass.vue ├── self-closing-style.vue ├── style-only.vue ├── styleOnly.vue ├── stylus.vue └── themed.vue ├── globals.d.ts ├── index.js ├── package.json ├── src ├── __snapshots__ │ └── index.spec.ts.snap ├── index.spec.ts ├── index.ts └── io.ts ├── test ├── cases │ ├── keep-theme-style.in.vue │ ├── keep-theme-style.out.vue │ ├── mixed-use.in.vue │ ├── mixed-use.out.vue │ ├── no-modify.in.vue │ ├── no-modify.out.vue │ ├── remove-empty-block.in.vue │ ├── remove-empty-block.out.vue │ ├── remove-other-style.in.vue │ ├── remove-other-style.out.vue │ ├── remove-self-closing.in.vue │ └── remove-self-closing.out.vue └── use-cases.spec.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | fixtures 2 | src 3 | .travis.yml 4 | tslint.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/more-themes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/fixtures/more-themes.vue -------------------------------------------------------------------------------- /fixtures/normal-component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/fixtures/normal-component.vue -------------------------------------------------------------------------------- /fixtures/normalComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/fixtures/normalComponent.vue -------------------------------------------------------------------------------- /fixtures/sass.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zephraph/vue-theme-loader/HEAD/fixtures/sass.vue -------------------------------------------------------------------------------- /fixtures/self-closing-style.vue: -------------------------------------------------------------------------------- 1 |