File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 9
9
var fs = require ( 'fs' ) ;
10
10
var parseArgs = require ( 'minimist' ) ;
11
11
var path = require ( 'path' ) ;
12
+ var os = require ( 'os' ) ;
12
13
13
14
var Comb = require ( './csscomb' ) ;
14
15
var Errors = require ( './errors' ) ;
@@ -86,9 +87,10 @@ function displayHelp() {
86
87
' -v, --verbose' ,
87
88
' Whether to print logging info.' ,
88
89
' -t, --tty-mode' ,
89
- ' Run the tool in TTY mode using external app (e.g. IDE).'
90
+ ' Run the tool in TTY mode using external app (e.g. IDE).' ,
91
+ ''
90
92
] ;
91
- process . stdout . write ( help . join ( '\n' ) + '\n' ) ;
93
+ process . stdout . write ( help . join ( os . EOL ) ) ;
92
94
}
93
95
94
96
function detectConfig ( ) {
@@ -162,7 +164,7 @@ function processFiles(files) {
162
164
`${ c . length } file${ c . length === 1 ? '' : 's' } processed` ,
163
165
`${ changed } file${ changed === 1 ? '' : 's' } fixed` ,
164
166
''
165
- ] . join ( '\n' ) ;
167
+ ] . join ( os . EOL ) ;
166
168
process . stdout . write ( message ) ;
167
169
}
168
170
Original file line number Diff line number Diff line change 4
4
require ( 'babel-polyfill' ) ;
5
5
6
6
let fs = require ( 'fs' ) ;
7
+ var os = require ( 'os' ) ;
7
8
let gonzales = require ( 'gonzales-pe' ) ;
8
9
let minimatch = require ( 'minimatch' ) ;
9
10
let Errors = require ( './errors' ) ;
@@ -145,7 +146,7 @@ class Comb {
145
146
result . push ( ln + ' | ' + line ) ;
146
147
}
147
148
}
148
- return result . join ( '\n' ) ;
149
+ return result . join ( os . EOL ) ;
149
150
}
150
151
151
152
/**
@@ -364,7 +365,7 @@ class Comb {
364
365
let message = filename ? [ filename ] : [ ] ;
365
366
message . push ( e . message ) ;
366
367
message . push ( 'CSScomb Core version: ' + version ) ;
367
- e . stack = e . message = message . join ( '\n' ) ;
368
+ e . stack = e . message = message . join ( os . EOL ) ;
368
369
throw e ;
369
370
}
370
371
} ) ;
You can’t perform that action at this time.
0 commit comments