-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: update flow-bin to version 0.36.0 🚀 (#537)
* chore(package): update flow-bin to version 0.36.0 https://greenkeeper.io/ * fix: flow errors
- Loading branch information
1 parent
394d313
commit 23189f5
Showing
34 changed files
with
108 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,4 @@ esproposal.class_static_fields=enable | |
esproposal.class_instance_fields=enable | ||
|
||
[version] | ||
0.35.0 | ||
0.36.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
flow-typed/npm/babel-plugin-transform-es2015-modules-commonjs_vx.x.x.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// flow-typed signature: 6b82cf8c1da27b4f0fa7a58e5ed5babf | ||
// flow-typed version: edf70dde46/mocha_v3.1.x/flow_>=v0.22.x | ||
|
||
type TestFunction = ((done: () => void) => void | Promise<mixed>); | ||
|
||
declare var describe : { | ||
(name:string, spec:() => void): void; | ||
only(description:string, spec:() => void): void; | ||
skip(description:string, spec:() => void): void; | ||
timeout(ms:number): void; | ||
}; | ||
|
||
declare var context : typeof describe; | ||
|
||
declare var it : { | ||
(name:string, spec?:TestFunction): void; | ||
only(description:string, spec:TestFunction): void; | ||
skip(description:string, spec:TestFunction): void; | ||
timeout(ms:number): void; | ||
}; | ||
|
||
declare function before(method : TestFunction):void; | ||
declare function beforeEach(method : TestFunction):void; | ||
declare function after(method : TestFunction):void; | ||
declare function afterEach(method : TestFunction):void; |
Oops, something went wrong.