Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: umijs/fabric
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.11.0
Choose a base ref
...
head repository: umijs/fabric
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.11.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 20, 2022

  1. lock: update lock file

    chenshuai2144 committed May 20, 2022
    Copy the full SHA
    a8db023 View commit details
  2. v2.11.1

    chenshuai2144 committed May 20, 2022
    Copy the full SHA
    ffca881 View commit details
Showing with 7 additions and 3 deletions.
  1. +1 −1 package.json
  2. +6 −2 src/verifyCommit.ts
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@umijs/fabric",
"version": "2.11.0",
"version": "2.11.1",
"description": "A collection of configuration files containing prettier, eslint, stylelint",
"keywords": [
"eslint",
8 changes: 6 additions & 2 deletions src/verifyCommit.ts
Original file line number Diff line number Diff line change
@@ -24,7 +24,9 @@ if (!commitRE.test(msg)) {
${chalk.green(`🌷 UI(模块): 修改了一下样式`)}
${chalk.green(`🏰 chore(模块): 对脚手架做了些更改`)}
${chalk.green(`🌐 locale(模块): 为国际化做了微小的贡献\n`)}
${chalk.green(`其他提交类型: refactor, perf, workflow, build, CI, typos, tests, types, wip, release, dep\n`)}
${chalk.green(
`其他提交类型: refactor, perf, workflow, build, CI, typos, tests, types, wip, release, dep\n`,
)}
${chalk.red(`See .github/commit-convention.md for more details.\n`)}`,
);
} else {
@@ -41,7 +43,9 @@ if (!commitRE.test(msg)) {
${chalk.green(`🌷 UI(compiler): better styles`)}
${chalk.green(`🏰 chore(compiler): Made some changes to the scaffolding`)}
${chalk.green(`🌐 locale(compiler): Made a small contribution to internationalization\n`)}
${chalk.green(`Other commit types: refactor, perf, workflow, build, CI, typos, tests, types, wip, release, dep\n`)}
${chalk.green(
`Other commit types: refactor, perf, workflow, build, CI, typos, tests, types, wip, release, dep\n`,
)}
${chalk.red(`See .github/commit-convention.md for more details.\n`)}`,
);
}