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 characters
// how augury could be loaded in a user's app... | |
@NgModule({ | |
declarations: [ | |
// ... | |
], | |
imports: [ | |
AuguryWrapperModule, // ignore these stupid names :) | |
BrowserModule, | |
// ... | |
], |
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 characters
git filter-branch -f --env-filter ' | |
export GIT_AUTHOR_NAME="Steven Sherrie"; | |
export GIT_AUTHOR_EMAIL="[email protected]"; | |
export GIT_COMMITTER_EMAIL="[email protected]"; | |
' |