Skip to content

Commit

Permalink
add a couple of error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed May 7, 2017
1 parent 7ee14b6 commit 70bfdbf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions messages.js
@@ -0,0 +1,19 @@
const chalk = require('chalk')

const warning = chalk.bold.yellow('warning')
const error = chalk.bold.red('error')

const unacceptablePlatform = chalk.white(
'this will very likely only work on macOS'
)

const makeDirectoriesFailed = chalk.white(
'failed to make keybindings directory'
)

module.exports = {
warning,
error,
unacceptablePlatform,
makeDirectoriesFailed
}

0 comments on commit 70bfdbf

Please sign in to comment.