Skip to content

Commit

Permalink
Meta: properly skip loading ecmarkup's built-in biblio file (#2188)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored and ljharb committed Sep 23, 2020
1 parent b2dbd9a commit e4679d4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"build-spec": "YEAR=2020 && git checkout --quiet \"es${YEAR}\" && mkdir -p \"out/${YEAR}\" && cp -R img \"out/${YEAR}\" && ecmarkup --verbose spec.html \"out/${YEAR}/index.html\" --css \"out/${YEAR}/ecmarkup.css\" --js \"out/${YEAR}/ecmarkup.js\" && git checkout --quiet travis-origin/test-travis",
"postbuild-spec": "git remote rm travis-origin",
"build-master": "npm run build-only -- --lint-spec --strict",
"prebuild-only": "npm run clean && mkdir out && cp -R img out && npm run wipe-es6biblio",
"build-only": "ecmarkup --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"prebuild-only": "npm run clean && mkdir out && cp -R img out",
"build-only": "ecmarkup --no-ecma-262-biblio --verbose spec.html out/index.html --css out/ecmarkup.css --js out/ecmarkup.js",
"build": "npm run build-master",
"build-for-pdf": "npm run build-master -- --old-toc",
"build-travis": "npm run build-master && npm run build-spec",
Expand All @@ -19,7 +19,6 @@
"clean": "rm -rf out",
"test": "exit 0",
"watch": "npm run build-only -- --lint-spec --watch",
"wipe-es6biblio": "echo \"{}\" > node_modules/ecmarkup/es6biblio.json",
"check-commit": "node scripts/check-commit"
},
"repository": "tc39/ecma262",
Expand Down

0 comments on commit e4679d4

Please sign in to comment.