Swapping in real template vars

This commit is contained in:
Sundeep Malladi 2017-04-06 09:41:46 -05:00
parent 3ddbee30ec
commit 5aa24248a1
14 changed files with 2192 additions and 160 deletions

View file

@ -3,9 +3,9 @@ import infos from '../package.json';
const today = new Date() const today = new Date()
, paths = { , paths = {
'icons': './icons', 'icons': './icons',
'themes': './themes', 'themes': './src/themes',
'src': './src', 'src': './src',
'dist': './dist' 'dist': './dist'
}; };
export default paths; export default paths;

View file

@ -53,4 +53,4 @@ Gulp.task('build:templateicons', () => {
extname: ".tmp" extname: ".tmp"
})) }))
.pipe(Gulp.dest('./')); .pipe(Gulp.dest('./'));
}); });

View file

@ -1,33 +1,35 @@
import fs from 'fs'; import fs from 'fs';
import gulp from 'gulp'; import gulp from 'gulp';
import gutil from 'gulp-util';
import Mustache from 'mustache'; import Mustache from 'mustache';
import YAML from 'yamljs'; import YAML from 'yamljs';
import Paths from '../paths';
const themeCommons = require('../../src/themes/settings/commons.json'); const themeCommons = require('../../src/themes/settings/commons.json');
const themeVariants = []; const themeVariants = [];
const themeTemplateFile = fs.readFileSync( const themeTemplateFile = fs.readFileSync(
'./src/themes/theme-template.yml', `${Paths.themes}/theme-template.yml`,
'utf-8' 'utf-8'
); );
const files = fs.readdirSync('./src/themes/settings/specific'); const files = fs.readdirSync(`${Paths.themes}/settings/specific`);
// build theme variants for later use in templating // build theme variants for later use in templating
files.forEach(file => { files.forEach(file => {
const name = file.split('.')[0]; const name = file.split('.')[0];
const filepath = './src/themes/settings/specific/' + file; const filepath = `${Paths.themes}/settings/specific/${file}`;
const contents = fs.readFileSync(filepath, 'utf-8'); const contents = fs.readFileSync(filepath, 'utf-8');
try { try {
themeVariants.push(JSON.parse(contents)); themeVariants.push(JSON.parse(contents));
} catch (err) { } catch (err) {
console.log('Error when parsing json for theme variants', err); gutil.log('Error when parsing json for theme variants', err);
} }
}); });
gulp.task('build:themes', cb => { gulp.task('build:themes', cb => {
themeVariants.forEach(variant => { themeVariants.forEach(variant => {
console.log('Building ', variant.name);
const templateData = { const templateData = {
commons: themeCommons, commons: themeCommons,
variant, variant,
@ -37,10 +39,14 @@ gulp.task('build:themes', cb => {
Mustache.render(themeTemplateFile, templateData) Mustache.render(themeTemplateFile, templateData)
); );
const path = `${Paths.themes}/${variant.name}.json`;
fs.writeFileSync( fs.writeFileSync(
`./src/themes/${variant.name}.json`, path,
JSON.stringify(templateJson, null, 2), JSON.stringify(templateJson, null, 2),
'utf-8' 'utf-8'
); );
gutil.log('Generated', gutil.colors.green(path));
}); });
}); });

2024
.material-theme-icons.tmp Normal file

File diff suppressed because it is too large Load diff

View file

@ -28,6 +28,7 @@
"remove-icons": "rimraf icons && rimraf material-theme-icons.json", "remove-icons": "rimraf icons && rimraf material-theme-icons.json",
"remove-icons-tmp": "rimraf .material-theme-icons.tmp", "remove-icons-tmp": "rimraf .material-theme-icons.tmp",
"buildicons": "gulp build:icons", "buildicons": "gulp build:icons",
"build-themes": "gulp build:themes",
"release": "npm run bump && npm run changelog", "release": "npm run bump && npm run changelog",
"changelog": "gulp changelog", "changelog": "gulp changelog",
"bump": "gulp bump" "bump": "gulp bump"
@ -75,6 +76,7 @@
"gulp-rename": "^1.2.2", "gulp-rename": "^1.2.2",
"gulp-stats": "^0.0.4", "gulp-stats": "^0.0.4",
"gulp-template": "^4.0.0", "gulp-template": "^4.0.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.8", "gulp-watch": "^4.3.8",
"json-minify": "^1.0.0", "json-minify": "^1.0.0",
"mustache": "^2.3.0", "mustache": "^2.3.0",

View file

@ -4,7 +4,7 @@
{ {
"settings": { "settings": {
"background": "#252526", "background": "#252526",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -25,7 +25,7 @@
"string constant.other.placeholder" "string constant.other.placeholder"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#eeffffff"
} }
}, },
{ {
@ -34,7 +34,7 @@
"constant.other.color" "constant.other.color"
], ],
"settings": { "settings": {
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -46,7 +46,7 @@
], ],
"settings": { "settings": {
"background": "#FF5370", "background": "#FF5370",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -56,7 +56,7 @@
], ],
"settings": { "settings": {
"background": "#C3E88D", "background": "#C3E88D",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -66,7 +66,7 @@
], ],
"settings": { "settings": {
"background": "#C792EA", "background": "#C792EA",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -118,7 +118,7 @@
"markup.deleted.git_gutter" "markup.deleted.git_gutter"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -142,7 +142,7 @@
"string.other.link" "string.other.link"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -447,7 +447,7 @@
"punctuation.definition.list_item.markdown" "punctuation.definition.list_item.markdown"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#eeffffff"
} }
}, },
{ {
@ -495,7 +495,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -506,7 +506,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -521,7 +521,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -567,7 +567,7 @@
], ],
"colors": { "colors": {
"editorBackground": "#252526", "editorBackground": "#252526",
"editorForeground": "#FFFFFF", "editorForeground": "#ffffff",
"statusBarBackground": "#252526" "statusBarBackground": "#252526"
} }
} }

