You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/angular-cli-ghpages
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -50,15 +50,15 @@ commander
50
50
)
51
51
.option(
52
52
'-T, --no-dotfiles',
53
-
'Includes dotfiles by default. Otherwise files starting with `.` are ignored.'
53
+
'Includes dotfiles by default. Otherwise files starting with `.` are ignored.',
54
54
)
55
55
.option(
56
56
'--no-notfound',
57
57
'By default a 404.html file is created, because this is the only known workaround to avoid 404 error messages on GitHub Pages. For Cloudflare Pages we highly recommend to disable the 404.html file by setting this switch to true!',
58
58
)
59
59
.option(
60
60
'--no-nojekyll',
61
-
'By default a .nojekyll file is created, because we assume you don\'t want to compile the build again with Jekyll.'
61
+
'By default a .nojekyll file is created, because we assume you don\'t want to compile the build again with Jekyll.',
62
62
)
63
63
.option(
64
64
'-c, --cname <domain>',
@@ -82,6 +82,19 @@ var consoleLogger = {
82
82
fatal: console.error
83
83
};
84
84
85
+
// !! Important: Commander is renaming the vars here !!
0 commit comments