2017-10-15 13:02:08 +00:00
|
|
|
const gulp = require("gulp");
|
|
|
|
const fs = require("fs");
|
2017-09-12 22:34:25 +00:00
|
|
|
|
|
|
|
gulp.task('default', function () {
|
|
|
|
|
2017-10-13 22:30:57 +00:00
|
|
|
const isLineAComment = function (aLine) {
|
|
|
|
const lineStartsWithComment = (
|
|
|
|
aLine.indexOf("// ") === 0 ||
|
|
|
|
aLine.indexOf("/*") === 0 ||
|
|
|
|
aLine.indexOf(" */") === 0 ||
|
|
|
|
aLine.indexOf(" * ") === 0
|
|
|
|
);
|
|
|
|
return lineStartsWithComment;
|
2017-10-14 04:23:49 +00:00
|
|
|
};
|
2017-10-13 22:30:57 +00:00
|
|
|
|
|
|
|
const builtScriptComment = "/** This file is automatically generated. **/\n";
|
2017-10-13 07:32:41 +00:00
|
|
|
const standardsDefDir = "data/standards";
|
2017-09-12 22:34:25 +00:00
|
|
|
|
|
|
|
// Build all the standards listings into a single features.js file.
|
2017-10-13 07:32:41 +00:00
|
|
|
const combinedStandards = fs.readdirSync(standardsDefDir)
|
2017-09-12 22:34:25 +00:00
|
|
|
.reduce(function (prev, next) {
|
|
|
|
|
|
|
|
if (next.indexOf(".json") === -1) {
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2017-10-13 07:32:41 +00:00
|
|
|
const fileContents = fs.readFileSync(standardsDefDir + "/" + next, {encoding: "utf8"});
|
|
|
|
const standardContents = JSON.parse(fileContents);
|
2017-10-14 04:23:49 +00:00
|
|
|
const nameParts = [standardContents.info.name, standardContents.info.subsection_name].filter(part => !!part);
|
|
|
|
const standardIdenitifer = nameParts.join(": ").trim();
|
2017-10-20 20:06:43 +00:00
|
|
|
standardContents.info.identifier = standardIdenitifer;
|
2017-10-14 04:23:49 +00:00
|
|
|
prev[standardIdenitifer] = standardContents;
|
2017-09-12 22:34:25 +00:00
|
|
|
return prev;
|
|
|
|
}, {});
|
|
|
|
|
2017-10-13 22:30:57 +00:00
|
|
|
const renderedStandardsModule = builtScriptComment + `window.WEB_API_MANAGER.standards = ${JSON.stringify(combinedStandards)};`;
|
2017-09-12 22:34:25 +00:00
|
|
|
|
2017-10-20 15:09:12 +00:00
|
|
|
fs.writeFileSync("data/standards.js", renderedStandardsModule);
|
2017-09-12 22:34:25 +00:00
|
|
|
});
|