View file

@ -4,7 +4,7 @@
{ {
"settings": { "settings": {
"background": "#252526", "background": "#252526",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -25,7 +25,7 @@
"string constant.other.placeholder" "string constant.other.placeholder"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#eeffff"
} }
}, },
{ {
@ -34,7 +34,7 @@
"constant.other.color" "constant.other.color"
], ],
"settings": { "settings": {
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -46,7 +46,7 @@
], ],
"settings": { "settings": {
"background": "#FF5370", "background": "#FF5370",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -56,7 +56,7 @@
], ],
"settings": { "settings": {
"background": "#C3E88D", "background": "#C3E88D",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -66,7 +66,7 @@
], ],
"settings": { "settings": {
"background": "#C792EA", "background": "#C792EA",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -118,7 +118,7 @@
"markup.deleted.git_gutter" "markup.deleted.git_gutter"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -142,7 +142,7 @@
"string.other.link" "string.other.link"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -447,7 +447,7 @@
"punctuation.definition.list_item.markdown" "punctuation.definition.list_item.markdown"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#eeffff"
} }
}, },
{ {
@ -495,7 +495,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -506,7 +506,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -521,7 +521,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -567,7 +567,7 @@
], ],
"colors": { "colors": {
"editorBackground": "#252526", "editorBackground": "#252526",
"editorForeground": "#FFFFFF", "editorForeground": "#ffffff",
"statusBarBackground": "#252526" "statusBarBackground": "#252526"
} }
} }

View file

