├── renovate.json ├── commitlint.config.js ├── test ├── fixture │ ├── custom │ │ └── Custom.vue │ ├── components │ │ ├── Test.css │ │ └── Test.vue │ ├── pages │ │ └── index.vue │ └── configs │ │ └── default.js └── module.test.js ├── .gitignore ├── .eslintrc.js ├── .travis.yml ├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── lib └── module.js ├── README.md └── package.json /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@nuxtjs" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /test/fixture/custom/Custom.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.iml 3 | .idea 4 | *.log* 5 | .nuxt* 6 | .vscode 7 | .DS_STORE 8 | coverage 9 | dist 10 | -------------------------------------------------------------------------------- /test/fixture/components/Test.css: -------------------------------------------------------------------------------- 1 | .abc { 2 | text-align: center; 3 | } 4 | 5 | .ymca { 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /test/fixture/components/Test.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 |