Skip to content

Commit

Permalink
chore(merge): fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
christianalfoni committed Jan 23, 2021
2 parents c7b8763 + 751cb49 commit 19738cf
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@
"config": ".cz-config.js"
}
}
}
}
2 changes: 1 addition & 1 deletion packages/node_modules/overmind-react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,4 +541,4 @@ export const createConnect: <
return refForwarder
}
}
}
}
2 changes: 1 addition & 1 deletion packages/node_modules/overmind-vue/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ export function createConnect<Config extends IConfiguration>(
overmind,
} as any
}
}
}
3 changes: 1 addition & 2 deletions packages/node_modules/overmind/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
IAction,
Overmind,
SERIALIZE,
createOvermindMock,
rehydrate,
} from './'
import { namespaced } from './config'
Expand Down Expand Up @@ -419,4 +418,4 @@ describe('Overmind', () => {
changeFoo()
expect(app.state.foo).toBe('replaced!')
})
})
})
4 changes: 2 additions & 2 deletions packages/node_modules/overmind/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ import {
IReaction,
} from './types'
import {
ENVIRONMENT,
EXECUTION,
IS_OPERATOR,
IS_TEST,
Expand All @@ -59,7 +60,6 @@ import {
getFunctionName,
isPromise,
processState,
ENVIRONMENT,
} from './utils'

export * from './types'
Expand Down Expand Up @@ -1725,4 +1725,4 @@ export function waitUntil<Input, ThisConfig extends IConfiguration = Config>(
}
}
)
}
}
3 changes: 2 additions & 1 deletion packages/node_modules/overmind/src/statemachine.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import isPlainObject from 'is-plain-obj'
import { PATH, PROXY_TREE, VALUE } from 'proxy-state-tree'

import { IState } from '.'

type TState = {
Expand Down Expand Up @@ -199,4 +200,4 @@ export function statemachine<
return new StateMachine(transitions, state as any, baseState as any)
},
} as any
}
}

0 comments on commit 19738cf

Please sign in to comment.