@ -4,7 +4,7 @@
{ {
"settings": { "settings": {
"background": "#252526", "background": "#252526",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -25,7 +25,7 @@
"string constant.other.placeholder" "string constant.other.placeholder"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#80CBC4"
} }
}, },
{ {
@ -34,7 +34,7 @@
"constant.other.color" "constant.other.color"
], ],
"settings": { "settings": {
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -45,8 +45,8 @@
"invalid.broken" "invalid.broken"
], ],
"settings": { "settings": {
"background": "#FF5370", "background": "#E53935",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -55,8 +55,8 @@
"invalid.unimplemented" "invalid.unimplemented"
], ],
"settings": { "settings": {
"background": "#C3E88D", "background": "#91B859",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -65,8 +65,8 @@
"invalid.deprecated" "invalid.deprecated"
], ],
"settings": { "settings": {
"background": "#C792EA", "background": "#7C4DFF",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -77,7 +77,7 @@
"storage.modifier" "storage.modifier"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -107,7 +107,7 @@
"keyword.other.substitution" "keyword.other.substitution"
], ],
"settings": { "settings": {
"foreground": "#89DDFF" "foreground": "#39ADB5"
} }
}, },
{ {
@ -118,7 +118,7 @@
"markup.deleted.git_gutter" "markup.deleted.git_gutter"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -132,7 +132,7 @@
"meta.block-level" "meta.block-level"
], ],
"settings": { "settings": {
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -142,7 +142,7 @@
"string.other.link" "string.other.link"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -156,7 +156,7 @@
"keyword.other.unit" "keyword.other.unit"
], ],
"settings": { "settings": {
"foreground": "#F78C6C" "foreground": "#F76D47"
} }
}, },
{ {
@ -172,7 +172,7 @@
], ],
"settings": { "settings": {
"fontStyle": "normal", "fontStyle": "normal",
"foreground": "#C3E88D" "foreground": "#91B859"
} }
}, },
{ {
@ -189,7 +189,7 @@
"support.type.sys-types" "support.type.sys-types"
], ],
"settings": { "settings": {
"foreground": "#FFCB6B" "foreground": "#FFB62C"
} }
}, },
{ {
@ -202,7 +202,7 @@
"source.stylus support.type" "source.stylus support.type"
], ],
"settings": { "settings": {
"foreground": "#B2CCD6" "foreground": "#8796B0"
} }
}, },
{ {
@ -213,7 +213,7 @@
"variable.other.class.js" "variable.other.class.js"
], ],
"settings": { "settings": {
"foreground": "#FF5370" "foreground": "#E53935"
} }
}, },
{ {
@ -223,7 +223,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#FF5370" "foreground": "#E53935"
} }
}, },
{ {
@ -233,7 +233,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -243,7 +243,7 @@
"variable.function.constructor" "variable.function.constructor"
], ],
"settings": { "settings": {
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -252,7 +252,7 @@
"entity.other.attribute-name" "entity.other.attribute-name"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -263,7 +263,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#FFCB6B" "foreground": "#FFB62C"
} }
}, },
{ {
@ -272,7 +272,7 @@
"entity.other.attribute-name.class" "entity.other.attribute-name.class"
], ],
"settings": { "settings": {
"foreground": "#FFCB6B" "foreground": "#FFB62C"
} }
}, },
{ {
@ -281,7 +281,7 @@
"source.sass keyword.control" "source.sass keyword.control"
], ],
"settings": { "settings": {
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -290,7 +290,7 @@
"markup.inserted" "markup.inserted"
], ],
"settings": { "settings": {
"foreground": "#C3E88D" "foreground": "#91B859"
} }
}, },
{ {
@ -299,7 +299,7 @@
"markup.deleted" "markup.deleted"
], ],
"settings": { "settings": {
"foreground": "#FF5370" "foreground": "#E53935"
} }
}, },
{ {
@ -308,7 +308,7 @@
"markup.changed" "markup.changed"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -317,7 +317,7 @@
"string.regexp" "string.regexp"
], ],
"settings": { "settings": {
"foreground": "#89DDFF" "foreground": "#39ADB5"
} }
}, },
{ {
@ -326,7 +326,7 @@
"constant.character.escape" "constant.character.escape"
], ],
"settings": { "settings": {
"foreground": "#89DDFF" "foreground": "#39ADB5"
} }
}, },
{ {
@ -346,7 +346,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -356,7 +356,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#FF5370" "foreground": "#E53935"
} }
}, },
{ {
@ -365,7 +365,7 @@
"source.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -374,7 +374,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#FFCB6B" "foreground": "#FFB62C"
} }
}, },
{ {
@ -383,7 +383,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#FFCB6B" "foreground": "#FFB62C"
} }
}, },
{ {
@ -392,7 +392,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#FF5370" "foreground": "#E53935"
} }
}, },
{ {
@ -410,7 +410,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#82AAFF" "foreground": "#6182B8"
} }
}, },
{ {
@ -419,7 +419,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#f07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -428,7 +428,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -437,7 +437,7 @@
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
], ],
"settings": { "settings": {
"foreground": "#C3E88D" "foreground": "#91B859"
} }
}, },
{ {
@ -447,7 +447,7 @@
"punctuation.definition.list_item.markdown" "punctuation.definition.list_item.markdown"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#80CBC4"
} }
}, },
{ {
@ -456,7 +456,7 @@
"text.html.markdown markup.inline.raw.markdown" "text.html.markdown markup.inline.raw.markdown"
], ],
"settings": { "settings": {
"foreground": "#C792EA" "foreground": "#7C4DFF"
} }
}, },
{ {
@ -465,7 +465,7 @@
"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown"
], ],
"settings": { "settings": {
"foreground": "#65737e" "foreground": "#E7EAEC"
} }
}, },
{ {
@ -485,7 +485,7 @@
"markup.heading.markdown punctuation.definition.heading.markdown" "markup.heading.markdown punctuation.definition.heading.markdown"
], ],
"settings": { "settings": {
"foreground": "#C3E88D" "foreground": "#91B859"
} }
}, },
{ {
@ -495,7 +495,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#F07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -506,7 +506,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -521,7 +521,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#FF5370"
} }
}, },
{ {
@ -531,7 +531,7 @@
], ],
"settings": { "settings": {
"fontStyle": "underline", "fontStyle": "underline",
"foreground": "#F78C6C" "foreground": "#F76D47"
} }
}, },
{ {
@ -550,8 +550,8 @@
"markup.quote punctuation.definition.blockquote.markdown" "markup.quote punctuation.definition.blockquote.markdown"
], ],
"settings": { "settings": {
"background": "#65737e", "background": "#E7EAEC",
"foreground": "#65737e" "foreground": "#E7EAEC"
} }
}, },
{ {
@ -567,7 +567,7 @@
], ],
"colors": { "colors": {
"editorBackground": "#252526", "editorBackground": "#252526",
"editorForeground": "#FFFFFF", "editorForeground": "#ffffff",
"statusBarBackground": "#252526" "statusBarBackground": "#252526"
} }
} }

