Skip to content

Commit 252b77f

Browse files
committed
Resolve issue with --blacklist
1 parent ed95e00 commit 252b77f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ssr",
3-
"version": "0.10.10",
3+
"version": "0.10.11",
44
"description": "Angular server-side rendering implementation",
55
"main": "build/index.js",
66
"typings": "build/index.d.ts",

source/bin/options/parse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const parseCommandLine = () => {
137137

138138
options.on('inline', value => enableInline = value == null ? true : value);
139139

140-
options.on('blacklist', value => blacklist = value == null ? false : value);
140+
options.on('blacklist', value => blacklist = value == null ? true : value);
141141

142142
return options.parse(process.argv);
143143
};
@@ -223,4 +223,4 @@ const parsePreboot = (json: string): PrebootConfiguration | boolean => {
223223
}
224224

225225
return options;
226-
}
226+
}

0 commit comments

Comments
 (0)