Skip to content

Commit

Permalink
fix: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
beetcb committed Feb 25, 2021
1 parent 97f123b commit bb82cb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const c = require('chalk')
const lint = require('./src/lint')
const prompts = require('./src/prompts')
const { replLive, onTab, onLine, onInput, onStop, onSubmit } = require('../repll/index')
const { replLive, onTab, onLine, onInput, onStop, onSubmit } = require('repll')
const { findIssuePR, gitCommit } = require('./src/git')
const { checkType, checkScope, checkDes } = require('./src/continuousCheck')
const { typeMap, areaDes } = require('./src/convention')
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "commitlive",
"version": "1.0.7",
"version": "1.0.8",
"description": "write conventional commits livly",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"@commitlint/lint": "^12.0.0",
"@commitlint/load": "^12.0.0",
"chalk": "^4.1.0",
"repll": "^1.4.0"
"repll": "^1.4.1"
},
"devDependencies": {
"parcel-plugin-shebang": "1.3.2"
Expand Down
8 changes: 4 additions & 4 deletions src/prompts.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const c = require('chalk')
const prompts = {
[c`{blue description› }`]: '<type>[optional scope]: <description>',
[c`{blue body› }`]: '[optional body]',
[c`{blue footer› }`]: '[optional footer(s)]',
[c`{green Your commit message is: <hide>}`]: '',
[c`\n{blue description› }`]: '<type>[optional scope]: <description>',
[c`\n{blue body› }`]: '[optional body]',
[c`\n{blue footer› }`]: '[optional footer(s)]',
[c`\n{green Your commit message is: <hide>}`]: '',
}

module.exports = prompts

0 comments on commit bb82cb5

Please sign in to comment.