File tree 1 file changed +2
-7
lines changed
1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ function cli(process, beforeMinifyCallback) {
12
12
var packageConfig = fs . readFileSync ( path . join ( __dirname , 'package.json' ) ) ;
13
13
var buildVersion = JSON . parse ( packageConfig ) . version ;
14
14
var fromStdin ;
15
- var debugMode ;
16
- var removeInlinedFiles ;
17
15
var inputOptions ;
18
16
var options ;
19
17
var stdin ;
@@ -134,9 +132,6 @@ function cli(process, beforeMinifyCallback) {
134
132
}
135
133
136
134
// Now coerce arguments into CleanCSS configuration...
137
- debugMode = inputOptions . debug ;
138
- removeInlinedFiles = inputOptions . removeInlinedFiles ;
139
-
140
135
options = {
141
136
batch : inputOptions . batch ,
142
137
compatibility : inputOptions . compatibility ,
@@ -175,8 +170,8 @@ function cli(process, beforeMinifyCallback) {
175
170
var configurations = {
176
171
batchSuffix : inputOptions . batchSuffix ,
177
172
beforeMinifyCallback : beforeMinifyCallback ,
178
- debugMode : debugMode ,
179
- removeInlinedFiles : removeInlinedFiles ,
173
+ debugMode : inputOptions . debug ,
174
+ removeInlinedFiles : inputOptions . removeInlinedFiles ,
180
175
inputSourceMap : inputOptions . inputSourceMap
181
176
} ;
182
177
You can’t perform that action at this time.
0 commit comments