Skip to content

Commit

Permalink
fix: replace String.raw to string-raw
Browse files Browse the repository at this point in the history
  • Loading branch information
59naga committed Apr 2, 2016
1 parent 03160f3 commit 391978c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
],
"dependencies": {
"chalk": "^1.1.1",
"lodash.flattendeep": "^4.1.0"
"lodash.flattendeep": "^4.1.0",
"string-raw": "^1.0.0"
},
"scripts": {
"start": "abby test",
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
// dependencies
import Plugin from 'abigail-plugin';
import chalk from 'chalk';
import stringRaw from 'string-raw';
import meta from 'abigail/package.json';
import flattenDeep from 'lodash.flattendeep';

// @class Exit
export default class Exit extends Plugin {
static output = chalk.magenta(String.raw`
static output = chalk.magenta(stringRaw`
_ |_ . _ _ .|
(_||_)|(_)(_||| ${chalk.grey(`v${meta.version}`)}
Expand Down

0 comments on commit 391978c

Please sign in to comment.