File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -167,11 +167,11 @@ The engine appends CI metadata to commit messages when running on:
167167
168168### Option Name Mapping
169169
170- ** CRITICAL:** Angular CLI does NOT rename kebab-case to camelCase for boolean flags with "no" prefix . The engine handles this mapping :
170+ ** CRITICAL:** Angular CLI passes ` --no-X ` flags as ` noX: true ` , NOT as ` X: false ` . The engine must manually invert these :
171171
172- - CLI: ` --no-dotfiles ` → Code: ` noDotfiles ` → Internal: ` dotfiles: false `
173- - CLI: ` --no-notfound ` → Code: ` noNotfound ` → Internal: ` notfound: false `
174- - CLI: ` --no-nojekyll ` → Code: ` noNojekyll ` → Internal: ` nojekyll: false `
172+ - ` --no-dotfiles ` → Angular passes ` { noDotfiles: true } ` → Engine converts to ` { dotfiles: false } `
173+ - ` --no-notfound ` → Angular passes ` { noNotfound: true } ` → Engine converts to ` { notfound: false } `
174+ - ` --no-nojekyll ` → Angular passes ` { noNojekyll: true } ` → Engine converts to ` { nojekyll: false } `
175175
176176## Important Conventions
177177
You can’t perform that action at this time.
0 commit comments