-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support to give name for store dev tool #517
Conversation
Finished passing name to devtools fixes #463 |
Hi @brandonroberts I updated this pull request with my latest changes. |
Hi @brandonroberts , |
@roopkt the changelog shouldn't be included in your changes. Please verify that your changes change the name in the extension also. |
Hi @brandonroberts thanks for giving me the direction to pass options to send method. I am planning to inject then I even wanted to validate by running example app however unfortunately when I run Example of error:
This error is big problem and wasting lots of time. I want to know the process of testing changes. When I do some changes in any module in ngrx then for testing the same in example app what is my step ? I tried below close vscode, delete platform/dist folder open vscode and run |
…ts to verify its really ending options to redux dev tool extension ngrx#517
Hey @brandonroberts |
CHANGELOG.md
Outdated
@@ -1,6 +1,204 @@ | |||
# Changelogs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be included in the changes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure
@@ -64,12 +64,16 @@ export function noMonitor(): null { | |||
return null; | |||
} | |||
|
|||
export const DEFAULT_NAME = 'ngrx-store-devtool-instance'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change to NgRx Store DevTools
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed the name to NgRx Store DevTools
export function createConfig( | ||
_options: StoreDevtoolsOptions | ||
): StoreDevtoolsConfig { | ||
const DEFAULT_OPTIONS: StoreDevtoolsConfig = { | ||
const DEFAULT_OPTIONS: Partial<StoreDevtoolsConfig> = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this a partial?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed the partial from here.
CHANGELOG.md
Outdated
@@ -1,6 +1,204 @@ | |||
# Changelogs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changelog should not be included in these changes. We'll generate a changelog in the next release
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for explaination
Thanks! |
This is the changes to put name on store dev tool configuration object for the issue #463