diff --git a/.gulp/index.js b/.gulp/index.js index 7bf51d3..0b7550e 100644 --- a/.gulp/index.js +++ b/.gulp/index.js @@ -1,5 +1,4 @@ // import the tasks -import './tasks/icons'; import './tasks/changelog'; import './tasks/bump'; diff --git a/.gulp/tasks/icons.js b/.gulp/tasks/icons.js deleted file mode 100644 index 38a4b4a..0000000 --- a/.gulp/tasks/icons.js +++ /dev/null @@ -1,76 +0,0 @@ -'use strict'; - -/* - * > Build Icons - */ - -import Gulp from 'gulp'; -import Colorize from 'gulp-colorize-svgs'; -import runSequence from 'run-sequence'; -import Template from 'gulp-template'; -import Rename from 'gulp-rename'; -import FileList from 'gulp-filelist'; -import Data from 'gulp-data'; -import Paths from '../paths'; -import Del from 'del'; - -import iconsColors from '../../src/settings/colors.js'; -import iconList from '../../src/iconlist.json'; - - -Gulp.task('icons', (cb) => { - runSequence( - 'clean:icons', - 'process:icons', - 'iconslist', - 'template:icons', - (error) => { - if (error) { - console.log('\n[Build Icons]'.bold.magenta + ' There was an issue building icons:\n'.bold.red + error.message); - } else { - console.log('\n[Build Icons]'.bold.magenta + ' Finished successfully\n'.bold.green); - } - cb(error); - } - ); -}); - - -Gulp.task('clean:icons', () => { - Del([`${Paths.icons}/svg/*.svg`]); -}); - -Gulp.task('process:icons', () => { - Gulp.src(`${Paths.src}/icons/*.svg`) - .pipe(Colorize({ - colors: iconsColors, - replaceColor: function (content, hex) { - return content.replace('#000', '#' + hex); - }, - replacePath: function (path, colorKey) { - return path.replace(/\.svg/, '.svg'); - } - })) - .pipe(Gulp.dest(`${Paths.icons}/svg`)); -}); - -Gulp.task('iconslist', () => { - Gulp.src(`${Paths.src}/icons/*.svg`) - .pipe(FileList('iconlist.json', { - flatten: true, - removeExtensions: true - })) - .pipe(Gulp.dest(Paths.src)); -}); - - -Gulp.task('template:icons', () => { - Gulp.src(`${Paths.src}/theme-icon.template`) - .pipe(Data(() => ({ icons: iconList }))) - .pipe(Template()) - .pipe(Rename({ - basename: "material-theme-icon-theme", - extname: ".json" - })) - .pipe(Gulp.dest(Paths.icons)); -}); \ No newline at end of file diff --git a/icons/material-theme-icon-theme.json b/icons/material-theme-icon-theme.json deleted file mode 100644 index d97ec90..0000000 --- a/icons/material-theme-icon-theme.json +++ /dev/null @@ -1,334 +0,0 @@ -{ - "iconDefinitions": { - "_actionscript": { - "iconPath": "svg/actionscript.svg" - }, - "_ai": { - "iconPath": "svg/ai.svg" - }, - "_angular": { - "iconPath": "svg/angular.svg" - }, - "_applescript": { - "iconPath": "svg/applescript.svg" - }, - "_archive": { - "iconPath": "svg/archive.svg" - }, - "_babel": { - "iconPath": "svg/babel.svg" - }, - "_binary": { - "iconPath": "svg/binary.svg" - }, - "_blade": { - "iconPath": "svg/blade.svg" - }, - "_bower": { - "iconPath": "svg/bower.svg" - }, - "_c": { - "iconPath": "svg/c.svg" - }, - "_cf": { - "iconPath": "svg/cf.svg" - }, - "_circleci": { - "iconPath": "svg/circleci.svg" - }, - "_clojure": { - "iconPath": "svg/clojure.svg" - }, - "_coffeescript": { - "iconPath": "svg/coffeescript.svg" - }, - "_composer": { - "iconPath": "svg/composer.svg" - }, - "_cpp": { - "iconPath": "svg/cpp.svg" - }, - "_csharp": { - "iconPath": "svg/csharp.svg" - }, - "_css": { - "iconPath": "svg/css.svg" - }, - "_csv": { - "iconPath": "svg/csv.svg" - }, - "_default": { - "iconPath": "svg/default.svg" - }, - "_dlang": { - "iconPath": "svg/dlang.svg" - }, - "_docker": { - "iconPath": "svg/docker.svg" - }, - "_dotnet": { - "iconPath": "svg/dotnet.svg" - }, - "_editorconfig": { - "iconPath": "svg/editorconfig.svg" - }, - "_elm": { - "iconPath": "svg/elm.svg" - }, - "_erlang": { - "iconPath": "svg/erlang.svg" - }, - "_eslint": { - "iconPath": "svg/eslint.svg" - }, - "_ex": { - "iconPath": "svg/ex.svg" - }, - "_font": { - "iconPath": "svg/font.svg" - }, - "_git": { - "iconPath": "svg/git.svg" - }, - "_go": { - "iconPath": "svg/go.svg" - }, - "_gradle": { - "iconPath": "svg/gradle.svg" - }, - "_graphviz": { - "iconPath": "svg/graphviz.svg" - }, - "_groovy": { - "iconPath": "svg/groovy.svg" - }, - "_gruntfile": { - "iconPath": "svg/gruntfile.svg" - }, - "_gulpfile": { - "iconPath": "svg/gulpfile.svg" - }, - "_haml": { - "iconPath": "svg/haml.svg" - }, - "_haskell": { - "iconPath": "svg/haskell.svg" - }, - "_haxe": { - "iconPath": "svg/haxe.svg" - }, - "_html": { - "iconPath": "svg/html.svg" - }, - "_image": { - "iconPath": "svg/image.svg" - }, - "_java": { - "iconPath": "svg/java.svg" - }, - "_js": { - "iconPath": "svg/js.svg" - }, - "_json": { - "iconPath": "svg/json.svg" - }, - "_jsp": { - "iconPath": "svg/jsp.svg" - }, - "_jsx": { - "iconPath": "svg/jsx.svg" - }, - "_julia": { - "iconPath": "svg/julia.svg" - }, - "_less": { - "iconPath": "svg/less.svg" - }, - "_license": { - "iconPath": "svg/license.svg" - }, - "_liquid": { - "iconPath": "svg/liquid.svg" - }, - "_lisp": { - "iconPath": "svg/lisp.svg" - }, - "_lock": { - "iconPath": "svg/lock.svg" - }, - "_log": { - "iconPath": "svg/log.svg" - }, - "_lsl": { - "iconPath": "svg/lsl.svg" - }, - "_lua": { - "iconPath": "svg/lua.svg" - }, - "_markdown": { - "iconPath": "svg/markdown.svg" - }, - "_markup": { - "iconPath": "svg/markup.svg" - }, - "_matlab": { - "iconPath": "svg/matlab.svg" - }, - "_mustache": { - "iconPath": "svg/mustache.svg" - }, - "_nginx": { - "iconPath": "svg/nginx.svg" - }, - "_nodejs": { - "iconPath": "svg/nodejs.svg" - }, - "_note": { - "iconPath": "svg/note.svg" - }, - "_npm": { - "iconPath": "svg/npm.svg" - }, - "_nsis": { - "iconPath": "svg/nsis.svg" - }, - "_ocaml": { - "iconPath": "svg/ocaml.svg" - }, - "_pdf": { - "iconPath": "svg/pdf.svg" - }, - "_perl": { - "iconPath": "svg/perl.svg" - }, - "_php": { - "iconPath": "svg/php.svg" - }, - "_plist": { - "iconPath": "svg/plist.svg" - }, - "_postcss": { - "iconPath": "svg/postcss.svg" - }, - "_preferences": { - "iconPath": "svg/preferences.svg" - }, - "_procfile": { - "iconPath": "svg/procfile.svg" - }, - "_psd": { - "iconPath": "svg/psd.svg" - }, - "_pug": { - "iconPath": "svg/pug.svg" - }, - "_puppet": { - "iconPath": "svg/puppet.svg" - }, - "_python": { - "iconPath": "svg/python.svg" - }, - "_r": { - "iconPath": "svg/r.svg" - }, - "_rails": { - "iconPath": "svg/rails.svg" - }, - "_riot": { - "iconPath": "svg/riot.svg" - }, - "_ruby": { - "iconPath": "svg/ruby.svg" - }, - "_rust": { - "iconPath": "svg/rust.svg" - }, - "_sass": { - "iconPath": "svg/sass.svg" - }, - "_scala": { - "iconPath": "svg/scala.svg" - }, - "_scss": { - "iconPath": "svg/scss.svg" - }, - "_settings": { - "iconPath": "svg/settings.svg" - }, - "_shell": { - "iconPath": "svg/shell.svg" - }, - "_sketch": { - "iconPath": "svg/sketch.svg" - }, - "_slim": { - "iconPath": "svg/slim.svg" - }, - "_source": { - "iconPath": "svg/source.svg" - }, - "_sql": { - "iconPath": "svg/sql.svg" - }, - "_stata": { - "iconPath": "svg/stata.svg" - }, - "_stylelint": { - "iconPath": "svg/stylelint.svg" - }, - "_stylus": { - "iconPath": "svg/stylus.svg" - }, - "_sublime": { - "iconPath": "svg/sublime.svg" - }, - "_svg": { - "iconPath": "svg/svg.svg" - }, - "_swift": { - "iconPath": "svg/swift.svg" - }, - "_tcl": { - "iconPath": "svg/tcl.svg" - }, - "_tex": { - "iconPath": "svg/tex.svg" - }, - "_text": { - "iconPath": "svg/text.svg" - }, - "_textile": { - "iconPath": "svg/textile.svg" - }, - "_todo": { - "iconPath": "svg/todo.svg" - }, - "_twig": { - "iconPath": "svg/twig.svg" - }, - "_typescript": { - "iconPath": "svg/typescript.svg" - }, - "_vue": { - "iconPath": "svg/vue.svg" - }, - "_webpack": { - "iconPath": "svg/webpack.svg" - }, - "_windows": { - "iconPath": "svg/windows.svg" - }, - "_yaml": { - "iconPath": "svg/yaml.svg" - }, - "_yarn": { - "iconPath": "svg/yarn.svg" - } - }, - "fileExtensions": { - "md": "_markdown", - "scss": "_scss", - "sass": "_sass", - "json": "_json" - } -} \ No newline at end of file diff --git a/icons/svg/actionscript.svg b/icons/svg/actionscript.svg deleted file mode 100755 index 7c38860..0000000 --- a/icons/svg/actionscript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/ai.svg b/icons/svg/ai.svg deleted file mode 100644 index 83087a3..0000000 --- a/icons/svg/ai.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/angular.svg b/icons/svg/angular.svg deleted file mode 100644 index ac4b43e..0000000 --- a/icons/svg/angular.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/applescript.svg b/icons/svg/applescript.svg deleted file mode 100644 index 3014ddf..0000000 --- a/icons/svg/applescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/archive.svg b/icons/svg/archive.svg deleted file mode 100755 index 3f5dc31..0000000 --- a/icons/svg/archive.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/babel.svg b/icons/svg/babel.svg deleted file mode 100755 index f499981..0000000 --- a/icons/svg/babel.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/binary.svg b/icons/svg/binary.svg deleted file mode 100755 index 8f7d738..0000000 --- a/icons/svg/binary.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/blade.svg b/icons/svg/blade.svg deleted file mode 100755 index 6204858..0000000 --- a/icons/svg/blade.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/bower.svg b/icons/svg/bower.svg deleted file mode 100644 index 9c19785..0000000 --- a/icons/svg/bower.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/c.svg b/icons/svg/c.svg deleted file mode 100755 index c078a10..0000000 --- a/icons/svg/c.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/cf.svg b/icons/svg/cf.svg deleted file mode 100755 index 7c8321d..0000000 --- a/icons/svg/cf.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/circleci.svg b/icons/svg/circleci.svg deleted file mode 100755 index 36b0df6..0000000 --- a/icons/svg/circleci.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/clojure.svg b/icons/svg/clojure.svg deleted file mode 100755 index e806789..0000000 --- a/icons/svg/clojure.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/coffeescript.svg b/icons/svg/coffeescript.svg deleted file mode 100644 index eb4fab9..0000000 --- a/icons/svg/coffeescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/composer.svg b/icons/svg/composer.svg deleted file mode 100755 index 323059e..0000000 --- a/icons/svg/composer.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/cpp.svg b/icons/svg/cpp.svg deleted file mode 100755 index da3d047..0000000 --- a/icons/svg/cpp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/csharp.svg b/icons/svg/csharp.svg deleted file mode 100644 index 238c9e5..0000000 --- a/icons/svg/csharp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/css.svg b/icons/svg/css.svg deleted file mode 100644 index 39d271f..0000000 --- a/icons/svg/css.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/csv.svg b/icons/svg/csv.svg deleted file mode 100755 index 68505f3..0000000 --- a/icons/svg/csv.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/default.svg b/icons/svg/default.svg deleted file mode 100755 index aab33d6..0000000 --- a/icons/svg/default.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/dlang.svg b/icons/svg/dlang.svg deleted file mode 100644 index affef2c..0000000 --- a/icons/svg/dlang.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/docker.svg b/icons/svg/docker.svg deleted file mode 100644 index 517e577..0000000 --- a/icons/svg/docker.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/dotnet.svg b/icons/svg/dotnet.svg deleted file mode 100755 index e19dd1a..0000000 --- a/icons/svg/dotnet.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/editorconfig.svg b/icons/svg/editorconfig.svg deleted file mode 100755 index a1b6422..0000000 --- a/icons/svg/editorconfig.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/elm.svg b/icons/svg/elm.svg deleted file mode 100755 index 56179c3..0000000 --- a/icons/svg/elm.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/erlang.svg b/icons/svg/erlang.svg deleted file mode 100644 index 77ba0b9..0000000 --- a/icons/svg/erlang.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/eslint.svg b/icons/svg/eslint.svg deleted file mode 100755 index e2ced03..0000000 --- a/icons/svg/eslint.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/ex.svg b/icons/svg/ex.svg deleted file mode 100755 index bcf263b..0000000 --- a/icons/svg/ex.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/font.svg b/icons/svg/font.svg deleted file mode 100755 index 7b3658a..0000000 --- a/icons/svg/font.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/git.svg b/icons/svg/git.svg deleted file mode 100644 index e2497e5..0000000 --- a/icons/svg/git.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/go.svg b/icons/svg/go.svg deleted file mode 100644 index fd67f54..0000000 --- a/icons/svg/go.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/gradle.svg b/icons/svg/gradle.svg deleted file mode 100755 index 216ff33..0000000 --- a/icons/svg/gradle.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/graphviz.svg b/icons/svg/graphviz.svg deleted file mode 100644 index 94b5860..0000000 --- a/icons/svg/graphviz.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/groovy.svg b/icons/svg/groovy.svg deleted file mode 100755 index 792382e..0000000 --- a/icons/svg/groovy.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/gruntfile.svg b/icons/svg/gruntfile.svg deleted file mode 100644 index 7d85cd5..0000000 --- a/icons/svg/gruntfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/gulpfile.svg b/icons/svg/gulpfile.svg deleted file mode 100644 index a7c3149..0000000 --- a/icons/svg/gulpfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/haml.svg b/icons/svg/haml.svg deleted file mode 100755 index dea690a..0000000 --- a/icons/svg/haml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/haskell.svg b/icons/svg/haskell.svg deleted file mode 100755 index fb8ddc9..0000000 --- a/icons/svg/haskell.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/haxe.svg b/icons/svg/haxe.svg deleted file mode 100755 index c69421f..0000000 --- a/icons/svg/haxe.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/html.svg b/icons/svg/html.svg deleted file mode 100755 index de96308..0000000 --- a/icons/svg/html.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/image.svg b/icons/svg/image.svg deleted file mode 100755 index 8db0c64..0000000 --- a/icons/svg/image.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/java.svg b/icons/svg/java.svg deleted file mode 100755 index f6ccd04..0000000 --- a/icons/svg/java.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/js.svg b/icons/svg/js.svg deleted file mode 100755 index 80d3138..0000000 --- a/icons/svg/js.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/json.svg b/icons/svg/json.svg deleted file mode 100755 index 7f11ad2..0000000 --- a/icons/svg/json.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/jsp.svg b/icons/svg/jsp.svg deleted file mode 100755 index de96308..0000000 --- a/icons/svg/jsp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/jsx.svg b/icons/svg/jsx.svg deleted file mode 100755 index ac02d46..0000000 --- a/icons/svg/jsx.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/julia.svg b/icons/svg/julia.svg deleted file mode 100755 index 3e44327..0000000 --- a/icons/svg/julia.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/less.svg b/icons/svg/less.svg deleted file mode 100755 index 5a7791a..0000000 --- a/icons/svg/less.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/license.svg b/icons/svg/license.svg deleted file mode 100644 index 2053040..0000000 --- a/icons/svg/license.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/liquid.svg b/icons/svg/liquid.svg deleted file mode 100755 index a69eb0e..0000000 --- a/icons/svg/liquid.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/lisp.svg b/icons/svg/lisp.svg deleted file mode 100755 index 14de59d..0000000 --- a/icons/svg/lisp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/lock.svg b/icons/svg/lock.svg deleted file mode 100755 index 7c1dbac..0000000 --- a/icons/svg/lock.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/log.svg b/icons/svg/log.svg deleted file mode 100755 index 7a41102..0000000 --- a/icons/svg/log.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/lsl.svg b/icons/svg/lsl.svg deleted file mode 100755 index c7472d0..0000000 --- a/icons/svg/lsl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/lua.svg b/icons/svg/lua.svg deleted file mode 100755 index e2e4ea8..0000000 --- a/icons/svg/lua.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/markdown.svg b/icons/svg/markdown.svg deleted file mode 100755 index 4c8168c..0000000 --- a/icons/svg/markdown.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/markup.svg b/icons/svg/markup.svg deleted file mode 100755 index 3eec1ec..0000000 --- a/icons/svg/markup.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/matlab.svg b/icons/svg/matlab.svg deleted file mode 100755 index 5f68204..0000000 --- a/icons/svg/matlab.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/mustache.svg b/icons/svg/mustache.svg deleted file mode 100755 index f415378..0000000 --- a/icons/svg/mustache.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/nginx.svg b/icons/svg/nginx.svg deleted file mode 100755 index 013b3ee..0000000 --- a/icons/svg/nginx.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/nodejs.svg b/icons/svg/nodejs.svg deleted file mode 100755 index d967df5..0000000 --- a/icons/svg/nodejs.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/note.svg b/icons/svg/note.svg deleted file mode 100755 index 272e04d..0000000 --- a/icons/svg/note.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/npm.svg b/icons/svg/npm.svg deleted file mode 100755 index af3b8e7..0000000 --- a/icons/svg/npm.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/nsis.svg b/icons/svg/nsis.svg deleted file mode 100755 index 7065e75..0000000 --- a/icons/svg/nsis.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/ocaml.svg b/icons/svg/ocaml.svg deleted file mode 100755 index bb524ee..0000000 --- a/icons/svg/ocaml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/pdf.svg b/icons/svg/pdf.svg deleted file mode 100755 index 8a28996..0000000 --- a/icons/svg/pdf.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/perl.svg b/icons/svg/perl.svg deleted file mode 100755 index 32509a3..0000000 --- a/icons/svg/perl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/php.svg b/icons/svg/php.svg deleted file mode 100755 index 9dca1e0..0000000 --- a/icons/svg/php.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/plist.svg b/icons/svg/plist.svg deleted file mode 100755 index db3e9fa..0000000 --- a/icons/svg/plist.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/postcss.svg b/icons/svg/postcss.svg deleted file mode 100755 index 2a93770..0000000 --- a/icons/svg/postcss.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/preferences.svg b/icons/svg/preferences.svg deleted file mode 100755 index 2017da7..0000000 --- a/icons/svg/preferences.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/procfile.svg b/icons/svg/procfile.svg deleted file mode 100755 index 880e65d..0000000 --- a/icons/svg/procfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/psd.svg b/icons/svg/psd.svg deleted file mode 100755 index 76a9f51..0000000 --- a/icons/svg/psd.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/pug.svg b/icons/svg/pug.svg deleted file mode 100755 index b11614a..0000000 --- a/icons/svg/pug.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/puppet.svg b/icons/svg/puppet.svg deleted file mode 100755 index 7ebe58e..0000000 --- a/icons/svg/puppet.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/python.svg b/icons/svg/python.svg deleted file mode 100755 index 004ed0a..0000000 --- a/icons/svg/python.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/r.svg b/icons/svg/r.svg deleted file mode 100755 index 53bfd77..0000000 --- a/icons/svg/r.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/rails.svg b/icons/svg/rails.svg deleted file mode 100755 index c7be628..0000000 --- a/icons/svg/rails.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/riot.svg b/icons/svg/riot.svg deleted file mode 100755 index 41faed9..0000000 --- a/icons/svg/riot.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/ruby.svg b/icons/svg/ruby.svg deleted file mode 100755 index 65b729a..0000000 --- a/icons/svg/ruby.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/rust.svg b/icons/svg/rust.svg deleted file mode 100755 index 0c65735..0000000 --- a/icons/svg/rust.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/sass.svg b/icons/svg/sass.svg deleted file mode 100755 index 79478d9..0000000 --- a/icons/svg/sass.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/scala.svg b/icons/svg/scala.svg deleted file mode 100755 index 2e83768..0000000 --- a/icons/svg/scala.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/scss.svg b/icons/svg/scss.svg deleted file mode 100755 index 6b596fc..0000000 --- a/icons/svg/scss.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/settings.svg b/icons/svg/settings.svg deleted file mode 100755 index fe3ed11..0000000 --- a/icons/svg/settings.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/shell.svg b/icons/svg/shell.svg deleted file mode 100755 index e10f3be..0000000 --- a/icons/svg/shell.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/sketch.svg b/icons/svg/sketch.svg deleted file mode 100755 index d5be148..0000000 --- a/icons/svg/sketch.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/slim.svg b/icons/svg/slim.svg deleted file mode 100755 index 6a2c1da..0000000 --- a/icons/svg/slim.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/source.svg b/icons/svg/source.svg deleted file mode 100755 index 3eec1ec..0000000 --- a/icons/svg/source.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/sql.svg b/icons/svg/sql.svg deleted file mode 100755 index 7c20ae7..0000000 --- a/icons/svg/sql.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/stata.svg b/icons/svg/stata.svg deleted file mode 100755 index 7fef8a5..0000000 --- a/icons/svg/stata.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/stylelint.svg b/icons/svg/stylelint.svg deleted file mode 100755 index f773f11..0000000 --- a/icons/svg/stylelint.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/stylus.svg b/icons/svg/stylus.svg deleted file mode 100755 index a588b34..0000000 --- a/icons/svg/stylus.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/sublime.svg b/icons/svg/sublime.svg deleted file mode 100755 index 0311625..0000000 --- a/icons/svg/sublime.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/svg.svg b/icons/svg/svg.svg deleted file mode 100755 index 072be26..0000000 --- a/icons/svg/svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/swift.svg b/icons/svg/swift.svg deleted file mode 100755 index e2fd845..0000000 --- a/icons/svg/swift.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/tcl.svg b/icons/svg/tcl.svg deleted file mode 100755 index 3b5b7c2..0000000 --- a/icons/svg/tcl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/tex.svg b/icons/svg/tex.svg deleted file mode 100755 index f999f9e..0000000 --- a/icons/svg/tex.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/text.svg b/icons/svg/text.svg deleted file mode 100755 index 272e04d..0000000 --- a/icons/svg/text.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/textile.svg b/icons/svg/textile.svg deleted file mode 100755 index 09daef1..0000000 --- a/icons/svg/textile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/todo.svg b/icons/svg/todo.svg deleted file mode 100755 index 6d60349..0000000 --- a/icons/svg/todo.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/twig.svg b/icons/svg/twig.svg deleted file mode 100755 index 659eb28..0000000 --- a/icons/svg/twig.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/typescript.svg b/icons/svg/typescript.svg deleted file mode 100755 index 41c0b5d..0000000 --- a/icons/svg/typescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/vue.svg b/icons/svg/vue.svg deleted file mode 100755 index 1fce6c9..0000000 --- a/icons/svg/vue.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/webpack.svg b/icons/svg/webpack.svg deleted file mode 100755 index 67ca224..0000000 --- a/icons/svg/webpack.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/windows.svg b/icons/svg/windows.svg deleted file mode 100755 index 3a7e255..0000000 --- a/icons/svg/windows.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/yaml.svg b/icons/svg/yaml.svg deleted file mode 100755 index 7c20ae7..0000000 --- a/icons/svg/yaml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/icons/svg/yarn.svg b/icons/svg/yarn.svg deleted file mode 100755 index cf002e5..0000000 --- a/icons/svg/yarn.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/package.json b/package.json index d7fc8c0..d55aa4a 100644 --- a/package.json +++ b/package.json @@ -4,14 +4,21 @@ "description": "The most epic theme now for Visual Studio Code", "version": "0.0.1", "publisher": "Equinusocio", + "license": "Apache-2.0", + "homepage": "https://github.com/equinusocio/vsc-material-theme", "bugs": { "url": "https://github.com/equinusocio/vsc-material-theme/issues" }, - "license": "Apache-2.0", - "homepage": "https://github.com/equinusocio/vsc-material-theme", "engines": { "vscode": "^1.5.0" }, + "scripts": { + "vscode:prepublish": "tsc -p ./", + "compile": "node ./scripts/import.js", + "postinstall": "node ./node_modules/vscode/bin/install", + "test": "node ./node_modules/vscode/bin/test", + "import": "node ./scripts/import.js" + }, "categories": [ "Theme", "Material", @@ -25,13 +32,6 @@ "uiTheme": "vs-dark", "path": "./themes/Material-Theme-Darker.tmTheme" } - ], - "iconThemes": [ - { - "id": "material-theme-icons", - "label": "Material Theme Icons", - "path": "./icons/material-theme-icon-theme.json" - } ] }, "devDependencies": { @@ -44,16 +44,11 @@ "eslint-plugin-standard": "^2.0.1", "gulp": "^3.9.1", "gulp-bump": "^2.6.1", - "gulp-colorize-svgs": "git+https://git@github.com/unic/gulp-colorize-svgs.git", "gulp-conventional-changelog": "^1.1.0", - "gulp-data": "^1.2.1", - "gulp-filelist": "^1.0.0", - "gulp-if": "^2.0.2", - "gulp-rename": "^1.2.2", "gulp-stats": "^0.0.4", - "gulp-template": "^4.0.0", "gulp-watch": "^4.3.8", "run-sequence": "^1.2.2", + "vscode": "^1.0.3", "yargs": "^6.6.0" } } diff --git a/src/iconlist.json b/src/iconlist.json deleted file mode 100644 index 95276ad..0000000 --- a/src/iconlist.json +++ /dev/null @@ -1,110 +0,0 @@ -[ - "actionscript", - "ai", - "angular", - "applescript", - "archive", - "babel", - "binary", - "blade", - "bower", - "c", - "cf", - "circleci", - "clojure", - "coffeescript", - "composer", - "cpp", - "csharp", - "css", - "csv", - "default", - "dlang", - "docker", - "dotnet", - "editorconfig", - "elm", - "erlang", - "eslint", - "ex", - "font", - "git", - "go", - "gradle", - "graphviz", - "groovy", - "gruntfile", - "gulpfile", - "haml", - "haskell", - "haxe", - "html", - "image", - "java", - "js", - "json", - "jsp", - "jsx", - "julia", - "less", - "license", - "liquid", - "lisp", - "lock", - "log", - "lsl", - "lua", - "markdown", - "markup", - "matlab", - "mustache", - "nginx", - "nodejs", - "note", - "npm", - "nsis", - "ocaml", - "pdf", - "perl", - "php", - "plist", - "postcss", - "preferences", - "procfile", - "psd", - "pug", - "puppet", - "python", - "r", - "rails", - "riot", - "ruby", - "rust", - "sass", - "scala", - "scss", - "settings", - "shell", - "sketch", - "slim", - "source", - "sql", - "stata", - "stylelint", - "stylus", - "sublime", - "svg", - "swift", - "tcl", - "tex", - "text", - "textile", - "todo", - "twig", - "typescript", - "vue", - "webpack", - "windows", - "yaml", - "yarn" -] \ No newline at end of file diff --git a/src/icons/actionscript.svg b/src/icons/actionscript.svg deleted file mode 100755 index 7c38860..0000000 --- a/src/icons/actionscript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/ai.svg b/src/icons/ai.svg deleted file mode 100755 index d1b9e99..0000000 --- a/src/icons/ai.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/angular.svg b/src/icons/angular.svg deleted file mode 100755 index b054fec..0000000 --- a/src/icons/angular.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/applescript.svg b/src/icons/applescript.svg deleted file mode 100755 index 7b68cde..0000000 --- a/src/icons/applescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/archive.svg b/src/icons/archive.svg deleted file mode 100755 index 3f5dc31..0000000 --- a/src/icons/archive.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/babel.svg b/src/icons/babel.svg deleted file mode 100755 index f499981..0000000 --- a/src/icons/babel.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/binary.svg b/src/icons/binary.svg deleted file mode 100755 index 8f7d738..0000000 --- a/src/icons/binary.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/blade.svg b/src/icons/blade.svg deleted file mode 100755 index 6204858..0000000 --- a/src/icons/blade.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/bower.svg b/src/icons/bower.svg deleted file mode 100755 index 85517b0..0000000 --- a/src/icons/bower.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/c.svg b/src/icons/c.svg deleted file mode 100755 index c078a10..0000000 --- a/src/icons/c.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/cf.svg b/src/icons/cf.svg deleted file mode 100755 index 7c8321d..0000000 --- a/src/icons/cf.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/circleci.svg b/src/icons/circleci.svg deleted file mode 100755 index 36b0df6..0000000 --- a/src/icons/circleci.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/clojure.svg b/src/icons/clojure.svg deleted file mode 100755 index e806789..0000000 --- a/src/icons/clojure.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/coffeescript.svg b/src/icons/coffeescript.svg deleted file mode 100755 index b4ca76e..0000000 --- a/src/icons/coffeescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/composer.svg b/src/icons/composer.svg deleted file mode 100755 index 323059e..0000000 --- a/src/icons/composer.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/cpp.svg b/src/icons/cpp.svg deleted file mode 100755 index da3d047..0000000 --- a/src/icons/cpp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/csharp.svg b/src/icons/csharp.svg deleted file mode 100755 index 03d37f9..0000000 --- a/src/icons/csharp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/css.svg b/src/icons/css.svg deleted file mode 100755 index c28cc98..0000000 --- a/src/icons/css.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/csv.svg b/src/icons/csv.svg deleted file mode 100755 index 68505f3..0000000 --- a/src/icons/csv.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/default.svg b/src/icons/default.svg deleted file mode 100755 index aab33d6..0000000 --- a/src/icons/default.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/dlang.svg b/src/icons/dlang.svg deleted file mode 100755 index f61cdc9..0000000 --- a/src/icons/dlang.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/docker.svg b/src/icons/docker.svg deleted file mode 100755 index 23d8e27..0000000 --- a/src/icons/docker.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/dotnet.svg b/src/icons/dotnet.svg deleted file mode 100755 index e19dd1a..0000000 --- a/src/icons/dotnet.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/editorconfig.svg b/src/icons/editorconfig.svg deleted file mode 100755 index a1b6422..0000000 --- a/src/icons/editorconfig.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/elm.svg b/src/icons/elm.svg deleted file mode 100755 index 56179c3..0000000 --- a/src/icons/elm.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/erlang.svg b/src/icons/erlang.svg deleted file mode 100755 index f61b72d..0000000 --- a/src/icons/erlang.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/eslint.svg b/src/icons/eslint.svg deleted file mode 100755 index e2ced03..0000000 --- a/src/icons/eslint.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/ex.svg b/src/icons/ex.svg deleted file mode 100755 index bcf263b..0000000 --- a/src/icons/ex.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/font.svg b/src/icons/font.svg deleted file mode 100755 index 7b3658a..0000000 --- a/src/icons/font.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/git.svg b/src/icons/git.svg deleted file mode 100755 index 06fd699..0000000 --- a/src/icons/git.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/go.svg b/src/icons/go.svg deleted file mode 100755 index 1e35057..0000000 --- a/src/icons/go.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/gradle.svg b/src/icons/gradle.svg deleted file mode 100755 index 216ff33..0000000 --- a/src/icons/gradle.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/graphviz.svg b/src/icons/graphviz.svg deleted file mode 100755 index 4a38672..0000000 --- a/src/icons/graphviz.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/groovy.svg b/src/icons/groovy.svg deleted file mode 100755 index 792382e..0000000 --- a/src/icons/groovy.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/gruntfile.svg b/src/icons/gruntfile.svg deleted file mode 100755 index 3d2a720..0000000 --- a/src/icons/gruntfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/gulpfile.svg b/src/icons/gulpfile.svg deleted file mode 100755 index f443b7c..0000000 --- a/src/icons/gulpfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/haml.svg b/src/icons/haml.svg deleted file mode 100755 index dea690a..0000000 --- a/src/icons/haml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/haskell.svg b/src/icons/haskell.svg deleted file mode 100755 index fb8ddc9..0000000 --- a/src/icons/haskell.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/haxe.svg b/src/icons/haxe.svg deleted file mode 100755 index c69421f..0000000 --- a/src/icons/haxe.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/html.svg b/src/icons/html.svg deleted file mode 100755 index de96308..0000000 --- a/src/icons/html.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/image.svg b/src/icons/image.svg deleted file mode 100755 index 8db0c64..0000000 --- a/src/icons/image.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/java.svg b/src/icons/java.svg deleted file mode 100755 index f6ccd04..0000000 --- a/src/icons/java.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/js.svg b/src/icons/js.svg deleted file mode 100755 index 80d3138..0000000 --- a/src/icons/js.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/json.svg b/src/icons/json.svg deleted file mode 100755 index 7f11ad2..0000000 --- a/src/icons/json.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/jsp.svg b/src/icons/jsp.svg deleted file mode 100755 index de96308..0000000 --- a/src/icons/jsp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/jsx.svg b/src/icons/jsx.svg deleted file mode 100755 index ac02d46..0000000 --- a/src/icons/jsx.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/julia.svg b/src/icons/julia.svg deleted file mode 100755 index 3e44327..0000000 --- a/src/icons/julia.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/less.svg b/src/icons/less.svg deleted file mode 100755 index 5a7791a..0000000 --- a/src/icons/less.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/license.svg b/src/icons/license.svg deleted file mode 100755 index 2b496b9..0000000 --- a/src/icons/license.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/liquid.svg b/src/icons/liquid.svg deleted file mode 100755 index a69eb0e..0000000 --- a/src/icons/liquid.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/lisp.svg b/src/icons/lisp.svg deleted file mode 100755 index 14de59d..0000000 --- a/src/icons/lisp.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/lock.svg b/src/icons/lock.svg deleted file mode 100755 index 7c1dbac..0000000 --- a/src/icons/lock.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/log.svg b/src/icons/log.svg deleted file mode 100755 index 7a41102..0000000 --- a/src/icons/log.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/lsl.svg b/src/icons/lsl.svg deleted file mode 100755 index c7472d0..0000000 --- a/src/icons/lsl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/lua.svg b/src/icons/lua.svg deleted file mode 100755 index e2e4ea8..0000000 --- a/src/icons/lua.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/markdown.svg b/src/icons/markdown.svg deleted file mode 100755 index 4c8168c..0000000 --- a/src/icons/markdown.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/markup.svg b/src/icons/markup.svg deleted file mode 100755 index 3eec1ec..0000000 --- a/src/icons/markup.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/matlab.svg b/src/icons/matlab.svg deleted file mode 100755 index 5f68204..0000000 --- a/src/icons/matlab.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/mustache.svg b/src/icons/mustache.svg deleted file mode 100755 index f415378..0000000 --- a/src/icons/mustache.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/nginx.svg b/src/icons/nginx.svg deleted file mode 100755 index 013b3ee..0000000 --- a/src/icons/nginx.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/nodejs.svg b/src/icons/nodejs.svg deleted file mode 100755 index d967df5..0000000 --- a/src/icons/nodejs.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/note.svg b/src/icons/note.svg deleted file mode 100755 index 272e04d..0000000 --- a/src/icons/note.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/npm.svg b/src/icons/npm.svg deleted file mode 100755 index af3b8e7..0000000 --- a/src/icons/npm.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/nsis.svg b/src/icons/nsis.svg deleted file mode 100755 index 7065e75..0000000 --- a/src/icons/nsis.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/ocaml.svg b/src/icons/ocaml.svg deleted file mode 100755 index bb524ee..0000000 --- a/src/icons/ocaml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/pdf.svg b/src/icons/pdf.svg deleted file mode 100755 index 8a28996..0000000 --- a/src/icons/pdf.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/perl.svg b/src/icons/perl.svg deleted file mode 100755 index 32509a3..0000000 --- a/src/icons/perl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/php.svg b/src/icons/php.svg deleted file mode 100755 index 9dca1e0..0000000 --- a/src/icons/php.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/plist.svg b/src/icons/plist.svg deleted file mode 100755 index db3e9fa..0000000 --- a/src/icons/plist.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/postcss.svg b/src/icons/postcss.svg deleted file mode 100755 index 2a93770..0000000 --- a/src/icons/postcss.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/preferences.svg b/src/icons/preferences.svg deleted file mode 100755 index 2017da7..0000000 --- a/src/icons/preferences.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/procfile.svg b/src/icons/procfile.svg deleted file mode 100755 index 880e65d..0000000 --- a/src/icons/procfile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/psd.svg b/src/icons/psd.svg deleted file mode 100755 index 76a9f51..0000000 --- a/src/icons/psd.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/pug.svg b/src/icons/pug.svg deleted file mode 100755 index b11614a..0000000 --- a/src/icons/pug.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/puppet.svg b/src/icons/puppet.svg deleted file mode 100755 index 7ebe58e..0000000 --- a/src/icons/puppet.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/python.svg b/src/icons/python.svg deleted file mode 100755 index 004ed0a..0000000 --- a/src/icons/python.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/r.svg b/src/icons/r.svg deleted file mode 100755 index 53bfd77..0000000 --- a/src/icons/r.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/rails.svg b/src/icons/rails.svg deleted file mode 100755 index c7be628..0000000 --- a/src/icons/rails.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/riot.svg b/src/icons/riot.svg deleted file mode 100755 index 41faed9..0000000 --- a/src/icons/riot.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/ruby.svg b/src/icons/ruby.svg deleted file mode 100755 index 65b729a..0000000 --- a/src/icons/ruby.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/rust.svg b/src/icons/rust.svg deleted file mode 100755 index 0c65735..0000000 --- a/src/icons/rust.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/sass.svg b/src/icons/sass.svg deleted file mode 100755 index 79478d9..0000000 --- a/src/icons/sass.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/scala.svg b/src/icons/scala.svg deleted file mode 100755 index 2e83768..0000000 --- a/src/icons/scala.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/scss.svg b/src/icons/scss.svg deleted file mode 100755 index 6b596fc..0000000 --- a/src/icons/scss.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/settings.svg b/src/icons/settings.svg deleted file mode 100755 index fe3ed11..0000000 --- a/src/icons/settings.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/shell.svg b/src/icons/shell.svg deleted file mode 100755 index e10f3be..0000000 --- a/src/icons/shell.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/sketch.svg b/src/icons/sketch.svg deleted file mode 100755 index d5be148..0000000 --- a/src/icons/sketch.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/slim.svg b/src/icons/slim.svg deleted file mode 100755 index 6a2c1da..0000000 --- a/src/icons/slim.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/source.svg b/src/icons/source.svg deleted file mode 100755 index 3eec1ec..0000000 --- a/src/icons/source.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/sql.svg b/src/icons/sql.svg deleted file mode 100755 index 7c20ae7..0000000 --- a/src/icons/sql.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/stata.svg b/src/icons/stata.svg deleted file mode 100755 index 7fef8a5..0000000 --- a/src/icons/stata.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/stylelint.svg b/src/icons/stylelint.svg deleted file mode 100755 index f773f11..0000000 --- a/src/icons/stylelint.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/stylus.svg b/src/icons/stylus.svg deleted file mode 100755 index a588b34..0000000 --- a/src/icons/stylus.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/sublime.svg b/src/icons/sublime.svg deleted file mode 100755 index 0311625..0000000 --- a/src/icons/sublime.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/svg.svg b/src/icons/svg.svg deleted file mode 100755 index 072be26..0000000 --- a/src/icons/svg.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/swift.svg b/src/icons/swift.svg deleted file mode 100755 index e2fd845..0000000 --- a/src/icons/swift.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/tcl.svg b/src/icons/tcl.svg deleted file mode 100755 index 3b5b7c2..0000000 --- a/src/icons/tcl.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/tex.svg b/src/icons/tex.svg deleted file mode 100755 index f999f9e..0000000 --- a/src/icons/tex.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/text.svg b/src/icons/text.svg deleted file mode 100755 index 272e04d..0000000 --- a/src/icons/text.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/textile.svg b/src/icons/textile.svg deleted file mode 100755 index 09daef1..0000000 --- a/src/icons/textile.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/todo.svg b/src/icons/todo.svg deleted file mode 100755 index 6d60349..0000000 --- a/src/icons/todo.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/twig.svg b/src/icons/twig.svg deleted file mode 100755 index 659eb28..0000000 --- a/src/icons/twig.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/typescript.svg b/src/icons/typescript.svg deleted file mode 100755 index 41c0b5d..0000000 --- a/src/icons/typescript.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/vue.svg b/src/icons/vue.svg deleted file mode 100755 index 1fce6c9..0000000 --- a/src/icons/vue.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/webpack.svg b/src/icons/webpack.svg deleted file mode 100755 index 67ca224..0000000 --- a/src/icons/webpack.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/windows.svg b/src/icons/windows.svg deleted file mode 100755 index 3a7e255..0000000 --- a/src/icons/windows.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/yaml.svg b/src/icons/yaml.svg deleted file mode 100755 index 7c20ae7..0000000 --- a/src/icons/yaml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/icons/yarn.svg b/src/icons/yarn.svg deleted file mode 100755 index cf002e5..0000000 --- a/src/icons/yarn.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/settings/colors.js b/src/settings/colors.js deleted file mode 100644 index c27a339..0000000 --- a/src/settings/colors.js +++ /dev/null @@ -1,69 +0,0 @@ -/* Color Palette: */ -let green = '90A959'; -let blue = '6A9FB5'; -let blueDesaturated = '78909C'; -let red = 'AC4142'; -let redLight = 'D14748'; -let maroon = 'AB7558'; -let limeGreen = 'B8E15E'; -let greenTea = '2ECC71'; -let purple = 'AA759F'; -let purpleDark = '8251A8'; -let yellow = 'F4BF75'; -let teal = '80CBC4'; -let orange = 'D28445'; -let gray = '7A8387'; - - -var iconsColors = { - ai: { - color: orange - }, - git: { - color: red - }, - license: { - color: yellow - }, - angular: { - color: redLight - }, - applescript: { - color: gray - }, - bower: { - color: gray - }, - csharp: { - color: blue - }, - coffeescript: { - color: maroon - }, - css: { - color: blue - }, - dlang: { - color: red - }, - docker: { - color: blue - }, - erlang: { - color: purple - }, - go: { - color: blue - }, - graphviz: { - color: orange - }, - gruntfile: { - color: yellow - }, - gulpfile: { - color: redLight - } -} - -export default iconsColors; \ No newline at end of file diff --git a/src/theme-icon.template b/src/theme-icon.template index 2371856..caace6c 100644 --- a/src/theme-icon.template +++ b/src/theme-icon.template @@ -6,6 +6,8 @@ }, "fileExtensions": { "md": "_markdown", + "js": "_js", + "css": "_css", "scss": "_scss", "sass": "_sass", "json": "_json" diff --git a/yarn.lock b/yarn.lock index 84a22c5..0b2ae6c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -173,10 +173,18 @@ arrify@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" +asn1@0.1.11: + version "0.1.11" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.1.11.tgz#559be18376d08a4ec4dbe80877d27818639b2df7" + asn1@~0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" +assert-plus@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" + assert-plus@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" @@ -193,6 +201,12 @@ async@^1.4.0: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" +async@^2.0.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/async/-/async-2.1.4.tgz#2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4" + dependencies: + lodash "^4.14.0" + async@~0.2.6: version "0.2.10" resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" @@ -201,6 +215,10 @@ asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" +aws-sign2@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.5.0.tgz#c57103f7a17fc037f02d7c2e64b602ea223f7d63" + aws-sign2@~0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" @@ -630,12 +648,22 @@ binary-extensions@^1.0.0: version "1.8.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" +bl@~0.9.0: + version "0.9.5" + resolved "https://registry.yarnpkg.com/bl/-/bl-0.9.5.tgz#c06b797af085ea00bc527afc8efcf11de2232054" + dependencies: + readable-stream "~1.0.26" + block-stream@*: version "0.0.9" resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" dependencies: inherits "~2.0.0" +bluebird@^2.9.30: + version "2.11.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" + boom@2.x.x: version "2.10.1" resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" @@ -657,6 +685,10 @@ braces@^1.8.2: preserve "^0.2.0" repeat-element "^1.1.2" +buffer-crc32@~0.2.3: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + buffer-shims@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-shims/-/buffer-shims-1.0.0.tgz#9978ce317388c649ad8793028c3477ef044a8b51" @@ -701,6 +733,10 @@ camelcase@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" +caseless@~0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.10.0.tgz#ed6b2719adcd1fd18f58dc081c0f1a5b43963909" + caseless@~0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.11.0.tgz#715b96ea9841593cc33067923f5ec60ebda4f7d7" @@ -722,7 +758,7 @@ chalk@*, chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^0.5.1: +chalk@^0.5.0, chalk@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.5.1.tgz#663b3a648b68b55d04690d49167aa837858f2174" dependencies: @@ -777,7 +813,7 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" -clone-stats@^0.0.1: +clone-stats@^0.0.1, clone-stats@~0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" @@ -801,13 +837,21 @@ colors@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" -combined-stream@^1.0.5, combined-stream@~1.0.5: +combined-stream@^1.0.5, combined-stream@~1.0.1, combined-stream@~1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" dependencies: delayed-stream "~1.0.0" -commander@^2.9.0: +commander@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-0.6.1.tgz#fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06" + +commander@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.3.0.tgz#fd430e889832ec353b9acd1de217c11cb3eef873" + +commander@^2.8.1, commander@^2.9.0: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" dependencies: @@ -960,7 +1004,7 @@ conventional-commits-parser@^1.0.0: through2 "^2.0.0" trim-off-newlines "^1.0.0" -convert-source-map@^1.1.0: +convert-source-map@^1.1.0, convert-source-map@^1.1.1: version "1.3.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.3.0.tgz#e9f3e9c6e2728efc2676696a70eb382f73106a67" @@ -978,6 +1022,10 @@ cryptiles@2.x.x: dependencies: boom "2.x.x" +ctype@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/ctype/-/ctype-0.5.3.tgz#82c18c2461f74114ef16c135224ad0b9144ca12f" + currently-unhandled@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" @@ -1002,7 +1050,7 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -dateformat@^1.0.11, dateformat@^1.0.12: +dateformat@^1.0.11, dateformat@^1.0.12, dateformat@^1.0.7-1.2.3: version "1.0.12" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" dependencies: @@ -1013,22 +1061,28 @@ dateformat@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17" +debug@2.2.0, debug@~2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + dependencies: + ms "0.7.1" + debug@^2.1.1, debug@^2.2.0: version "2.6.0" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.0.tgz#bc596bcabe7617f11d9fa15361eded5608b8499b" dependencies: ms "0.7.2" -debug@~2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" - dependencies: - ms "0.7.1" - decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +deep-assign@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/deep-assign/-/deep-assign-1.0.0.tgz#b092743be8427dc621ea0067cdec7e70dd19f37b" + dependencies: + is-obj "^1.0.0" + deep-extend@~0.4.0: version "0.4.1" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" @@ -1079,6 +1133,10 @@ detect-indent@^4.0.0: dependencies: repeating "^2.0.0" +diff@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-1.4.0.tgz#7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf" + doctrine@^1.2.2: version "1.5.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" @@ -1098,7 +1156,11 @@ duplexer2@0.0.2: dependencies: readable-stream "~1.1.9" -duplexify@^3.5.0: +duplexer@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + +duplexify@^3.2.0: version "3.5.0" resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.5.0.tgz#1aa773002e1578457e9d9d4a50b0ccaaebcbd604" dependencies: @@ -1183,6 +1245,10 @@ es6-weak-map@^2.0.1: es6-iterator "2" es6-symbol "3" +escape-string-regexp@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz#4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1" + escape-string-regexp@^1.0.0, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -1276,6 +1342,30 @@ event-emitter@~0.3.4: d "~0.1.1" es5-ext "~0.10.7" +event-stream@^3.3.1: + version "3.3.4" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.3" + stream-combiner "~0.0.4" + through "~2.3.1" + +event-stream@~3.1.5: + version "3.1.7" + resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.1.7.tgz#b4c540012d0fe1498420f3d8946008db6393c37a" + dependencies: + duplexer "~0.1.1" + from "~0" + map-stream "~0.1.0" + pause-stream "0.0.11" + split "0.2" + stream-combiner "~0.0.4" + through "~2.3.1" + exit-hook@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" @@ -1304,10 +1394,20 @@ extend-shallow@^1.1.2: dependencies: kind-of "^1.1.0" +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + dependencies: + is-extendable "^0.1.0" + extend@^3.0.0, extend@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" +extend@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-2.0.1.tgz#1ee8010689e7395ff9448241c98652bc759a8260" + extglob@^0.3.1: version "0.3.2" resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" @@ -1329,6 +1429,12 @@ fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" +fd-slicer@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" + dependencies: + pend "~1.2.0" + figures@^1.3.5: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" @@ -1422,13 +1528,17 @@ for-own@^0.1.4: dependencies: for-in "^0.1.5" -forever-agent@~0.6.1: +forever-agent@~0.6.0, forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" -fork-stream@^0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/fork-stream/-/fork-stream-0.0.4.tgz#db849fce77f6708a5f8f386ae533a0907b54ae70" +form-data@~1.0.0-rc1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.1.tgz#ae315db9a4907fa065502304a66d7733475ee37c" + dependencies: + async "^2.0.1" + combined-stream "^1.0.5" + mime-types "^2.1.11" form-data@~2.1.1: version "2.1.2" @@ -1438,6 +1548,10 @@ form-data@~2.1.1: combined-stream "^1.0.5" mime-types "^2.1.12" +from@~0: + version "0.1.3" + resolved "https://registry.yarnpkg.com/from/-/from-0.1.3.tgz#ef63ac2062ac32acf7862e0d40b44b896f22f3bc" + fs-exists-sync@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" @@ -1571,7 +1685,7 @@ glob-parent@^2.0.0: dependencies: is-glob "^2.0.0" -glob-parent@^3.0.1: +glob-parent@^3.0.0, glob-parent@^3.0.1: version "3.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" dependencies: @@ -1589,6 +1703,19 @@ glob-stream@^3.1.5: through2 "^0.6.1" unique-stream "^1.0.0" +glob-stream@^5.3.2: + version "5.3.5" + resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-5.3.5.tgz#a55665a9a8ccdc41915a87c701e32d4e016fad22" + dependencies: + extend "^3.0.0" + glob "^5.0.3" + glob-parent "^3.0.0" + micromatch "^2.3.7" + ordered-read-streams "^0.3.0" + through2 "^0.6.0" + to-absolute-glob "^0.1.1" + unique-stream "^2.0.2" + glob-watcher@^0.0.6: version "0.0.6" resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" @@ -1601,6 +1728,13 @@ glob2base@^0.0.12: dependencies: find-index "^0.1.1" +glob@3.2.11: + version "3.2.11" + resolved "https://registry.yarnpkg.com/glob/-/glob-3.2.11.tgz#4a973f635b9190f715d10987d5c00fd2815ebe3d" + dependencies: + inherits "2" + minimatch "0.3" + glob@^4.3.1: version "4.5.3" resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" @@ -1610,6 +1744,16 @@ glob@^4.3.1: minimatch "^2.0.1" once "^1.3.0" +glob@^5.0.15, glob@^5.0.3: + version "5.0.15" + resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "2 || 3" + once "^1.3.0" + path-is-absolute "^1.0.0" + glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: version "7.1.1" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" @@ -1680,7 +1824,7 @@ graceful-fs@^3.0.0: dependencies: natives "^1.1.0" -graceful-fs@^4.1.2: +graceful-fs@^4.0.0, graceful-fs@^4.1.2: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" @@ -1692,6 +1836,10 @@ graceful-fs@~1.2.0: version "1.0.1" resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" +growl@1.9.2: + version "1.9.2" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.9.2.tgz#0ea7743715db8d8de2c5ede1775e1b45ac85c02f" + gulp-bump@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/gulp-bump/-/gulp-bump-2.6.1.tgz#9d27a9ec0e1b8608c39bb41238a35e860281bb18" @@ -1702,12 +1850,13 @@ gulp-bump@^2.6.1: semver "^5.3.0" through2 "^2.0.1" -"gulp-colorize-svgs@git+https://git@github.com/unic/gulp-colorize-svgs.git": - version "0.1.0" - resolved "git+https://git@github.com/unic/gulp-colorize-svgs.git#c4fe69a9771f149a9ae720277246710470c2bd01" +gulp-chmod@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/gulp-chmod/-/gulp-chmod-1.3.0.tgz#8bb6e8c11895dcbf9b42520c874347a5022bcb0d" dependencies: - gulp-util "^3.0.4" - lodash "^3.6.0" + deep-assign "^1.0.0" + stat-mode "^0.2.0" + through2 "^2.0.0" gulp-conventional-changelog@^1.1.0: version "1.1.0" @@ -1720,40 +1869,40 @@ gulp-conventional-changelog@^1.1.0: object-assign "^4.0.1" through2 "^2.0.0" -gulp-data@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/gulp-data/-/gulp-data-1.2.1.tgz#a94b54de7d4f3b8ea1f40ef859749c24578cf12b" +gulp-filter@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-4.0.0.tgz#395f58a256c559cdb9e0d157f1caaf5248a38dcb" dependencies: - gulp-util "^3.0.7" + gulp-util "^3.0.6" + multimatch "^2.0.0" + streamfilter "^1.0.5" + +gulp-gunzip@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/gulp-gunzip/-/gulp-gunzip-0.0.3.tgz#7b6e07b0f58fd3d42515c48ead5a63df0572f62f" + dependencies: + through2 "~0.6.5" + vinyl "~0.4.6" + +gulp-remote-src@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/gulp-remote-src/-/gulp-remote-src-0.4.1.tgz#6c36004e57228c9df02fbea9727a8616baf87355" + dependencies: + event-stream "~3.1.5" + node.extend "~1.1.2" + request "~2.58.0" + through2 "~0.5.1" + vinyl "~0.2.3" + +gulp-sourcemaps@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz#b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c" + dependencies: + convert-source-map "^1.1.1" + graceful-fs "^4.1.2" + strip-bom "^2.0.0" through2 "^2.0.0" - util-extend "^1.0.1" - -gulp-filelist@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gulp-filelist/-/gulp-filelist-1.0.0.tgz#21e2408298a3d30de0ea60ed1f72fcab15c86889" - dependencies: - gulp-util "^3.0.7" - path "^0.12.7" - through2 "^2.0.0" - vinyl "^1.1.0" - -gulp-if@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/gulp-if/-/gulp-if-2.0.2.tgz#a497b7e7573005041caa2bc8b7dda3c80444d629" - dependencies: - gulp-match "^1.0.3" - ternary-stream "^2.0.1" - through2 "^2.0.1" - -gulp-match@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/gulp-match/-/gulp-match-1.0.3.tgz#91c7c0d7f29becd6606d57d80a7f8776a87aba8e" - dependencies: - minimatch "^3.0.3" - -gulp-rename@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/gulp-rename/-/gulp-rename-1.2.2.tgz#3ad4428763f05e2764dec1c67d868db275687817" + vinyl "^1.0.0" gulp-stats@^0.0.4: version "0.0.4" @@ -1763,15 +1912,26 @@ gulp-stats@^0.0.4: pretty-hrtime "^1.0.0" text-table "^0.2.0" -gulp-template@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/gulp-template/-/gulp-template-4.0.0.tgz#05de36808c6fb9966578d5a94ee72cee08cdc53b" +gulp-symdest@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/gulp-symdest/-/gulp-symdest-1.1.0.tgz#c165320732d192ce56fd94271ffa123234bf2ae0" dependencies: - gulp-util "^3.0.0" - lodash "^4.8.2" - through2 "^2.0.0" + event-stream "^3.3.1" + mkdirp "^0.5.1" + queue "^3.1.0" + vinyl-fs "^2.4.3" -gulp-util@*, gulp-util@^3.0.0, gulp-util@^3.0.4, gulp-util@^3.0.6, gulp-util@^3.0.7: +gulp-untar@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/gulp-untar/-/gulp-untar-0.0.5.tgz#8d97c31e1e20d3d10167873b1ea95a7ee78654a9" + dependencies: + event-stream "~3.1.5" + gulp-util "~2.2.14" + streamifier "~0.1.0" + tar "^1.0.3" + through2 "~0.4.1" + +gulp-util@*, gulp-util@^3.0.0, gulp-util@^3.0.6, gulp-util@^3.0.7: version "3.0.8" resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" dependencies: @@ -1794,6 +1954,31 @@ gulp-util@*, gulp-util@^3.0.0, gulp-util@^3.0.4, gulp-util@^3.0.6, gulp-util@^3. through2 "^2.0.0" vinyl "^0.5.0" +gulp-util@~2.2.14: + version "2.2.20" + resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-2.2.20.tgz#d7146e5728910bd8f047a6b0b1e549bc22dbd64c" + dependencies: + chalk "^0.5.0" + dateformat "^1.0.7-1.2.3" + lodash._reinterpolate "^2.4.1" + lodash.template "^2.4.1" + minimist "^0.2.0" + multipipe "^0.1.0" + through2 "^0.5.0" + vinyl "^0.2.1" + +gulp-vinyl-zip@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/gulp-vinyl-zip/-/gulp-vinyl-zip-1.4.0.tgz#56382f2ccb57231bb0478c78737ccd572973bee1" + dependencies: + event-stream "^3.3.1" + queue "^3.0.10" + through2 "^0.6.3" + vinyl "^0.4.6" + vinyl-fs "^2.0.0" + yauzl "^2.2.1" + yazl "^2.2.1" + gulp-watch@^4.3.8: version "4.3.11" resolved "https://registry.yarnpkg.com/gulp-watch/-/gulp-watch-4.3.11.tgz#162fc563de9fc770e91f9a7ce3955513a9a118c0" @@ -1843,6 +2028,15 @@ handlebars@^4.0.2: optionalDependencies: uglify-js "^2.6" +har-validator@^1.6.1: + version "1.8.0" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-1.8.0.tgz#d83842b0eb4c435960aeb108a067a3aa94c0eeb2" + dependencies: + bluebird "^2.9.30" + chalk "^1.0.0" + commander "^2.8.1" + is-my-json-valid "^2.12.0" + har-validator@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-2.0.6.tgz#cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d" @@ -1874,6 +2068,15 @@ has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" +hawk@~2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-2.3.1.tgz#1e731ce39447fa1d0f6d707f7bceebec0fd1ec1f" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -1904,6 +2107,14 @@ hosted-git-info@^2.1.4: version "2.1.5" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.1.5.tgz#0ba81d90da2e25ab34a332e6ec77936e1598118b" +http-signature@~0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-0.11.0.tgz#1796cf67a001ad5cd6849dca0991485f09089fe6" + dependencies: + asn1 "0.1.11" + assert-plus "^0.1.5" + ctype "0.5.3" + http-signature@~1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" @@ -1941,10 +2152,6 @@ inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" -inherits@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" - ini@^1.3.2, ini@^1.3.4, ini@~1.3.0: version "1.3.4" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" @@ -2018,7 +2225,7 @@ is-equal-shallow@^0.1.3: dependencies: is-primitive "^2.0.0" -is-extendable@^0.1.1: +is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -2058,7 +2265,7 @@ is-glob@^3.1.0: dependencies: is-extglob "^2.1.0" -is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.4: +is-my-json-valid@^2.10.0, is-my-json-valid@^2.12.0, is-my-json-valid@^2.12.4: version "2.15.0" resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz#936edda3ca3c211fd98f3b2d3e08da43f7b2915b" dependencies: @@ -2117,6 +2324,10 @@ is-resolvable@^1.0.0: dependencies: tryit "^1.0.1" +is-stream@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + is-subset@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" @@ -2141,10 +2352,18 @@ is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" +is-valid-glob@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" + is-windows@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" +is@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/is/-/is-3.2.0.tgz#a362e3daf7df3fd8b7114115d624c5b7e1cb90f7" + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -2163,10 +2382,17 @@ isobject@^2.0.0: dependencies: isarray "1.0.0" -isstream@~0.1.2: +isstream@~0.1.1, isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" +jade@0.26.3: + version "0.26.3" + resolved "https://registry.yarnpkg.com/jade/-/jade-0.26.3.tgz#8f10d7977d8d79f2f6ff862a81b0513ccb25686c" + dependencies: + commander "0.6.1" + mkdirp "0.3.0" + jodid25519@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/jodid25519/-/jodid25519-1.0.2.tgz#06d4912255093419477d425633606e0e90782967" @@ -2206,7 +2432,7 @@ json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: dependencies: jsonify "~0.0.0" -json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.0, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" @@ -2248,6 +2474,12 @@ lazy-cache@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" +lazystream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" + dependencies: + readable-stream "^2.0.5" + lcid@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" @@ -2297,14 +2529,36 @@ lodash._basevalues@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" +lodash._escapehtmlchar@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz#df67c3bb6b7e8e1e831ab48bfa0795b92afe899d" + dependencies: + lodash._htmlescapes "~2.4.1" + +lodash._escapestringchar@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz#ecfe22618a2ade50bfeea43937e51df66f0edb72" + lodash._getnative@^3.0.0: version "3.9.1" resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" +lodash._htmlescapes@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz#32d14bf0844b6de6f8b62a051b4f67c228b624cb" + lodash._isiterateecall@^3.0.0: version "3.0.9" resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" +lodash._isnative@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._isnative/-/lodash._isnative-2.4.1.tgz#3ea6404b784a7be836c7b57580e1cdf79b14832c" + +lodash._objecttypes@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz#7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11" + lodash._reescape@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" @@ -2313,24 +2567,56 @@ lodash._reevaluate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" +lodash._reinterpolate@^2.4.1, lodash._reinterpolate@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-2.4.1.tgz#4f1227aa5a8711fc632f5b07a1f4607aab8b3222" + lodash._reinterpolate@^3.0.0, lodash._reinterpolate@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" +lodash._reunescapedhtml@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz#747c4fc40103eb3bb8a0976e571f7a2659e93ba7" + dependencies: + lodash._htmlescapes "~2.4.1" + lodash.keys "~2.4.1" + lodash._root@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" +lodash._shimkeys@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz#6e9cc9666ff081f0b5a6c978b83e242e6949d203" + dependencies: + lodash._objecttypes "~2.4.1" + lodash.assignwith@^4.0.7: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz#127a97f02adc41751a954d24b0de17e100e038eb" +lodash.defaults@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-2.4.1.tgz#a7e8885f05e68851144b6e12a8f3678026bc4c54" + dependencies: + lodash._objecttypes "~2.4.1" + lodash.keys "~2.4.1" + lodash.escape@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" dependencies: lodash._root "^3.0.0" +lodash.escape@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-2.4.1.tgz#2ce12c5e084db0a57dda5e5d1eeeb9f5d175a3b4" + dependencies: + lodash._escapehtmlchar "~2.4.1" + lodash._reunescapedhtml "~2.4.1" + lodash.keys "~2.4.1" + lodash.isarguments@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" @@ -2343,6 +2629,16 @@ lodash.isempty@^4.2.1: version "4.4.0" resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e" +lodash.isequal@^4.0.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + +lodash.isobject@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.4.1.tgz#5a2e47fe69953f1ee631a7eba1fe64d2d06558f5" + dependencies: + lodash._objecttypes "~2.4.1" + lodash.isplainobject@^4.0.4: version "4.0.6" resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" @@ -2359,6 +2655,14 @@ lodash.keys@^3.0.0: lodash.isarguments "^3.0.0" lodash.isarray "^3.0.0" +lodash.keys@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-2.4.1.tgz#48dea46df8ff7632b10d706b8acb26591e2b3727" + dependencies: + lodash._isnative "~2.4.1" + lodash._shimkeys "~2.4.1" + lodash.isobject "~2.4.1" + lodash.mapvalues@^4.4.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c" @@ -2371,6 +2675,18 @@ lodash.restparam@^3.0.0: version "3.6.1" resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" +lodash.template@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-2.4.1.tgz#9e611007edf629129a974ab3c48b817b3e1cf20d" + dependencies: + lodash._escapestringchar "~2.4.1" + lodash._reinterpolate "~2.4.1" + lodash.defaults "~2.4.1" + lodash.escape "~2.4.1" + lodash.keys "~2.4.1" + lodash.templatesettings "~2.4.1" + lodash.values "~2.4.1" + lodash.template@^3.0.0: version "3.6.2" resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" @@ -2405,11 +2721,20 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "~3.0.0" -lodash@^3.6.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" +lodash.templatesettings@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-2.4.1.tgz#ea76c75d11eb86d4dbe89a83893bb861929ac699" + dependencies: + lodash._reinterpolate "~2.4.1" + lodash.escape "~2.4.1" -lodash@^4.0.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.8.2: +lodash.values@~2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-2.4.1.tgz#abf514436b3cb705001627978cbcf30b1280eea4" + dependencies: + lodash.keys "~2.4.1" + +lodash@^4.0.0, lodash@^4.14.0, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0: version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" @@ -2446,6 +2771,10 @@ map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" +map-stream@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" + meow@^3.3.0: version "3.7.0" resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" @@ -2485,25 +2814,42 @@ micromatch@^2.1.5, micromatch@^2.3.7: parse-glob "^3.0.4" regex-cache "^0.4.2" +mime-db@~1.12.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.12.0.tgz#3d0c63180f458eb10d325aaa37d7c58ae312e9d7" + mime-db@~1.26.0: version "1.26.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" -mime-types@^2.1.12, mime-types@~2.1.7: +mime-types@^2.1.11, mime-types@^2.1.12, mime-types@~2.1.7: version "2.1.14" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" dependencies: mime-db "~1.26.0" -minimatch@^2.0.1: - version "2.0.10" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" +mime-types@~2.0.1: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.0.14.tgz#310e159db23e077f8bb22b748dabfa4957140aa6" + dependencies: + mime-db "~1.12.0" + +minimatch@0.3: + version "0.3.0" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.3.0.tgz#275d8edaac4f1bb3326472089e7949c8394699dd" + dependencies: + lru-cache "2" + sigmund "~1.0.0" + +"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" dependencies: brace-expansion "^1.0.0" -minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.3.tgz#2a4e4090b96b2db06a9d7df01055a62a77c9b774" +minimatch@^2.0.1: + version "2.0.10" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" dependencies: brace-expansion "^1.0.0" @@ -2518,16 +2864,39 @@ minimist@0.0.8, minimist@~0.0.1: version "0.0.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" +minimist@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.2.0.tgz#4dffe525dae2b864c66c2e23c6271d7afdecefce" + minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" -"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: +mkdirp@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.3.0.tgz#1bbf5ab1ba827af23575143490426455f481fe1e" + +mkdirp@0.5.1, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" dependencies: minimist "0.0.8" +mocha@^2.3.3: + version "2.5.3" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-2.5.3.tgz#161be5bdeb496771eb9b35745050b622b5aefc58" + dependencies: + commander "2.3.0" + debug "2.2.0" + diff "1.4.0" + escape-string-regexp "1.0.2" + glob "3.2.11" + growl "1.9.2" + jade "0.26.3" + mkdirp "0.5.1" + supports-color "1.2.0" + to-iso-string "0.0.2" + modify-values@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" @@ -2540,7 +2909,16 @@ ms@0.7.2: version "0.7.2" resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765" -multipipe@^0.1.2: +multimatch@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" + dependencies: + array-differ "^1.0.0" + array-union "^1.0.1" + arrify "^1.0.0" + minimatch "^3.0.0" + +multipipe@^0.1.0, multipipe@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" dependencies: @@ -2576,6 +2954,16 @@ node-pre-gyp@^0.6.29: tar "~2.2.1" tar-pack "~3.3.0" +node-uuid@~1.4.0: + version "1.4.7" + resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.7.tgz#6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f" + +node.extend@~1.1.2: + version "1.1.6" + resolved "https://registry.yarnpkg.com/node.extend/-/node.extend-1.1.6.tgz#a7b882c82d6c93a4863a5504bd5de8ec86258b96" + dependencies: + is "^3.1.0" + nopt@~3.0.6: version "3.0.6" resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" @@ -2608,7 +2996,7 @@ number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" -oauth-sign@~0.8.1: +oauth-sign@~0.8.0, oauth-sign@~0.8.1: version "0.8.2" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" @@ -2616,10 +3004,14 @@ object-assign@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" -object-assign@^4.0.1, object-assign@^4.1.0: +object-assign@^4.0.0, object-assign@^4.0.1, object-assign@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" +object-keys@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" + object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -2673,6 +3065,13 @@ ordered-read-streams@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" +ordered-read-streams@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz#7137e69b3298bb342247a1bbee3881c80e2fd78b" + dependencies: + is-stream "^1.0.1" + readable-stream "^2.0.1" + os-homedir@^1.0.0, os-homedir@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -2754,12 +3153,15 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" -path@^0.12.7: - version "0.12.7" - resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" +pause-stream@0.0.11: + version "0.0.11" + resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" dependencies: - process "^0.11.1" - util "^0.10.3" + through "~2.3" + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" pify@^2.0.0, pify@^2.3.0: version "2.3.0" @@ -2816,10 +3218,6 @@ process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" -process@^0.11.1: - version "0.11.9" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.9.tgz#7bd5ad21aa6253e7da8682264f1e11d11c0318c1" - progress@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" @@ -2832,10 +3230,20 @@ q@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" +qs@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-3.1.0.tgz#d0e9ae745233a12dc43fb4f3055bba446261153c" + qs@~6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.0.tgz#f403b264f23bc01228c74131b407f18d5ea5d442" +queue@^3.0.10, queue@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/queue/-/queue-3.1.0.tgz#6c49d01f009e2256788789f2bffac6b8b9990585" + dependencies: + inherits "~2.0.0" + randomatic@^1.1.3: version "1.1.6" resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.6.tgz#110dcabff397e9dcff7c0789ccc0a49adf1ec5bb" @@ -2867,7 +3275,7 @@ read-pkg@^1.0.0, read-pkg@^1.1.0: normalize-package-data "^2.3.2" path-type "^1.0.0" -"readable-stream@>=1.0.33-1 <1.1.0-0": +"readable-stream@>=1.0.33-1 <1.1.0-0", readable-stream@~1.0.17, readable-stream@~1.0.26: version "1.0.34" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" dependencies: @@ -2876,7 +3284,7 @@ read-pkg@^1.0.0, read-pkg@^1.1.0: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2: +readable-stream@^2.0.0, "readable-stream@^2.0.0 || ^1.1.13", readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.1.5, readable-stream@^2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.2.tgz#a9e6fec3c7dda85f8bb1b3ba7028604556fc825e" dependencies: @@ -2998,7 +3406,7 @@ replace-ext@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" -request@^2.79.0: +request@^2.67.0, request@^2.79.0: version "2.79.0" resolved "https://registry.yarnpkg.com/request/-/request-2.79.0.tgz#4dfe5bf6be8b8cdc37fcf93e04b65577722710de" dependencies: @@ -3023,6 +3431,30 @@ request@^2.79.0: tunnel-agent "~0.4.1" uuid "^3.0.0" +request@~2.58.0: + version "2.58.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.58.0.tgz#b5f49c0b94aab7fad388612a1fb6ad03b6cc1580" + dependencies: + aws-sign2 "~0.5.0" + bl "~0.9.0" + caseless "~0.10.0" + combined-stream "~1.0.1" + extend "~2.0.1" + forever-agent "~0.6.0" + form-data "~1.0.0-rc1" + har-validator "^1.6.1" + hawk "~2.3.0" + http-signature "~0.11.0" + isstream "~0.1.1" + json-stringify-safe "~5.0.0" + mime-types "~2.0.1" + node-uuid "~1.4.0" + oauth-sign "~0.8.0" + qs "~3.1.0" + stringstream "~0.0.4" + tough-cookie ">=0.12.0" + tunnel-agent "~0.4.0" + require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -3139,12 +3571,24 @@ sntp@1.x.x: dependencies: hoek "2.x.x" +source-map-support@^0.3.2: + version "0.3.3" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.3.3.tgz#34900977d5ba3f07c7757ee72e73bb1a9b53754f" + dependencies: + source-map "0.1.32" + source-map-support@^0.4.2: version "0.4.11" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.11.tgz#647f939978b38535909530885303daf23279f322" dependencies: source-map "^0.5.3" +source-map@0.1.32: + version "0.1.32" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.32.tgz#c8b6c167797ba4740a8ea33252162ff08591b266" + dependencies: + amdefine ">=0.0.4" + source-map@^0.4.4: version "0.4.4" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" @@ -3179,6 +3623,18 @@ split2@^2.0.0: dependencies: through2 "^2.0.2" +split@0.2: + version "0.2.10" + resolved "https://registry.yarnpkg.com/split/-/split-0.2.10.tgz#67097c601d697ce1368f418f06cd201cf0521a57" + dependencies: + through "2" + +split@0.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" + dependencies: + through "2" + split@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/split/-/split-1.0.0.tgz#c4395ce683abcd254bc28fe1dabb6e5c27dcffae" @@ -3204,6 +3660,16 @@ sshpk@^1.7.0: jsbn "~0.1.0" tweetnacl "~0.14.0" +stat-mode@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" + +stream-combiner@~0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" + dependencies: + duplexer "~0.1.1" + stream-consume@~0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.0.tgz#a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f" @@ -3212,6 +3678,16 @@ stream-shift@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" +streamfilter@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.5.tgz#87507111beb8e298451717b511cfed8f002abf53" + dependencies: + readable-stream "^2.0.2" + +streamifier@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/streamifier/-/streamifier-0.1.1.tgz#97e98d8fa4d105d62a2691d1dc07e820db8dfc4f" + string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -3247,6 +3723,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-bom-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz#e7144398577d51a6bed0fa1994fa05f43fd988ee" + dependencies: + first-chunk-stream "^1.0.0" + strip-bom "^2.0.0" + strip-bom-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz#f87db5ef2613f6968aa545abfe1ec728b6a829ca" @@ -3285,6 +3768,10 @@ strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" +supports-color@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-1.2.0.tgz#ff1ed1e61169d06b3cf2d588e188b18d8847e17e" + supports-color@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-0.2.0.tgz#d92de2694eb3f67323973d7ae3d8b55b4c22190a" @@ -3317,6 +3804,14 @@ tar-pack@~3.3.0: tar "~2.2.1" uid-number "~0.0.6" +tar@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tar/-/tar-1.0.3.tgz#15bcdab244fa4add44e4244a0176edb8aa9a2b44" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + tar@~2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" @@ -3325,15 +3820,6 @@ tar@~2.2.1: fstream "^1.0.2" inherits "2" -ternary-stream@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/ternary-stream/-/ternary-stream-2.0.1.tgz#064e489b4b5bf60ba6a6b7bc7f2f5c274ecf8269" - dependencies: - duplexify "^3.5.0" - fork-stream "^0.0.4" - merge-stream "^1.0.0" - through2 "^2.0.1" - text-extensions@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.4.0.tgz#c385d2e80879fe6ef97893e1709d88d9453726e9" @@ -3342,21 +3828,42 @@ text-table@^0.2.0, text-table@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" -through2@^0.6.1: +through2-filter@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/through2-filter/-/through2-filter-2.0.0.tgz#60bc55a0dacb76085db1f9dae99ab43f83d622ec" + dependencies: + through2 "~2.0.0" + xtend "~4.0.0" + +through2@^0.5.0, through2@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.5.1.tgz#dfdd012eb9c700e2323fd334f38ac622ab372da7" + dependencies: + readable-stream "~1.0.17" + xtend "~3.0.0" + +through2@^0.6.0, through2@^0.6.1, through2@^0.6.3, through2@~0.6.5: version "0.6.5" resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" dependencies: readable-stream ">=1.0.33-1 <1.1.0-0" xtend ">=4.0.0 <4.1.0-0" -through2@^2.0.0, through2@^2.0.1, through2@^2.0.2: +through2@^2.0.0, through2@^2.0.1, through2@^2.0.2, through2@~2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" dependencies: readable-stream "^2.1.5" xtend "~4.0.1" -through@2, "through@>=2.2.7 <3", through@^2.3.6: +through2@~0.4.1: + version "0.4.2" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.4.2.tgz#dbf5866031151ec8352bb6c4db64a2292a840b9b" + dependencies: + readable-stream "~1.0.17" + xtend "~2.1.1" + +through@2, "through@>=2.2.7 <3", through@^2.3.6, through@~2.3, through@~2.3.1: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -3370,11 +3877,21 @@ time-stamp@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.0.1.tgz#9f4bd23559c9365966f3302dbba2b07c6b99b151" +to-absolute-glob@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz#1cdfa472a9ef50c239ee66999b662ca0eb39937f" + dependencies: + extend-shallow "^2.0.1" + to-fast-properties@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320" -tough-cookie@~2.3.0: +to-iso-string@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/to-iso-string/-/to-iso-string-0.0.2.tgz#4dc19e664dfccbe25bd8db508b00c6da158255d1" + +tough-cookie@>=0.12.0, tough-cookie@~2.3.0: version "2.3.2" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" dependencies: @@ -3392,7 +3909,7 @@ tryit@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" -tunnel-agent@~0.4.1: +tunnel-agent@~0.4.0, tunnel-agent@~0.4.1: version "0.4.3" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.4.3.tgz#6373db76909fe570e08d73583365ed828a74eeeb" @@ -3435,6 +3952,13 @@ unique-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" +unique-stream@^2.0.2: + version "2.2.1" + resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-2.2.1.tgz#5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369" + dependencies: + json-stable-stringify "^1.0.0" + through2-filter "^2.0.0" + user-home@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" @@ -3449,16 +3973,6 @@ util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" -util-extend@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" - -util@^0.10.3: - version "0.10.3" - resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" - dependencies: - inherits "2.0.1" - uuid@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.0.1.tgz#6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1" @@ -3469,6 +3983,10 @@ v8flags@^2.0.2: dependencies: user-home "^1.1.1" +vali-date@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" + validate-npm-package-license@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" @@ -3506,7 +4024,42 @@ vinyl-fs@^0.3.0: through2 "^0.6.1" vinyl "^0.4.0" -vinyl@^0.4.0: +vinyl-fs@^2.0.0, vinyl-fs@^2.4.3: + version "2.4.4" + resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-2.4.4.tgz#be6ff3270cb55dfd7d3063640de81f25d7532239" + dependencies: + duplexify "^3.2.0" + glob-stream "^5.3.2" + graceful-fs "^4.0.0" + gulp-sourcemaps "1.6.0" + is-valid-glob "^0.3.0" + lazystream "^1.0.0" + lodash.isequal "^4.0.0" + merge-stream "^1.0.0" + mkdirp "^0.5.0" + object-assign "^4.0.0" + readable-stream "^2.0.4" + strip-bom "^2.0.0" + strip-bom-stream "^1.0.0" + through2 "^2.0.0" + through2-filter "^2.0.0" + vali-date "^1.0.0" + vinyl "^1.0.0" + +vinyl-source-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vinyl-source-stream/-/vinyl-source-stream-1.1.0.tgz#44cbe5108205279deb0c5653c094a2887938b1ab" + dependencies: + through2 "^0.6.1" + vinyl "^0.4.3" + +vinyl@^0.2.1, vinyl@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.2.3.tgz#bca938209582ec5a49ad538a00fa1f125e513252" + dependencies: + clone-stats "~0.0.1" + +vinyl@^0.4.0, vinyl@^0.4.3, vinyl@^0.4.6, vinyl@~0.4.6: version "0.4.6" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" dependencies: @@ -3521,7 +4074,7 @@ vinyl@^0.5.0: clone-stats "^0.0.1" replace-ext "0.0.1" -vinyl@^1.1.0, vinyl@^1.2.0: +vinyl@^1.0.0, vinyl@^1.1.0, vinyl@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" dependencies: @@ -3529,6 +4082,24 @@ vinyl@^1.1.0, vinyl@^1.2.0: clone-stats "^0.0.1" replace-ext "0.0.1" +vscode@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/vscode/-/vscode-1.0.3.tgz#92e93f412082a73000ec8be86bb32d65d56de46b" + dependencies: + glob "^5.0.15" + gulp-chmod "^1.3.0" + gulp-filter "^4.0.0" + gulp-gunzip "0.0.3" + gulp-remote-src "^0.4.0" + gulp-symdest "^1.0.0" + gulp-untar "0.0.5" + gulp-vinyl-zip "^1.1.2" + mocha "^2.3.3" + request "^2.67.0" + semver "^5.1.0" + source-map-support "^0.3.2" + vinyl-source-stream "^1.1.0" + which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" @@ -3578,10 +4149,20 @@ write@^0.2.1: dependencies: mkdirp "^0.5.1" -"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: +"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.0, xtend@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" +xtend@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" + dependencies: + object-keys "~0.4.0" + +xtend@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-3.0.0.tgz#5cce7407baf642cba7becda568111c493f59665a" + y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" @@ -3618,3 +4199,16 @@ yargs@~3.10.0: cliui "^2.1.0" decamelize "^1.0.0" window-size "0.1.0" + +yauzl@^2.2.1: + version "2.7.0" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.7.0.tgz#e21d847868b496fc29eaec23ee87fdd33e9b2bce" + dependencies: + buffer-crc32 "~0.2.3" + fd-slicer "~1.0.1" + +yazl@^2.2.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.4.2.tgz#14cb19083e1e25a70092c1588aabe0f4e4dd4d88" + dependencies: + buffer-crc32 "~0.2.3"