-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.js
52 lines (42 loc) · 1.01 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
46
47
48
49
50
51
52
"use strict";
const fs = require("fs");
var path = require("path");
const editorConfig = require("./src/editor.json");
const { normal, bold } = require("./src/syntax");
const inputPath = path.join(
"node_modules",
"github-markdown-css/github-markdown.css"
);
const fullPath = path.join(__dirname, inputPath);
fs.writeFileSync(
"./themes/Vulgocode-Color-Theme.json",
JSON.stringify(
{
...editorConfig,
...normal
},
"",
2
)
);
fs.writeFileSync(
"./themes/Vulgocode-Color-Theme-bold.json",
JSON.stringify(
{
...editorConfig,
...bold
},
"",
2
)
);
function updateGithubMarkdownCss(input) {
return (
`/* Generated from '${inputPath}' */\n` +
input.replace(/\.markdown-body/g, ".vscode-body")
);
}
const input = fs.readFileSync(fullPath, "utf8");
fs.writeFileSync("themes/github-markdown.css", updateGithubMarkdownCss(input));
fs.copyFileSync("./src/base.css", "./themes/base.css");
fs.copyFileSync("./src/checkboxes.css", "./themes/checkboxes.css");