diff --git a/.stylelintrc.js b/.stylelintrc.js index 591e391..e4f9127 100644 --- a/.stylelintrc.js +++ b/.stylelintrc.js @@ -1,3 +1,7 @@ +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description stylelint + */ module.exports = { extends: ['stylelint-config-recess-order', 'stylelint-config-prettier'], } diff --git a/babel.config.js b/babel.config.js index c1b783e..34ff3d0 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,7 @@ +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description babel.config + */ module.exports = { presets: ['@vue/cli-plugin-babel/preset'], } diff --git a/deploy.sh b/deploy.sh index c5e0e32..d2867d2 100644 --- a/deploy.sh +++ b/deploy.sh @@ -1,3 +1,4 @@ +#强制推送 #!/usr/bin/env bash set -e npm run build diff --git a/plopfile.js b/plopfile.js index 4b2e575..8121409 100644 --- a/plopfile.js +++ b/plopfile.js @@ -1,9 +1,12 @@ +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description 代码生成机 + */ const viewGenerator = require('zx-templates/view/prompt') const curdGenerator = require('zx-templates/curd/prompt') const componentGenerator = require('zx-templates/component/prompt') const mockGenerator = require('zx-templates/mock/prompt') const vuexGenerator = require('zx-templates/vuex/prompt') - module.exports = (plop) => { plop.setGenerator('view', viewGenerator) plop.setGenerator('curd', curdGenerator) diff --git a/prettier.config.js b/prettier.config.js index eb510f0..0e3b87b 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,3 +1,8 @@ +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description 代码规范 + */ + module.exports = { printWidth: 80, tabWidth: 2, diff --git a/push.sh b/push.sh index ab6163e..b8b43f7 100644 --- a/push.sh +++ b/push.sh @@ -1,8 +1,9 @@ +#强制推送 #!/usr/bin/env bash set -e git init git add -A -git commit -m '🎉🎉🎉仓库重置到2020年9月29日,Vue2.6最后一个版本,之前版本不再支持,具体请查阅文档,Vue 3.0版本即将发布请耐心等待!!!' +git commit -m '🎉deploy' git push -f "https://${access_token}@github.com/chuzhixin/vue-admin-beautiful.git" master exec /bin/bash diff --git a/vue.config.js b/vue.config.js index 5a7aba4..c56fcfe 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,3 +1,8 @@ +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description cli配置 + */ + const path = require('path') const { publicPath, diff --git a/webstorm.config.js b/webstorm.config.js index 9117455..499195b 100644 --- a/webstorm.config.js +++ b/webstorm.config.js @@ -1,3 +1,6 @@ -'use strict' +/** + * @author chuzhixin 1204505056@qq.com (不想保留author可删除) + * @description webstorm.config + */ const webpackConfig = require('@vue/cli-service/webpack.config.js') module.exports = webpackConfig