Skip to content

Commit

Permalink
fix reference to authors file
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed Jan 19, 2020
1 parent 6e942a4 commit 8169640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/build_node.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function buildNodeHighlightJS() {
async function buildPackageJSON() {
const CONTRIBUTOR = /^- (.*) <(.*)>$/

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

0 comments on commit 8169640

Please sign in to comment.