one-plain/build.js

38 lines
832 B
JavaScript
Raw Permalink Normal View History

2018-12-01 21:17:55 +08:00
/**
* 米白色主题
* @author yutent<yutent@doui.cc>
* @date 2018/12/01 13:33:44
*/
'use strict'
const fs = require('iofs')
const path = require('path')
const colors = require('./src/colors')
const base = require('./src/base')
const es = require('./src/es')
const php = require('./src/php')
const html = require('./src/html')
2018-12-06 16:27:50 +08:00
const plaintext = require('./src/plaintext')
2018-12-01 21:17:55 +08:00
const json = require('./src/json')
2018-12-11 14:24:03 +08:00
const dart = require('./src/dart')
const tokenColors = [].concat(base, html, es, php, plaintext, dart, json)
2018-12-01 21:17:55 +08:00
for (let it of tokenColors) {
if (Array.isArray(it.scope)) {
it.scope = it.scope.join(', ')
}
}
const theme = {
name: '米白色主题',
type: 'light',
colors,
tokenColors
}
fs.echo(JSON.stringify(theme, '', 2), path.join('./themes', 'color-theme.json'))
console.log('Build complete...')