View file

@ -4,7 +4,7 @@
{ {
"settings": { "settings": {
"background": "#252526", "background": "#252526",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -25,7 +25,7 @@
"string constant.other.placeholder" "string constant.other.placeholder"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#959DCB"
} }
}, },
{ {
@ -34,7 +34,7 @@
"constant.other.color" "constant.other.color"
], ],
"settings": { "settings": {
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -46,7 +46,7 @@
], ],
"settings": { "settings": {
"background": "#FF5370", "background": "#FF5370",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -56,7 +56,7 @@
], ],
"settings": { "settings": {
"background": "#C3E88D", "background": "#C3E88D",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -66,7 +66,7 @@
], ],
"settings": { "settings": {
"background": "#C792EA", "background": "#C792EA",
"foreground": "#FFFFFF" "foreground": "#ffffff"
} }
}, },
{ {
@ -118,7 +118,7 @@
"markup.deleted.git_gutter" "markup.deleted.git_gutter"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -142,7 +142,7 @@
"string.other.link" "string.other.link"
], ],
"settings": { "settings": {
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -447,7 +447,7 @@
"punctuation.definition.list_item.markdown" "punctuation.definition.list_item.markdown"
], ],
"settings": { "settings": {
"foreground": "#EEFFFFFF" "foreground": "#959DCB"
} }
}, },
{ {
@ -465,7 +465,7 @@
"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown"
], ],
"settings": { "settings": {
"foreground": "#65737e" "foreground": "#4E5579"
} }
}, },
{ {
@ -495,7 +495,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -506,7 +506,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -521,7 +521,7 @@
], ],
"settings": { "settings": {
"fontStyle": "bold", "fontStyle": "bold",
"foreground": "#F07178" "foreground": "#f07178"
} }
}, },
{ {
@ -550,8 +550,8 @@
"markup.quote punctuation.definition.blockquote.markdown" "markup.quote punctuation.definition.blockquote.markdown"
], ],
"settings": { "settings": {
"background": "#65737e", "background": "#4E5579",
"foreground": "#65737e" "foreground": "#4E5579"
} }
}, },
{ {
@ -567,7 +567,7 @@
], ],
"colors": { "colors": {
"editorBackground": "#252526", "editorBackground": "#252526",
"editorForeground": "#FFFFFF", "editorForeground": "#ffffff",
"statusBarBackground": "#252526" "statusBarBackground": "#252526"
} }
} }

View file

