@@ -60,18 +60,18 @@ var CONFIG_USAGE = `
6060 ${ clr ( 'Configuration' , 'bold' ) }
6161
6262
63- Bankai is built on top of compilers for scripts, styles and documents.
64- Each of them can be configured by adding a field to your project's
63+ Bankai is built on top of compilers for scripts, styles and documents.
64+ Each of them can be configured by adding a field to your project's
6565 package.json file.
6666
67- These three fields are, respectively: ${ clr ( '"browserify"' , 'cyan' ) } , ${ clr ( '"sheetify"' , 'cyan' ) } and
67+ These three fields are, respectively: ${ clr ( '"browserify"' , 'cyan' ) } , ${ clr ( '"sheetify"' , 'cyan' ) } and
6868 ${ clr ( '"documentify"' , 'cyan' ) } . Each one should have a configuration object as it's value.
6969
7070 There is currently one possible configuration field: "transform".
7171
7272 It can be one of either:
7373
74- 1. An array of transform names.
74+ 1. An array of transform names.
7575 ie: ${ clr ( '[ "vueify" ]' , 'cyan' ) }
7676 2. An array of tuples transform name + configuration object.
7777 ie: ${ clr ( '[[ "vueify", { "sass": { "includePaths": [ "src/assets/css" ] } } ]]' , 'cyan' ) }
@@ -152,8 +152,8 @@ function alternateBuffer () {
152152 var esc = Buffer . from ( [ 0x1B ] )
153153
154154 process . stdout . write ( '\x1b[?1049h' ) // Enter alternate buffer.
155- process . stdout . write ( '\x1b[H' ) // Reset screen to top.
156- process . stdout . write ( '\x1b[?25l' ) // Hide cursor
155+ process . stdout . write ( '\x1b[H' ) // Reset screen to top.
156+ process . stdout . write ( '\x1b[?25l' ) // Hide cursor
157157
158158 process . on ( 'unhandledRejection' , onexit )
159159 process . on ( 'uncaughtException' , onexit )
@@ -169,8 +169,8 @@ function alternateBuffer () {
169169 }
170170
171171 function onexit ( statusCode ) {
172- process . stdout . write ( '\x1b[?1049l' ) // Enter to main buffer.
173- process . stdout . write ( '\x1b[?25h' ) // Restore cursor
172+ process . stdout . write ( '\x1b[?1049l' ) // Enter to main buffer.
173+ process . stdout . write ( '\x1b[?25h' ) // Restore cursor
174174
175175 if ( statusCode instanceof Error ) {
176176 console . error ( 'A critical error occured, forcing Bankai to abort:\n' )
0 commit comments