Skip to content

Commit

Permalink
flow switch to module.exports
Browse files Browse the repository at this point in the history
  • Loading branch information
SheetJSDev committed Apr 21, 2018
1 parent e3efc1a commit cccc700
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,3 @@ module.file_ext=.js
module.file_ext=.njs
module.ignore_non_literal_requires=true
suppress_comment= \\(.\\|\n\\)*\\$FlowIgnore

[lints]
deprecated-declare-exports=off
7 changes: 3 additions & 4 deletions misc/flowdeps.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/*# vim: set ts=2: */
/*::
declare module './' { declare var exports:SSFModule; };
declare module '../' { declare var exports:SSFModule; };
declare module 'ssf' { declare var exports:SSFModule; };
declare module './' { declare module.exports:SSFModule; };
declare module '../' { declare module.exports:SSFModule; };
declare module 'ssf' { declare module.exports:SSFModule; };
*/

0 comments on commit cccc700

Please sign in to comment.