Skip to content

Commit 8169640

Browse files
committed
fix reference to authors file
1 parent 6e942a4 commit 8169640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async function buildNodeHighlightJS() {
4343
async function buildPackageJSON() {
4444
const CONTRIBUTOR = /^- (.*) <(.*)>$/
4545

46-
let authors = await fs.readFile("AUTHORS.en.txt", {encoding: "utf8"})
46+
let authors = await fs.readFile("AUTHORS.txt", {encoding: "utf8"})
4747
let lines = authors.split(/\r?\n/)
4848
let json = require("../package")
4949
json.contributors = lines.reduce((acc, line) => {

0 commit comments

Comments
 (0)