Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 .flowconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[ignore]
<PROJECT_ROOT>/lib
<PROJECT_ROOT>/node_modules/resolve/test

[include]

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"@babel/core": "^7.0.0",
"flow-bin": "0.116.1",
"glob": "^7.0.0",
"mkdirp": "0.5.1",
"mkdirp": "1.0.4",
"node-watch": "0.6.3",
"yargs": "^15.0.0"
}
}
}
2 changes: 1 addition & 1 deletion src/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ function transformJavascriptFile(
transform(
contents,
Object.assign({filename: filePath}, babelConfig),
(err2: ?Error, result: {code: string}) => {
(err2: ?Error, result: {|code: string|}) => {
if (err2) {
if (verbose) {
console.error(`Failed to transform ${filePath}`)
Expand Down
Loading