-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
45 lines (41 loc) · 1.42 KB
/
build.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var fs = require("fs");
var plist = require('plist');
var watch = require('glob-watcher');
var path = require('path');
var yaml = require('js-yaml');
var inputs = ["syntaxes/touist.YAML-tmLanguage"];
var update = function(input) {
var output = input.replace("YAML-tmLanguage", "JSON-tmLanguage");
var output2 = input.replace("YAML-tmLanguage", "tmLanguage");
console.log(input + " -> " + output + ", " + output2);
try {
var input_txt = yaml.safeLoad(fs.readFileSync(input, "utf8"));
fs.writeFileSync(output, JSON.stringify(input_txt, null, '\t'));
fs.writeFileSync(output2, plist.build(input_txt));
} catch (e) {
console.error(" error: "+e);
}
}
var watchMode = false
process.argv.forEach((val, index) => {
if (val === "-w") {
console.log("Watching " + inputs.join(", "));
watchMode = true
}
});
if (watchMode) {
inputs.forEach((f) => {update(f)})
// Raw chokidar instance
var watcher = watch(inputs);
// Listen for the 'change' event to get `path`/`stat`
// No async completion available because this is the raw chokidar instance
watcher.on('change', function (path, stat) {
// `path` is the path of the changed file
// `stat` is an `fs.Stat` object (not always available)
update(path)
});
} else {
inputs.forEach((f) => {update(f)})
}