aboutsummaryrefslogtreecommitdiff
path: root/generate.js
blob: 6f7a8677a6dcf3514a88170caf71268f3828ae1b (plain)
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
var glob = require('glob');
var fs = require('fs');
var path = require('path');
var childProcess = require('child_process');

// Run compiled theme generators
glob.sync('./themes/ts-built/**/*.js').forEach(function(file) {
    childProcess.spawnSync('node', [ path.resolve(file) ]);
});

// Move generated themes to the correct folders
glob.sync('./themes/ts-built/dark/*.json').forEach(function(file) {
    fs.renameSync(file, path.join(__dirname, 'themes', 'dark', path.basename(file)));
});

glob.sync('./themes/ts-built/light/*.json').forEach(function(file) {
    fs.renameSync(file, path.join(__dirname, 'themes', 'light', path.basename(file)));
});

// Populate the "contributes" property in package.json
var themes = [];

glob.sync('./themes/dark/*.json').forEach(function(file) {
    var theme = require(file);
    themes.push({
        label: theme.name,
        uiTheme: 'vs-dark',
        path: file
    });
});

glob.sync('./themes/light/*.json').forEach(function(file) {
    var theme = require(file);
    themes.push({
        label: theme.name,
        uiTheme: 'vs',
        path: file
    });
});

var package = require('./package.json');

package.contributes.themes = themes;

fs.writeFile('./package.json', JSON.stringify(package, null, 2), function(err) {
    if (err) return console.log(err);
    console.log('package.json updated');
});