Last active
January 10, 2018 17:46
-
-
Save rayrfan/3c5e00d5ce6e21bb41ea724767cb8f27 to your computer and use it in GitHub Desktop.
Revisions
-
Ray Fan revised this gist
Jan 10, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ ``` # generate a component named PageNotFound with only a .ts file and no separate style, template or spec file or folder $ ng g c PageNotFound --flat -is -it --spec=false --dry-run ``` -
Ray Fan created this gist
Jan 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ ``` # generate a component named PageNotFound only the .ts file, no separate style, template or spec file $ ng g c PageNotFound --dry-run --flat -is -it --spec=false ```