Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit ba4d903

Browse files
committed
chore(i18n): fix UCD extraction for Node 10.x
Previously (e.g. Node.js 8.x), the 3rd argument to `fs.writeFile()` (i.e. the callback) could be undefined. On Node.js 10.x, this throws an error. This commit fixes it by switching to `fs.writeFileSync()` which seems to have been the original intention (based on the sorrounding code).
1 parent 7240f31 commit ba4d903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

i18n/ucd/src/extract.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function main() {
2020
} catch (e) {
2121
fs.mkdirSync(__dirname + '/../../../src/ngParseExt');
2222
}
23-
fs.writeFile(__dirname + '/../../../src/ngParseExt/ucd.js', code);
23+
fs.writeFileSync(__dirname + '/../../../src/ngParseExt/ucd.js', code);
2424
}
2525
}
2626

0 commit comments

Comments
 (0)