Skip to content

Commit 6b8cd9c

Browse files
committed
v1.0.0
1 parent 7921a5a commit 6b8cd9c

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.flowconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[ignore]
2+
dist/.*
23

34
[include]
45

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
@@ -57,7 +57,7 @@
5757
"rollup-plugin-uglify": "^2.0.1"
5858
},
5959
"peerDependencies": {
60-
"final-form": "1.2.0"
60+
"final-form": "^1.2.0"
6161
},
6262
"lint-staged": {
6363
"*.{js,json,md,css}": ["prettier --write", "git add"]

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @flow
2-
import { Mutator } from 'final-form'
2+
import type { Mutator } from 'final-form'
33
import insert from './insert'
44
import move from './move'
55
import pop from './pop'

src/index.js.flow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @flow
2-
import { Mutator } from 'final-form'
2+
import type { Mutator } from 'final-form'
33

44
type DefaultType = { [string]: Mutator }
55

0 commit comments

Comments
 (0)