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

View File

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

View File

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

View File

@ -1,12 +1,13 @@
const fs = require('fs'); const fs = require('fs');
const signale = require('signale'); 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}/; const commitRE = /^(revert: )?(fix|feat|docs|perf|test|types|build|chore|refactor|breaking change)(\(.+\))?: .{1,50}/;
if (!commitRE.test(commitMsg)) { 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. signale.error(`Error: invalid commit message format.
Proper commit message format is required for automated changelog generation. Proper commit message format is required for automated changelog generation.
@ -31,4 +32,7 @@ Allowed Types:
- breaking change - breaking change
`); `);
process.exit(1); process.exit(1);
}
} }
module.exports = commitLint;

View File

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

View File

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