@ -15,7 +15,7 @@
], ],
"settings": { "settings": {
"fontStyle": "italic", "fontStyle": "italic",
"foreground": "#4A4A4A" "foreground": "#546E7A"
} }
}, },
{ {

View file

@ -35,4 +35,4 @@
"violet": "#bb80b3" "violet": "#bb80b3"
} }
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"id": "material.theme.default", "id": "material.theme.default",
"name": "Material-Theme", "name": "Material-Theme-Default",
"scheme": { "scheme": {
"background": "#263238", "background": "#263238",
"comments": "#546E7A", "comments": "#546E7A",

View file

@ -2,7 +2,7 @@ name: Material Theme Darker
tokenColors: tokenColors:
- settings: - settings:
background: '#252526' background: '#252526'
foreground: '#FFFFFF' foreground: '{{variant.scheme.base.white}}'
- name: Comment - name: Comment
scope: scope:
- comment - comment
@ -15,39 +15,39 @@ tokenColors:
- variable - variable
- string constant.other.placeholder - string constant.other.placeholder
settings: settings:
foreground: '#EEFFFFFF' foreground: '{{variant.scheme.foreground}}'
- name: Colors - name: Colors
scope: scope:
- constant.other.color - constant.other.color
settings: settings:
foreground: '#FFFFFF' foreground: '{{variant.scheme.base.white}}'
- name: Invalid - name: Invalid
scope: scope:
- invalid - invalid
- invalid.illegal - invalid.illegal
- invalid.broken - invalid.broken
settings: settings:
background: '#FF5370' background: '{{variant.scheme.base.red}}'
foreground: '#FFFFFF' foreground: '{{variant.scheme.base.white}}'
- name: Invalid unimplemented - name: Invalid unimplemented
scope: scope:
- invalid.unimplemented - invalid.unimplemented
settings: settings:
background: '#C3E88D' background: '{{variant.scheme.base.green}}'
foreground: '#FFFFFF' foreground: '{{variant.scheme.base.white}}'
- name: Invalid deprecated - name: Invalid deprecated
scope: scope:
- invalid.deprecated - invalid.deprecated
settings: settings:
background: '#C792EA' background: '{{variant.scheme.base.purple}}'
foreground: '#FFFFFF' foreground: '{{variant.scheme.base.white}}'
- name: 'Keyword, Storage' - name: 'Keyword, Storage'
scope: scope:
- keyword - keyword
- storage.type - storage.type
- storage.modifier - storage.modifier
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: 'Keyword, Storage' - name: 'Keyword, Storage'
scope: scope:
- Keyword - Keyword
@ -69,14 +69,14 @@ tokenColors:
- keyword.other.template - keyword.other.template
- keyword.other.substitution - keyword.other.substitution
settings: settings:
foreground: '#89DDFF' foreground: '{{variant.scheme.base.cyan}}'
- name: Tag - name: Tag
scope: scope:
- entity.name.tag - entity.name.tag
- meta.tag.sgml - meta.tag.sgml
- markup.deleted.git_gutter - markup.deleted.git_gutter
settings: settings:
foreground: '#F07178' foreground: '{{variant.scheme.base.pink}}'
- name: 'Function, Special Method, Block Level' - name: 'Function, Special Method, Block Level'
scope: scope:
- entity.name.function - entity.name.function
@ -86,13 +86,13 @@ tokenColors:
- keyword.other.special-method - keyword.other.special-method
- meta.block-level - meta.block-level
settings: settings:
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: 'Other Variable, String Link' - name: 'Other Variable, String Link'
scope: scope:
- support.other.variable - support.other.variable
- string.other.link - string.other.link
settings: settings:
foreground: '#F07178' foreground: '{{variant.scheme.base.pink}}'
- name: 'Number, Constant, Function Argument, Tag Attribute, Embedded' - name: 'Number, Constant, Function Argument, Tag Attribute, Embedded'
scope: scope:
- constant.numeric - constant.numeric
@ -102,7 +102,7 @@ tokenColors:
- variable.parameter - variable.parameter
- keyword.other.unit - keyword.other.unit
settings: settings:
foreground: '#F78C6C' foreground: '{{variant.scheme.base.orange}}'
- name: 'String, Symbols, Inherited Class, Markup Heading' - name: 'String, Symbols, Inherited Class, Markup Heading'
scope: scope:
- string - string
@ -114,7 +114,7 @@ tokenColors:
- meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js - meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js
settings: settings:
fontStyle: normal fontStyle: normal
foreground: '#C3E88D' foreground: '{{variant.scheme.base.green}}'
- name: 'Class, Support' - name: 'Class, Support'
scope: scope:
- entity.name.class - entity.name.class
@ -127,7 +127,7 @@ tokenColors:
- markup.changed.git_gutter - markup.changed.git_gutter
- support.type.sys-types - support.type.sys-types
settings: settings:
foreground: '#FFCB6B' foreground: '{{variant.scheme.base.yellow}}'
- name: CSS Class and Support - name: CSS Class and Support
scope: scope:
- source.css support.type - source.css support.type
@ -136,79 +136,79 @@ tokenColors:
- source.less support.type - source.less support.type
- source.stylus support.type - source.stylus support.type
settings: settings:
foreground: '#B2CCD6' foreground: '{{variant.scheme.base.paleblue}}'
- name: Sub-methods - name: Sub-methods
scope: scope:
- entity.name.module.js - entity.name.module.js
- variable.import.parameter.js - variable.import.parameter.js
- variable.other.class.js - variable.other.class.js
settings: settings:
foreground: '#FF5370' foreground: '{{variant.scheme.base.red}}'
- name: Language methods - name: Language methods
scope: scope:
- variable.language - variable.language
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#FF5370' foreground: '{{variant.scheme.base.red}}'
- name: entity.name.method.js - name: entity.name.method.js
scope: scope:
- entity.name.method.js - entity.name.method.js
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: meta.method.js - name: meta.method.js
scope: scope:
- meta.class-method.js entity.name.function.js - meta.class-method.js entity.name.function.js
- variable.function.constructor - variable.function.constructor
settings: settings:
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: Attributes - name: Attributes
scope: scope:
- entity.other.attribute-name - entity.other.attribute-name
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: HTML Attributes - name: HTML Attributes
scope: scope:
- text.html.basic entity.other.attribute-name.html - text.html.basic entity.other.attribute-name.html
- text.html.basic entity.other.attribute-name - text.html.basic entity.other.attribute-name
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#FFCB6B' foreground: '{{variant.scheme.base.yellow}}'
- name: CSS Classes - name: CSS Classes
scope: scope:
- entity.other.attribute-name.class - entity.other.attribute-name.class
settings: settings:
foreground: '#FFCB6B' foreground: '{{variant.scheme.base.yellow}}'
- name: "CSS ID's" - name: "CSS ID's"
scope: scope:
- source.sass keyword.control - source.sass keyword.control
settings: settings:
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: Inserted - name: Inserted
scope: scope:
- markup.inserted - markup.inserted
settings: settings:
foreground: '#C3E88D' foreground: '{{variant.scheme.base.green}}'
- name: Deleted - name: Deleted
scope: scope:
- markup.deleted - markup.deleted
settings: settings:
foreground: '#FF5370' foreground: '{{variant.scheme.base.red}}'
- name: Changed - name: Changed
scope: scope:
- markup.changed - markup.changed
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: Regular Expressions - name: Regular Expressions
scope: scope:
- string.regexp - string.regexp
settings: settings:
foreground: '#89DDFF' foreground: '{{variant.scheme.base.cyan}}'
- name: Escape Characters - name: Escape Characters
scope: scope:
- constant.character.escape - constant.character.escape
settings: settings:
foreground: '#89DDFF' foreground: '{{variant.scheme.base.cyan}}'
- name: URL - name: URL
scope: scope:
- '*url*, *link*, *uri*' - '*url*, *link*, *uri*'
@ -220,74 +220,74 @@ tokenColors:
- tag.decorator.js punctuation.definition.tag.js - tag.decorator.js punctuation.definition.tag.js
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: ES7 Bind Operator - name: ES7 Bind Operator
scope: scope:
- source.js constant.other.object.key.js string.unquoted.label.js - source.js constant.other.object.key.js string.unquoted.label.js
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#FF5370' foreground: '{{variant.scheme.base.red}}'
- name: JSON Key - Level 0 - name: JSON Key - Level 0
scope: scope:
- source.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: JSON Key - Level 1 - name: JSON Key - Level 1
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#FFCB6B' foreground: '{{variant.scheme.base.yellow}}'
- name: JSON Key - Level 2 - name: JSON Key - Level 2
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#FFCB6B' foreground: '{{variant.scheme.base.yellow}}'
- name: JSON Key - Level 3 - name: JSON Key - Level 3
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#FF5370' foreground: '{{variant.scheme.base.red}}'
- name: JSON Key - Level 4 - name: JSON Key - Level 4
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#C17E70' foreground: '{{variant.scheme.base.brown}}'
- name: JSON Key - Level 5 - name: JSON Key - Level 5
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#82AAFF' foreground: '{{variant.scheme.base.blue}}'
- name: JSON Key - Level 6 - name: JSON Key - Level 6
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#f07178' foreground: '{{variant.scheme.base.pink}}'
- name: JSON Key - Level 7 - name: JSON Key - Level 7
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: JSON Key - Level 8 - name: JSON Key - Level 8
scope: scope:
- source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json - source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json
settings: settings:
foreground: '#C3E88D' foreground: '{{variant.scheme.base.green}}'
- name: Markdown - Plain - name: Markdown - Plain
scope: scope:
- text.html.markdown - text.html.markdown
- punctuation.definition.list_item.markdown - punctuation.definition.list_item.markdown
settings: settings:
foreground: '#EEFFFFFF' foreground: '{{variant.scheme.foreground}}'
- name: Markdown - Markup Raw Inline - name: Markdown - Markup Raw Inline
scope: scope:
- text.html.markdown markup.inline.raw.markdown - text.html.markdown markup.inline.raw.markdown
settings: settings:
foreground: '#C792EA' foreground: '{{variant.scheme.base.purple}}'
- name: Markdown - Markup Raw Inline Punctuation - name: Markdown - Markup Raw Inline Punctuation
scope: scope:
- text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown - text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown
settings: settings:
foreground: '#65737e' foreground: '{{variant.scheme.invisibles}}'
- name: Markdown - Line Break - name: Markdown - Line Break
scope: scope:
- text.html.markdown meta.dummy.line-break - text.html.markdown meta.dummy.line-break
@ -299,20 +299,20 @@ tokenColors:
- 'markup.heading | markup.heading entity.name' - 'markup.heading | markup.heading entity.name'
- markup.heading.markdown punctuation.definition.heading.markdown - markup.heading.markdown punctuation.definition.heading.markdown
settings: settings:
foreground: '#C3E88D' foreground: '{{variant.scheme.base.green}}'
- name: Markup - Italic - name: Markup - Italic
scope: scope:
- markup.italic - markup.italic
settings: settings:
fontStyle: italic fontStyle: italic
foreground: '#F07178' foreground: '{{variant.scheme.base.pink}}'
- name: Markup - Bold - name: Markup - Bold
scope: scope:
- markup.bold - markup.bold
- markup.bold string - markup.bold string
settings: settings:
fontStyle: bold fontStyle: bold
foreground: '#F07178' foreground: '{{variant.scheme.base.pink}}'
- name: Markup - Bold-Italic - name: Markup - Bold-Italic
scope: scope:
- 'markup.bold markup.italic,' - 'markup.bold markup.italic,'
@ -323,13 +323,13 @@ tokenColors:
- markup.quote markup.bold string - markup.quote markup.bold string
settings: settings:
fontStyle: bold fontStyle: bold
foreground: '#F07178' foreground: '{{variant.scheme.base.pink}}'
- name: Markup - Underline - name: Markup - Underline
scope: scope:
- markup.underline - markup.underline
settings: settings:
fontStyle: underline fontStyle: underline
foreground: '#F78C6C' foreground: '{{variant.scheme.base.orange}}'
- name: Markup - Strike - name: Markup - Strike
scope: scope:
- markup.strike - markup.strike
@ -340,8 +340,8 @@ tokenColors:
scope: scope:
- markup.quote punctuation.definition.blockquote.markdown - markup.quote punctuation.definition.blockquote.markdown
settings: settings:
background: '#65737e' background: '{{variant.scheme.invisibles}}'
foreground: '#65737e' foreground: '{{variant.scheme.invisibles}}'
- name: Markup - Quote - name: Markup - Quote
scope: scope:
- markup.quote - markup.quote
@ -350,5 +350,5 @@ tokenColors:
foreground: '' foreground: ''
colors: colors:
editorBackground: '#252526' editorBackground: '#252526'
editorForeground: '#FFFFFF' editorForeground: '{{variant.scheme.base.white}}'
statusBarBackground: '#252526' statusBarBackground: '#252526'

View file

@ -1854,7 +1854,7 @@ gulp-template@^4.0.0:
lodash "^4.8.2" lodash "^4.8.2"
through2 "^2.0.0" through2 "^2.0.0"
gulp-util@*, gulp-util@^3.0.0, gulp-util@^3.0.6, gulp-util@^3.0.7: gulp-util@*, gulp-util@^3.0.0, gulp-util@^3.0.6, gulp-util@^3.0.7, gulp-util@^3.0.8:
version "3.0.8" version "3.0.8"
resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f"
dependencies: dependencies: