Skip to content

Commit 19738cf

Browse files
chore(merge): fix merge issues
2 parents c7b8763 + 751cb49 commit 19738cf

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@
140140
"config": ".cz-config.js"
141141
}
142142
}
143-
}
143+
}

packages/node_modules/overmind-react/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,4 +541,4 @@ export const createConnect: <
541541
return refForwarder
542542
}
543543
}
544-
}
544+
}

packages/node_modules/overmind-vue/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ export function createConnect<Config extends IConfiguration>(
176176
overmind,
177177
} as any
178178
}
179-
}
179+
}

packages/node_modules/overmind/src/index.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
IAction,
44
Overmind,
55
SERIALIZE,
6-
createOvermindMock,
76
rehydrate,
87
} from './'
98
import { namespaced } from './config'
@@ -419,4 +418,4 @@ describe('Overmind', () => {
419418
changeFoo()
420419
expect(app.state.foo).toBe('replaced!')
421420
})
422-
})
421+
})

packages/node_modules/overmind/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ import {
4545
IReaction,
4646
} from './types'
4747
import {
48+
ENVIRONMENT,
4849
EXECUTION,
4950
IS_OPERATOR,
5051
IS_TEST,
@@ -59,7 +60,6 @@ import {
5960
getFunctionName,
6061
isPromise,
6162
processState,
62-
ENVIRONMENT,
6363
} from './utils'
6464

6565
export * from './types'
@@ -1725,4 +1725,4 @@ export function waitUntil<Input, ThisConfig extends IConfiguration = Config>(
17251725
}
17261726
}
17271727
)
1728-
}
1728+
}

packages/node_modules/overmind/src/statemachine.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import isPlainObject from 'is-plain-obj'
22
import { PATH, PROXY_TREE, VALUE } from 'proxy-state-tree'
3+
34
import { IState } from '.'
45

56
type TState = {
@@ -199,4 +200,4 @@ export function statemachine<
199200
return new StateMachine(transitions, state as any, baseState as any)
200201
},
201202
} as any
202-
}
203+
}

0 commit comments

Comments
 (0)