We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff334b6 commit f5c2399Copy full SHA for f5c2399
lib/parse-options.js
@@ -17,7 +17,11 @@ module.exports = function(options) {
17
options.keepSpecialComments = 1;
18
break;
19
case "keepSpecialComments":
20
- options.keepSpecialComments = argSplit[1];
+ var specialCommentOption = argSplit[1];
21
+ if (specialCommentOption !== "*") {
22
+ specialCommentOption = Number(specialCommentOption);
23
+ }
24
+ options.keepSpecialComments = specialCommentOption;
25
26
// for compatibility - does nothing
27
case "skip-advanced":
0 commit comments