Skip to content
This repository has been archived by the owner on May 4, 2020. It is now read-only.

Add support for flow-runtime. #8

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"rename": "./config/babel/getComponentName.babel.js"
}],
"@babel/plugin-transform-runtime",
"babel-plugin-flow-runtime",
["module-resolver", {"alias": {"": "./src"}}]
]
}
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
emoji=true
module.name_mapper='^/\(.*\)$' -> '<PROJECT_ROOT>/src/\1'
module.name_mapper.extension='css' -> '<PROJECT_ROOT>/flow-stub/CSSModule.js'
suppress_comment=\\(.\\|\n\\)*\\$ExpectError
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9
9.4.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget to update package.json/engines as well

7 changes: 7 additions & 0 deletions flow-typed/type-defs.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ declare module 'react-dom' {
): React$ElementRef<ElementType>;
}

declare module 'flow-runtime' {
declare type Type<T> = {
assert: (input: any) => T,
};
declare var reify: any;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How does this not have available lib types?!


/*
note: this also needs to be added for ramda:
declare function chain<U, T> (
Expand Down
40 changes: 40 additions & 0 deletions package-lock.json

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

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@babel/runtime": "^7.0.0-beta.38",
"autoprefixer": "^7.2.5",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-flow-runtime": "^0.15.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-react-rename": "^0.1.0",
"clean-webpack-plugin": "^0.1.17",
Expand All @@ -33,7 +34,9 @@
"css-loader": "^0.28.9",
"extract-css-chunks-webpack-plugin": "^2.0.18",
"find-nearest-file": "^1.1.0",
"flow-runtime": "^0.16.0",
"htmlescape": "^1.1.1",
"immutable": "^3.8.2",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kill it

"midori": "^1.0.0",
"pages-webpack-plugin": "^0.1.0",
"postcss-loader": "^2.0.10",
Expand Down
15 changes: 15 additions & 0 deletions test/flow/reify.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* @flow */

import {reify} from 'flow-runtime';
import type {Type} from 'flow-runtime';

type User = {
username: string,
age: number,
};

const json = {foo: 5};
const user = (reify: Type<User>).assert(json);

// $ExpectError
user.x;