fix: The built-in theme does not take effect, fixed #55 [deploy]

This commit is contained in:
vben
2024-07-29 22:53:04 +08:00
parent cd10eb9471
commit 239f681ea1
4 changed files with 15 additions and 8 deletions

View File

@@ -5,10 +5,14 @@ export default {
],
'*.{scss,less,styl,html,vue,css}': [
'prettier --cache --ignore-unknown --write',
'stylelint --fix',
'stylelint --fix --allow-empty-input',
],
'*.md': ['prettier --cache --ignore-unknown --write'],
'*.vue': ['prettier --write', 'eslint --cache --fix', 'stylelint --fix'],
'*.vue': [
'prettier --write',
'eslint --cache --fix',
'stylelint --fix --allow-empty-input',
],
'{!(package)*.json,*.code-snippets,.!(browserslist)*rc}': [
'prettier --cache --write--parser json',
],