-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(store): remove deprecated createFeature method (#3825)
Closes #3814 BREAKING CHANGES: The `createFeature` signature with root state is removed in favor of a signature without root state. An automatic migration is added to remove this signature. BEFORE: ```ts interface AppState { users: State; } export const usersFeature = createFeature<AppState>({ name: 'users', reducer: createReducer(initialState, /* case reducers */), }); ``` AFTER: ```ts export const usersFeature = createFeature({ name: 'users', reducer: createReducer(initialState, /* case reducers */), }); ```
- Loading branch information
1 parent
351a75e
commit fd8f347
Showing
2 changed files
with
0 additions
and
193 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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