Skip to content

Commit 27d4d36

Browse files
committed
refactor: create core folder
1 parent 71f945b commit 27d4d36

File tree

16 files changed

+12
-14
lines changed

16 files changed

+12
-14
lines changed
File renamed without changes.
File renamed without changes.

β€Žsrc/ikari.ts renamed to β€Žsrc/core/ikari.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from './types'
1414
import { Ayanami } from './ayanami'
1515
import { BasicState, getEffectActionFactories, getOriginalFunctions } from './utils'
16-
import { logStateAction } from './redux-devtools-extension'
16+
import { logStateAction } from '../redux-devtools-extension'
1717
import { ikariSymbol } from './symbols'
1818

1919
interface Config<State> {

β€Žsrc/core/index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export * from './ayanami'
2+
export * from './ikari'
3+
export * from './types'
4+
export * from './decorators'
5+
export * from './utils'
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žsrc/utils/get-effect-action-factories.ts renamed to β€Žsrc/core/utils/get-effect-action-factories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Ayanami } from '../ayanami'
22
import { EffectAction } from '../types'
3-
import { getAllActionNames } from '../decorators/action-related'
3+
import { getAllActionNames } from '../decorators'
44

55
export function getEffectActionFactories(target: Ayanami<any>) {
66
return getAllActionNames(target).reduce(

0 commit comments

Comments
Β (0)