Skip to content

Commit f678aed

Browse files
chore(merge): merge from next
2 parents 9fe2979 + 19738cf commit f678aed

File tree

13 files changed

+33771
-272
lines changed

13 files changed

+33771
-272
lines changed

package-lock.json

Lines changed: 33726 additions & 240 deletions
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-statechart/src/index.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { createOvermind, IContext } from 'overmind'
1+
import { IContext, createOvermind } from 'overmind'
2+
23
import { Statechart, statechart } from './'
34

45
describe('Statecharts', () => {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import {
2+
ContextFunction,
3+
ENVIRONMENT,
24
IConfiguration,
5+
derived,
36
filter,
47
pipe,
5-
derived,
6-
ENVIRONMENT,
7-
ContextFunction,
88
} from 'overmind'
99

1010
const ACTIONS = 'ACTIONS'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ENVIRONMENT, EventType } from 'overmind'
2-
import { onMount, afterUpdate, onDestroy } from 'svelte'
2+
import { afterUpdate, onDestroy, onMount } from 'svelte'
33

44
const IS_PRODUCTION = ENVIRONMENT === 'production'
55

packages/node_modules/overmind/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { IS_DERIVED_CONSTRUCTOR } from './derived'
22
import * as internalTypes from './internalTypes'
3+
import { Overmind } from './Overmind'
34
import { IConfiguration } from './types'
45
import * as utils from './utils'
5-
import { Overmind } from './Overmind'
66

77
export * from './types'
88
export * from './operators'

packages/node_modules/overmind/src/internalTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ITrackStateTree,
66
} from 'proxy-state-tree'
77

8-
import { IAction, IOperator, IContext } from './types'
8+
import { IAction, IContext, IOperator } from './types'
99

1010
export type SubType<Base, Condition> = Pick<
1111
Base,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ describe('Statemachine', () => {
185185
actions: typeof actions
186186
}>
187187

188-
189188
const overmind = createOvermind(config, {devtools: false, strict: true, devEnv: 'test'})
190189

191190
expect(() => overmind.actions.transition()).toThrow()

packages/node_modules/overmind/src/statemachine.ts

Lines changed: 1 addition & 0 deletions
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 = {

packages/node_modules/proxy-state-tree/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"bundlesize": [
4848
{
4949
"path": "./dist/proxy-state-tree.min.js",
50-
"maxSize": "3.3 kB"
50+
"maxSize": "4 kB"
5151
}
5252
]
5353
}

0 commit comments

Comments
 (0)