chore: move commit-lint to cli

This commit is contained in:
陈嘉涵 2019-08-22 14:01:53 +08:00
parent bcc6868c06
commit fc111cdfc7
6 changed files with 32 additions and 13 deletions

View File

@ -29,7 +29,7 @@
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node build/lint-commit-msg.js"
"commit-msg": "vant commit-lint"
}
},
"lint-staged": {
@ -70,7 +70,7 @@
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.16",
"@vant/cli": "^0.1.1",
"@vant/cli": "^1.0.0",
"@vant/doc": "^2.4.0",
"@vant/eslint-config": "^1.2.4",
"@vant/markdown-loader": "^2.2.0",

View File

@ -21,3 +21,13 @@ yarn add @vant/cli --dev
```shell
vant changelog ./name.md
```
#### Commit Lint
```json
"husky": {
"hooks": {
"commit-msg": "vant commit-lint"
}
}
```

View File

@ -1,6 +1,6 @@
{
"name": "@vant/cli",
"version": "0.1.1",
"version": "1.0.0",
"description": "vant cli tools",
"main": "./src/index.js",
"bin": {

View File

@ -1,13 +1,14 @@
const fs = require('fs');
const signale = require('signale');
const gitParams = process.env.HUSKY_GIT_PARAMS;
const commitMsg = fs.readFileSync(gitParams, 'utf-8').trim();
const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
if (!commitRE.test(commitMsg)) {
signale.error(`Error: invalid commit message format.
function commitLint() {
const gitParams = process.env.HUSKY_GIT_PARAMS;
const commitMsg = fs.readFileSync(gitParams, 'utf-8').trim();
if (!commitRE.test(commitMsg)) {
signale.error(`Error: invalid commit message format.
Proper commit message format is required for automated changelog generation.
@ -30,5 +31,8 @@ Allowed Types:
- refactor
- breaking change
`);
process.exit(1);
process.exit(1);
}
}
module.exports = commitLint;

View File

@ -2,10 +2,15 @@
const commander = require('commander');
const changelog = require('./changelog');
const commitLint = require('./commit-lint');
commander
.command('changelog <dir>')
.option('--tag [tag]', 'Since tag')
.action(changelog);
commander
.command('commit-lint')
.action(commitLint);
commander.parse(process.argv);

View File

@ -1202,10 +1202,10 @@
lodash.unescape "4.0.1"
semver "5.5.0"
"@vant/cli@^0.1.1":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@vant/cli/-/cli-0.1.1.tgz#d3513aa74b66bb3654d461198fd2b897ff155530"
integrity sha512-C7i4cVM5dCjcV6IgHhqwpdB/igGHL4/Dpxl50uyGk5Ac34E51iIUwgMXrA6xSjrtuwXW4yfwww9oNp92Vq/WqA==
"@vant/cli@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@vant/cli/-/cli-1.0.0.tgz#7ea529a94afb69fe945869e871b3bb87fcba0cfc"
integrity sha512-4gW8mQBVxXOeuBDnA5eKN7dd9hWHS+1fmbyIiFJqq5u0BXtkIi1Lz4ggLJBOpSu8hjx1PlDDEZariwhjqDYXxw==
dependencies:
commander "^2.17.1"
shelljs "^0.8.2"