Skip to content

Commit 4c99267

Browse files
committed
refactor(actions): change action type prefix to @@redux-features/
to conform to how everyone else is prefixing their actions BREAKING CHANGE: the action types have changed (they all started with `REDUX_FEATURES.`, but now they start with `@@redux-features/` to be consistent with other packages)
1 parent caa8a70 commit 4c99267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import type {Feature, FeatureState, FeatureAction} from './index.js.flow'
44

5-
export const ACTION_TYPE_PREFIX = 'REDUX_FEATURES.'
5+
export const ACTION_TYPE_PREFIX = '@@redux-features/'
66
export const ADD_FEATURE = ACTION_TYPE_PREFIX + 'ADD_FEATURE'
77
export const REPLACE_FEATURE = ACTION_TYPE_PREFIX + 'REPLACE_FEATURE'
88
export const LOAD_FEATURE = ACTION_TYPE_PREFIX + 'LOAD_FEATURE'

0 commit comments

Comments
 (0)