mirror of
				https://github.com/ZetaKebab/kesper.git
				synced 2025-11-04 08:09:49 +00:00 
			
		
		
		
	Re-written gulpfile for gulp 4
- use the new, simpler format - sourcemap and watch support is built in, so these plugins can be removed - remove js filter - not sure what that did :/ - simplified task structure
This commit is contained in:
		
				
					committed by
					
						
						Hannah Wolfe
					
				
			
			
				
	
			
			
			
						parent
						
							3a40332515
						
					
				
				
					commit
					06c8020c16
				
			
							
								
								
									
										69
									
								
								gulpfile.js
									
									
									
									
									
								
							
							
						
						
									
										69
									
								
								gulpfile.js
									
									
									
									
									
								
							@@ -1,13 +1,11 @@
 | 
			
		||||
var gulp = require('gulp');
 | 
			
		||||
var pump = require('pump');
 | 
			
		||||
const {series, watch, src, dest} = require('gulp');
 | 
			
		||||
const pump = require('pump');
 | 
			
		||||
 | 
			
		||||
// gulp plugins and utils
 | 
			
		||||
var livereload = require('gulp-livereload');
 | 
			
		||||
var postcss = require('gulp-postcss');
 | 
			
		||||
var sourcemaps = require('gulp-sourcemaps');
 | 
			
		||||
var zip = require('gulp-zip');
 | 
			
		||||
var uglify = require('gulp-uglify');
 | 
			
		||||
var filter = require('gulp-filter');
 | 
			
		||||
var beeper = require('beeper');
 | 
			
		||||
 | 
			
		||||
// postcss plugins
 | 
			
		||||
@@ -17,26 +15,21 @@ var cssnano = require('cssnano');
 | 
			
		||||
var customProperties = require('postcss-custom-properties');
 | 
			
		||||
var easyimport = require('postcss-easy-import');
 | 
			
		||||
 | 
			
		||||
var nodemonServerInit = function () {
 | 
			
		||||
    livereload.listen(1234);
 | 
			
		||||
};
 | 
			
		||||
function serve(done) {
 | 
			
		||||
    livereload.listen();
 | 
			
		||||
    done();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function handleError(done) {
 | 
			
		||||
const handleError = (done) => {
 | 
			
		||||
    return function (err) {
 | 
			
		||||
        if (err) {
 | 
			
		||||
            beeper();
 | 
			
		||||
        }
 | 
			
		||||
        return done(err);
 | 
			
		||||
    };
 | 
			
		||||
}
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
gulp.task('build', ['css', 'js'], function (/* cb */) {
 | 
			
		||||
    return nodemonServerInit();
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
gulp.task('generate', ['css', 'js']);
 | 
			
		||||
 | 
			
		||||
gulp.task('css', function (done) {
 | 
			
		||||
function css(done) {
 | 
			
		||||
    var processors = [
 | 
			
		||||
        easyimport,
 | 
			
		||||
        customProperties,
 | 
			
		||||
@@ -46,50 +39,42 @@ gulp.task('css', function (done) {
 | 
			
		||||
    ];
 | 
			
		||||
 | 
			
		||||
    pump([
 | 
			
		||||
        gulp.src('assets/css/*.css'),
 | 
			
		||||
        sourcemaps.init(),
 | 
			
		||||
        src('assets/css/*.css', {sourcemaps: true}),
 | 
			
		||||
        postcss(processors),
 | 
			
		||||
        sourcemaps.write('.'),
 | 
			
		||||
        gulp.dest('assets/built/'),
 | 
			
		||||
        dest('assets/built/', {sourcemaps: '.'}),
 | 
			
		||||
        livereload()
 | 
			
		||||
    ], handleError(done));
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
gulp.task('js', function (done) {
 | 
			
		||||
    var jsFilter = filter(['**/*.js'], {restore: true});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function js(done) {
 | 
			
		||||
    pump([
 | 
			
		||||
        gulp.src('assets/js/*.js'),
 | 
			
		||||
        sourcemaps.init(),
 | 
			
		||||
        jsFilter,
 | 
			
		||||
        src('assets/js/*.js', {sourcemaps: true}),
 | 
			
		||||
        uglify(),
 | 
			
		||||
        jsFilter.restore,
 | 
			
		||||
        sourcemaps.write('.'),
 | 
			
		||||
        gulp.dest('assets/built/'),
 | 
			
		||||
        dest('assets/built/', {sourcemaps: '.'}),
 | 
			
		||||
        livereload()
 | 
			
		||||
    ], handleError(done));
 | 
			
		||||
});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
gulp.task('watch', function () {
 | 
			
		||||
    gulp.watch('assets/css/**', ['css']);
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
gulp.task('zip', ['css', 'js'], function (done) {
 | 
			
		||||
function zipper(done) {
 | 
			
		||||
    var targetDir = 'dist/';
 | 
			
		||||
    var themeName = require('./package.json').name;
 | 
			
		||||
    var filename = themeName + '.zip';
 | 
			
		||||
 | 
			
		||||
    pump([
 | 
			
		||||
        gulp.src([
 | 
			
		||||
        src([
 | 
			
		||||
            '**',
 | 
			
		||||
            '!node_modules', '!node_modules/**',
 | 
			
		||||
            '!dist', '!dist/**'
 | 
			
		||||
        ]),
 | 
			
		||||
        zip(filename),
 | 
			
		||||
        gulp.dest(targetDir)
 | 
			
		||||
        dest(targetDir)
 | 
			
		||||
    ], handleError(done));
 | 
			
		||||
});
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
gulp.task('default', ['build'], function () {
 | 
			
		||||
    gulp.start('watch');
 | 
			
		||||
});
 | 
			
		||||
const watcher = () => watch('assets/css/**', css);
 | 
			
		||||
const build = series(css, js);
 | 
			
		||||
const dev = series(build, serve, watcher);
 | 
			
		||||
 | 
			
		||||
exports.build = build;
 | 
			
		||||
exports.zip = series(build, zipper);
 | 
			
		||||
exports.default = dev;
 | 
			
		||||
 
 | 
			
		||||
@@ -48,12 +48,9 @@
 | 
			
		||||
        "cssnano": "4.1.10",
 | 
			
		||||
        "gscan": "2.2.1",
 | 
			
		||||
        "gulp": "4.0.0",
 | 
			
		||||
        "gulp-filter": "5.1.0",
 | 
			
		||||
        "gulp-livereload": "4.0.1",
 | 
			
		||||
        "gulp-postcss": "8.0.0",
 | 
			
		||||
        "gulp-sourcemaps": "2.6.5",
 | 
			
		||||
        "gulp-uglify": "3.0.2",
 | 
			
		||||
        "gulp-watch": "5.0.1",
 | 
			
		||||
        "gulp-zip": "4.2.0",
 | 
			
		||||
        "postcss-color-function": "4.0.1",
 | 
			
		||||
        "postcss-custom-properties": "8.0.9",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										446
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										446
									
								
								yarn.lock
									
									
									
									
									
								
							@@ -2,23 +2,6 @@
 | 
			
		||||
# yarn lockfile v1
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
"@gulp-sourcemaps/identity-map@1.X":
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz#1e6fe5d8027b1f285dc0d31762f566bccd73d5a9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    acorn "^5.0.3"
 | 
			
		||||
    css "^2.2.1"
 | 
			
		||||
    normalize-path "^2.1.1"
 | 
			
		||||
    source-map "^0.6.0"
 | 
			
		||||
    through2 "^2.0.3"
 | 
			
		||||
 | 
			
		||||
"@gulp-sourcemaps/map-sources@1.X":
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    normalize-path "^2.0.1"
 | 
			
		||||
    through2 "^2.0.3"
 | 
			
		||||
 | 
			
		||||
"@tryghost/extract-zip@1.6.6":
 | 
			
		||||
  version "1.6.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@tryghost/extract-zip/-/extract-zip-1.6.6.tgz#937e0e775fec6dea937ac49d73a068bcafb67f50"
 | 
			
		||||
@@ -43,10 +26,6 @@ accepts@~1.3.5:
 | 
			
		||||
    mime-types "~2.1.18"
 | 
			
		||||
    negotiator "0.6.1"
 | 
			
		||||
 | 
			
		||||
acorn@5.X, acorn@^5.0.3:
 | 
			
		||||
  version "5.7.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
 | 
			
		||||
 | 
			
		||||
ajv@^5.3.0:
 | 
			
		||||
  version "5.5.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
 | 
			
		||||
@@ -72,7 +51,7 @@ amdefine@>=0.0.4:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
 | 
			
		||||
 | 
			
		||||
ansi-colors@1.1.0, ansi-colors@^1.0.1:
 | 
			
		||||
ansi-colors@^1.0.1:
 | 
			
		||||
  version "1.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -114,13 +93,6 @@ ansi-wrap@0.1.0, ansi-wrap@^0.1.0:
 | 
			
		||||
  version "0.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
 | 
			
		||||
 | 
			
		||||
anymatch@^1.3.0:
 | 
			
		||||
  version "1.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    micromatch "^2.1.5"
 | 
			
		||||
    normalize-path "^2.0.0"
 | 
			
		||||
 | 
			
		||||
anymatch@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
 | 
			
		||||
@@ -166,12 +138,6 @@ arr-diff@^1.0.1:
 | 
			
		||||
    arr-flatten "^1.0.1"
 | 
			
		||||
    array-slice "^0.2.3"
 | 
			
		||||
 | 
			
		||||
arr-diff@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    arr-flatten "^1.0.1"
 | 
			
		||||
 | 
			
		||||
arr-diff@^4.0.0:
 | 
			
		||||
  version "4.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
 | 
			
		||||
@@ -200,10 +166,6 @@ arr-union@^3.1.0:
 | 
			
		||||
  version "3.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
 | 
			
		||||
 | 
			
		||||
array-differ@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031"
 | 
			
		||||
 | 
			
		||||
array-each@^1.0.0, array-each@^1.0.1:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f"
 | 
			
		||||
@@ -251,18 +213,10 @@ array-uniq@^1.0.1:
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
 | 
			
		||||
 | 
			
		||||
array-unique@^0.2.1:
 | 
			
		||||
  version "0.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
 | 
			
		||||
 | 
			
		||||
array-unique@^0.3.2:
 | 
			
		||||
  version "0.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
 | 
			
		||||
 | 
			
		||||
arrify@^1.0.0:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
 | 
			
		||||
 | 
			
		||||
asn1@~0.2.3:
 | 
			
		||||
  version "0.2.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
 | 
			
		||||
@@ -306,10 +260,6 @@ atob@^2.0.0:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.0.tgz#ab2b150e51d7b122b9efc8d7340c06b6c41076bc"
 | 
			
		||||
 | 
			
		||||
atob@^2.1.1:
 | 
			
		||||
  version "2.1.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
 | 
			
		||||
 | 
			
		||||
autoprefixer@9.4.10:
 | 
			
		||||
  version "9.4.10"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.10.tgz#e1be61fc728bacac8f4252ed242711ec0dcc6a7b"
 | 
			
		||||
@@ -416,14 +366,6 @@ brace-expansion@^1.1.7:
 | 
			
		||||
    balanced-match "^1.0.0"
 | 
			
		||||
    concat-map "0.0.1"
 | 
			
		||||
 | 
			
		||||
braces@^1.8.2:
 | 
			
		||||
  version "1.8.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    expand-range "^1.8.1"
 | 
			
		||||
    preserve "^0.2.0"
 | 
			
		||||
    repeat-element "^1.1.2"
 | 
			
		||||
 | 
			
		||||
braces@^2.3.1, braces@^2.3.2:
 | 
			
		||||
  version "2.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
 | 
			
		||||
@@ -629,15 +571,11 @@ clone-buffer@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58"
 | 
			
		||||
 | 
			
		||||
clone-stats@^0.0.1:
 | 
			
		||||
  version "0.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1"
 | 
			
		||||
 | 
			
		||||
clone-stats@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680"
 | 
			
		||||
 | 
			
		||||
clone@^1.0.0, clone@^1.0.2:
 | 
			
		||||
clone@^1.0.2:
 | 
			
		||||
  version "1.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
 | 
			
		||||
 | 
			
		||||
@@ -798,7 +736,7 @@ continuable-cache@^0.3.1:
 | 
			
		||||
  version "0.3.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f"
 | 
			
		||||
 | 
			
		||||
convert-source-map@1.X, convert-source-map@^1.5.0:
 | 
			
		||||
convert-source-map@^1.5.0:
 | 
			
		||||
  version "1.6.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -905,15 +843,6 @@ css-what@^2.1.2:
 | 
			
		||||
  version "2.1.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
 | 
			
		||||
 | 
			
		||||
css@2.X, css@^2.2.1:
 | 
			
		||||
  version "2.2.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    inherits "^2.0.3"
 | 
			
		||||
    source-map "^0.6.1"
 | 
			
		||||
    source-map-resolve "^0.5.2"
 | 
			
		||||
    urix "^0.1.0"
 | 
			
		||||
 | 
			
		||||
cssesc@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
 | 
			
		||||
@@ -998,26 +927,12 @@ dashdash@^1.12.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    assert-plus "^1.0.0"
 | 
			
		||||
 | 
			
		||||
debug-fabulous@1.X:
 | 
			
		||||
  version "1.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-1.1.0.tgz#af8a08632465224ef4174a9f06308c3c2a1ebc8e"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    debug "3.X"
 | 
			
		||||
    memoizee "0.4.X"
 | 
			
		||||
    object-assign "4.X"
 | 
			
		||||
 | 
			
		||||
debug@2.6.9, debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
 | 
			
		||||
  version "2.6.9"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ms "2.0.0"
 | 
			
		||||
 | 
			
		||||
debug@3.X:
 | 
			
		||||
  version "3.2.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ms "^2.1.1"
 | 
			
		||||
 | 
			
		||||
debug@^3.1.0:
 | 
			
		||||
  version "3.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
 | 
			
		||||
@@ -1099,10 +1014,6 @@ detect-libc@^1.0.2:
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
 | 
			
		||||
 | 
			
		||||
detect-newline@2.X:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
 | 
			
		||||
 | 
			
		||||
dicer@0.2.5:
 | 
			
		||||
  version "0.2.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz#5996c086bb33218c812c090bddc09cd12facb70f"
 | 
			
		||||
@@ -1230,7 +1141,7 @@ es-to-primitive@^1.2.0:
 | 
			
		||||
    is-date-object "^1.0.1"
 | 
			
		||||
    is-symbol "^1.0.2"
 | 
			
		||||
 | 
			
		||||
es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.45, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46:
 | 
			
		||||
es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14:
 | 
			
		||||
  version "0.10.48"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.48.tgz#9a0b31eeded39e64453bcedf6f9d50bbbfb43850"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -1253,7 +1164,7 @@ es6-symbol@^3.1.1, es6-symbol@~3.1.1:
 | 
			
		||||
    d "1"
 | 
			
		||||
    es5-ext "~0.10.14"
 | 
			
		||||
 | 
			
		||||
es6-weak-map@^2.0.1, es6-weak-map@^2.0.2:
 | 
			
		||||
es6-weak-map@^2.0.1:
 | 
			
		||||
  version "2.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -1278,13 +1189,6 @@ etag@~1.8.1:
 | 
			
		||||
  version "1.8.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
 | 
			
		||||
 | 
			
		||||
event-emitter@^0.3.5:
 | 
			
		||||
  version "0.3.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    d "1"
 | 
			
		||||
    es5-ext "~0.10.14"
 | 
			
		||||
 | 
			
		||||
event-stream@3.3.4:
 | 
			
		||||
  version "3.3.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571"
 | 
			
		||||
@@ -1297,12 +1201,6 @@ event-stream@3.3.4:
 | 
			
		||||
    stream-combiner "~0.0.4"
 | 
			
		||||
    through "~2.3.1"
 | 
			
		||||
 | 
			
		||||
expand-brackets@^0.1.4:
 | 
			
		||||
  version "0.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-posix-bracket "^0.1.0"
 | 
			
		||||
 | 
			
		||||
expand-brackets@^2.1.4:
 | 
			
		||||
  version "2.1.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
 | 
			
		||||
@@ -1315,12 +1213,6 @@ expand-brackets@^2.1.4:
 | 
			
		||||
    snapdragon "^0.8.1"
 | 
			
		||||
    to-regex "^3.0.1"
 | 
			
		||||
 | 
			
		||||
expand-range@^1.8.1:
 | 
			
		||||
  version "1.8.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    fill-range "^2.1.0"
 | 
			
		||||
 | 
			
		||||
expand-tilde@^2.0.0, expand-tilde@^2.0.2:
 | 
			
		||||
  version "2.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
 | 
			
		||||
@@ -1397,12 +1289,6 @@ extend@~3.0.2:
 | 
			
		||||
  version "3.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
 | 
			
		||||
 | 
			
		||||
extglob@^0.3.1:
 | 
			
		||||
  version "0.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-extglob "^1.0.0"
 | 
			
		||||
 | 
			
		||||
extglob@^2.0.4:
 | 
			
		||||
  version "2.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
 | 
			
		||||
@@ -1424,14 +1310,6 @@ extsprintf@^1.2.0:
 | 
			
		||||
  version "1.4.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
 | 
			
		||||
 | 
			
		||||
fancy-log@1.3.2:
 | 
			
		||||
  version "1.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.2.tgz#f41125e3d84f2e7d89a43d06d958c8f78be16be1"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-gray "^0.1.1"
 | 
			
		||||
    color-support "^1.1.3"
 | 
			
		||||
    time-stamp "^1.0.0"
 | 
			
		||||
 | 
			
		||||
fancy-log@^1.3.2:
 | 
			
		||||
  version "1.3.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7"
 | 
			
		||||
@@ -1461,20 +1339,6 @@ fd-slicer@~1.0.1:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    pend "~1.2.0"
 | 
			
		||||
 | 
			
		||||
filename-regex@^2.0.0:
 | 
			
		||||
  version "2.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
 | 
			
		||||
 | 
			
		||||
fill-range@^2.1.0:
 | 
			
		||||
  version "2.2.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-number "^2.1.0"
 | 
			
		||||
    isobject "^2.0.0"
 | 
			
		||||
    randomatic "^1.1.3"
 | 
			
		||||
    repeat-element "^1.1.2"
 | 
			
		||||
    repeat-string "^1.5.2"
 | 
			
		||||
 | 
			
		||||
fill-range@^4.0.0:
 | 
			
		||||
  version "4.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
 | 
			
		||||
@@ -1526,12 +1390,6 @@ fined@^1.0.1:
 | 
			
		||||
    object.pick "^1.2.0"
 | 
			
		||||
    parse-filepath "^1.0.1"
 | 
			
		||||
 | 
			
		||||
first-chunk-stream@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz#1bdecdb8e083c0664b91945581577a43a9f31d70"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    readable-stream "^2.0.2"
 | 
			
		||||
 | 
			
		||||
flagged-respawn@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.0.tgz#4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7"
 | 
			
		||||
@@ -1551,12 +1409,6 @@ for-in@^1.0.1, for-in@^1.0.2:
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
 | 
			
		||||
 | 
			
		||||
for-own@^0.1.4:
 | 
			
		||||
  version "0.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    for-in "^1.0.1"
 | 
			
		||||
 | 
			
		||||
for-own@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
 | 
			
		||||
@@ -1687,20 +1539,7 @@ ghost-ignition@2.9.2:
 | 
			
		||||
    prettyjson "^1.1.3"
 | 
			
		||||
    uuid "^3.0.0"
 | 
			
		||||
 | 
			
		||||
glob-base@^0.3.0:
 | 
			
		||||
  version "0.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    glob-parent "^2.0.0"
 | 
			
		||||
    is-glob "^2.0.0"
 | 
			
		||||
 | 
			
		||||
glob-parent@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-glob "^2.0.0"
 | 
			
		||||
 | 
			
		||||
glob-parent@^3.0.1, glob-parent@^3.1.0:
 | 
			
		||||
glob-parent@^3.1.0:
 | 
			
		||||
  version "3.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -1799,7 +1638,7 @@ glogg@^1.0.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    sparkles "^1.0.0"
 | 
			
		||||
 | 
			
		||||
graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11:
 | 
			
		||||
graceful-fs@^4.0.0, graceful-fs@^4.1.11:
 | 
			
		||||
  version "4.1.15"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
 | 
			
		||||
 | 
			
		||||
@@ -1850,14 +1689,6 @@ gulp-cli@^2.0.0:
 | 
			
		||||
    v8flags "^3.0.1"
 | 
			
		||||
    yargs "^7.1.0"
 | 
			
		||||
 | 
			
		||||
gulp-filter@5.1.0:
 | 
			
		||||
  version "5.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-filter/-/gulp-filter-5.1.0.tgz#a05e11affb07cf7dcf41a7de1cb7b63ac3783e73"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    multimatch "^2.0.0"
 | 
			
		||||
    plugin-error "^0.1.2"
 | 
			
		||||
    streamfilter "^1.0.5"
 | 
			
		||||
 | 
			
		||||
gulp-livereload@4.0.1:
 | 
			
		||||
  version "4.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-livereload/-/gulp-livereload-4.0.1.tgz#cb438e62f24363e26b44ddf36fd37c274b8b15ee"
 | 
			
		||||
@@ -1880,22 +1711,6 @@ gulp-postcss@8.0.0:
 | 
			
		||||
    postcss-load-config "^2.0.0"
 | 
			
		||||
    vinyl-sourcemaps-apply "^0.2.1"
 | 
			
		||||
 | 
			
		||||
gulp-sourcemaps@2.6.5:
 | 
			
		||||
  version "2.6.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.5.tgz#a3f002d87346d2c0f3aec36af7eb873f23de8ae6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@gulp-sourcemaps/identity-map" "1.X"
 | 
			
		||||
    "@gulp-sourcemaps/map-sources" "1.X"
 | 
			
		||||
    acorn "5.X"
 | 
			
		||||
    convert-source-map "1.X"
 | 
			
		||||
    css "2.X"
 | 
			
		||||
    debug-fabulous "1.X"
 | 
			
		||||
    detect-newline "2.X"
 | 
			
		||||
    graceful-fs "4.X"
 | 
			
		||||
    source-map "~0.6.0"
 | 
			
		||||
    strip-bom-string "1.X"
 | 
			
		||||
    through2 "2.X"
 | 
			
		||||
 | 
			
		||||
gulp-uglify@3.0.2:
 | 
			
		||||
  version "3.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-uglify/-/gulp-uglify-3.0.2.tgz#5f5b2e8337f879ca9dec971feb1b82a5a87850b0"
 | 
			
		||||
@@ -1911,23 +1726,6 @@ gulp-uglify@3.0.2:
 | 
			
		||||
    uglify-js "^3.0.5"
 | 
			
		||||
    vinyl-sourcemaps-apply "^0.2.0"
 | 
			
		||||
 | 
			
		||||
gulp-watch@5.0.1:
 | 
			
		||||
  version "5.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-watch/-/gulp-watch-5.0.1.tgz#83d378752f5bfb46da023e73c17ed1da7066215d"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-colors "1.1.0"
 | 
			
		||||
    anymatch "^1.3.0"
 | 
			
		||||
    chokidar "^2.0.0"
 | 
			
		||||
    fancy-log "1.3.2"
 | 
			
		||||
    glob-parent "^3.0.1"
 | 
			
		||||
    object-assign "^4.1.0"
 | 
			
		||||
    path-is-absolute "^1.0.1"
 | 
			
		||||
    plugin-error "1.0.1"
 | 
			
		||||
    readable-stream "^2.2.2"
 | 
			
		||||
    slash "^1.0.0"
 | 
			
		||||
    vinyl "^2.1.0"
 | 
			
		||||
    vinyl-file "^2.0.0"
 | 
			
		||||
 | 
			
		||||
gulp-zip@4.2.0:
 | 
			
		||||
  version "4.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/gulp-zip/-/gulp-zip-4.2.0.tgz#e25e738c41ad0795ad853d1d8aeb1744d2a4ca82"
 | 
			
		||||
@@ -2251,16 +2049,6 @@ is-directory@^0.3.1:
 | 
			
		||||
  version "0.3.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
 | 
			
		||||
 | 
			
		||||
is-dotfile@^1.0.0:
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
 | 
			
		||||
 | 
			
		||||
is-equal-shallow@^0.1.3:
 | 
			
		||||
  version "0.1.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-primitive "^2.0.0"
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
@@ -2271,10 +2059,6 @@ is-extendable@^1.0.1:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-plain-object "^2.0.4"
 | 
			
		||||
 | 
			
		||||
is-extglob@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
 | 
			
		||||
 | 
			
		||||
is-extglob@^2.1.0, is-extglob@^2.1.1:
 | 
			
		||||
  version "2.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
 | 
			
		||||
@@ -2285,12 +2069,6 @@ is-fullwidth-code-point@^1.0.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    number-is-nan "^1.0.0"
 | 
			
		||||
 | 
			
		||||
is-glob@^2.0.0, is-glob@^2.0.1:
 | 
			
		||||
  version "2.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-extglob "^1.0.0"
 | 
			
		||||
 | 
			
		||||
is-glob@^3.1.0:
 | 
			
		||||
  version "3.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
 | 
			
		||||
@@ -2307,12 +2085,6 @@ is-negated-glob@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2"
 | 
			
		||||
 | 
			
		||||
is-number@^2.1.0:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    kind-of "^3.0.2"
 | 
			
		||||
 | 
			
		||||
is-number@^3.0.0:
 | 
			
		||||
  version "3.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
 | 
			
		||||
@@ -2339,18 +2111,6 @@ is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    isobject "^3.0.1"
 | 
			
		||||
 | 
			
		||||
is-posix-bracket@^0.1.0:
 | 
			
		||||
  version "0.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
 | 
			
		||||
 | 
			
		||||
is-primitive@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
 | 
			
		||||
 | 
			
		||||
is-promise@^2.1:
 | 
			
		||||
  version "2.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
 | 
			
		||||
 | 
			
		||||
is-regex@^1.0.4:
 | 
			
		||||
  version "1.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
 | 
			
		||||
@@ -2612,12 +2372,6 @@ lru-cache@^3.2.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    pseudomap "^1.0.1"
 | 
			
		||||
 | 
			
		||||
lru-queue@0.1:
 | 
			
		||||
  version "0.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    es5-ext "~0.10.2"
 | 
			
		||||
 | 
			
		||||
make-error-cause@^1.1.1:
 | 
			
		||||
  version "1.2.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/make-error-cause/-/make-error-cause-1.2.2.tgz#df0388fcd0b37816dff0a5fb8108939777dcbc9d"
 | 
			
		||||
@@ -2665,19 +2419,6 @@ media-typer@0.3.0:
 | 
			
		||||
  version "0.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
 | 
			
		||||
 | 
			
		||||
memoizee@0.4.X:
 | 
			
		||||
  version "0.4.14"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.14.tgz#07a00f204699f9a95c2d9e77218271c7cd610d57"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    d "1"
 | 
			
		||||
    es5-ext "^0.10.45"
 | 
			
		||||
    es6-weak-map "^2.0.2"
 | 
			
		||||
    event-emitter "^0.3.5"
 | 
			
		||||
    is-promise "^2.1"
 | 
			
		||||
    lru-queue "0.1"
 | 
			
		||||
    next-tick "1"
 | 
			
		||||
    timers-ext "^0.1.5"
 | 
			
		||||
 | 
			
		||||
merge-descriptors@1.0.1:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
 | 
			
		||||
@@ -2686,24 +2427,6 @@ methods@~1.1.2:
 | 
			
		||||
  version "1.1.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
 | 
			
		||||
 | 
			
		||||
micromatch@^2.1.5:
 | 
			
		||||
  version "2.3.11"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    arr-diff "^2.0.0"
 | 
			
		||||
    array-unique "^0.2.1"
 | 
			
		||||
    braces "^1.8.2"
 | 
			
		||||
    expand-brackets "^0.1.4"
 | 
			
		||||
    extglob "^0.3.1"
 | 
			
		||||
    filename-regex "^2.0.0"
 | 
			
		||||
    is-extglob "^1.0.0"
 | 
			
		||||
    is-glob "^2.0.1"
 | 
			
		||||
    kind-of "^3.0.2"
 | 
			
		||||
    normalize-path "^2.0.1"
 | 
			
		||||
    object.omit "^2.0.0"
 | 
			
		||||
    parse-glob "^3.0.4"
 | 
			
		||||
    regex-cache "^0.4.2"
 | 
			
		||||
 | 
			
		||||
micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4:
 | 
			
		||||
  version "3.1.10"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
 | 
			
		||||
@@ -2746,7 +2469,7 @@ mime@1.4.1:
 | 
			
		||||
  version "1.4.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
 | 
			
		||||
 | 
			
		||||
"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4:
 | 
			
		||||
"minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4:
 | 
			
		||||
  version "3.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -2804,10 +2527,6 @@ ms@2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
 | 
			
		||||
 | 
			
		||||
ms@^2.1.1:
 | 
			
		||||
  version "2.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
 | 
			
		||||
 | 
			
		||||
multer@^1.1.0:
 | 
			
		||||
  version "1.3.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/multer/-/multer-1.3.1.tgz#c3fb3b35f50c7eefe873532f90d3dde02ce6e040"
 | 
			
		||||
@@ -2821,15 +2540,6 @@ multer@^1.1.0:
 | 
			
		||||
    type-is "^1.6.4"
 | 
			
		||||
    xtend "^4.0.0"
 | 
			
		||||
 | 
			
		||||
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"
 | 
			
		||||
 | 
			
		||||
mute-stdout@^1.0.0:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.1.tgz#acb0300eb4de23a7ddeec014e3e96044b3472331"
 | 
			
		||||
@@ -2947,7 +2657,7 @@ normalize-package-data@^2.3.2:
 | 
			
		||||
    semver "2 || 3 || 4 || 5"
 | 
			
		||||
    validate-npm-package-license "^3.0.1"
 | 
			
		||||
 | 
			
		||||
normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1:
 | 
			
		||||
normalize-path@^2.1.1:
 | 
			
		||||
  version "2.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
@@ -3009,14 +2719,14 @@ oauth-sign@~0.9.0:
 | 
			
		||||
  version "0.9.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
 | 
			
		||||
 | 
			
		||||
object-assign@4.X, 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-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:
 | 
			
		||||
  version "4.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
 | 
			
		||||
 | 
			
		||||
object-copy@^0.1.0:
 | 
			
		||||
  version "0.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
 | 
			
		||||
@@ -3067,13 +2777,6 @@ object.map@^1.0.0:
 | 
			
		||||
    for-own "^1.0.0"
 | 
			
		||||
    make-iterator "^1.0.0"
 | 
			
		||||
 | 
			
		||||
object.omit@^2.0.0:
 | 
			
		||||
  version "2.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    for-own "^0.1.4"
 | 
			
		||||
    is-extendable "^0.1.1"
 | 
			
		||||
 | 
			
		||||
object.pick@^1.2.0, object.pick@^1.3.0:
 | 
			
		||||
  version "1.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
 | 
			
		||||
@@ -3150,15 +2853,6 @@ parse-filepath@^1.0.1:
 | 
			
		||||
    map-cache "^0.2.0"
 | 
			
		||||
    path-root "^0.1.1"
 | 
			
		||||
 | 
			
		||||
parse-glob@^3.0.4:
 | 
			
		||||
  version "3.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    glob-base "^0.3.0"
 | 
			
		||||
    is-dotfile "^1.0.0"
 | 
			
		||||
    is-extglob "^1.0.0"
 | 
			
		||||
    is-glob "^2.0.0"
 | 
			
		||||
 | 
			
		||||
parse-json@^2.2.0:
 | 
			
		||||
  version "2.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
 | 
			
		||||
@@ -3198,7 +2892,7 @@ path-exists@^2.0.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    pinkie-promise "^2.0.0"
 | 
			
		||||
 | 
			
		||||
path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
 | 
			
		||||
path-is-absolute@^1.0.0:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
 | 
			
		||||
 | 
			
		||||
@@ -3264,15 +2958,6 @@ pinkie@^2.0.0:
 | 
			
		||||
  version "2.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
 | 
			
		||||
 | 
			
		||||
plugin-error@1.0.1, plugin-error@^1.0.1:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-colors "^1.0.1"
 | 
			
		||||
    arr-diff "^4.0.0"
 | 
			
		||||
    arr-union "^3.1.0"
 | 
			
		||||
    extend-shallow "^3.0.2"
 | 
			
		||||
 | 
			
		||||
plugin-error@^0.1.2:
 | 
			
		||||
  version "0.1.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace"
 | 
			
		||||
@@ -3283,6 +2968,15 @@ plugin-error@^0.1.2:
 | 
			
		||||
    arr-union "^2.0.1"
 | 
			
		||||
    extend-shallow "^1.1.2"
 | 
			
		||||
 | 
			
		||||
plugin-error@^1.0.1:
 | 
			
		||||
  version "1.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-colors "^1.0.1"
 | 
			
		||||
    arr-diff "^4.0.0"
 | 
			
		||||
    arr-union "^3.1.0"
 | 
			
		||||
    extend-shallow "^3.0.2"
 | 
			
		||||
 | 
			
		||||
posix-character-classes@^0.1.0:
 | 
			
		||||
  version "0.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
 | 
			
		||||
@@ -3606,10 +3300,6 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.5:
 | 
			
		||||
    source-map "^0.6.1"
 | 
			
		||||
    supports-color "^6.1.0"
 | 
			
		||||
 | 
			
		||||
preserve@^0.2.0:
 | 
			
		||||
  version "0.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
 | 
			
		||||
 | 
			
		||||
pretty-hrtime@^1.0.0:
 | 
			
		||||
  version "1.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
 | 
			
		||||
@@ -3690,13 +3380,6 @@ qs@~6.5.2:
 | 
			
		||||
  version "6.5.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
 | 
			
		||||
 | 
			
		||||
randomatic@^1.1.3:
 | 
			
		||||
  version "1.1.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-number "^3.0.0"
 | 
			
		||||
    kind-of "^4.0.0"
 | 
			
		||||
 | 
			
		||||
range-parser@~1.2.0:
 | 
			
		||||
  version "1.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
 | 
			
		||||
@@ -3791,12 +3474,6 @@ rechoir@^0.6.2:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    resolve "^1.1.6"
 | 
			
		||||
 | 
			
		||||
regex-cache@^0.4.2:
 | 
			
		||||
  version "0.4.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-equal-shallow "^0.1.3"
 | 
			
		||||
 | 
			
		||||
regex-not@^1.0.0, regex-not@^1.0.2:
 | 
			
		||||
  version "1.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
 | 
			
		||||
@@ -3831,10 +3508,6 @@ repeat-string@^1.5.2, repeat-string@^1.6.1:
 | 
			
		||||
  version "1.6.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
 | 
			
		||||
 | 
			
		||||
replace-ext@0.0.1:
 | 
			
		||||
  version "0.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924"
 | 
			
		||||
 | 
			
		||||
replace-ext@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
 | 
			
		||||
@@ -4078,10 +3751,6 @@ simple-swizzle@^0.2.2:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    is-arrayish "^0.3.1"
 | 
			
		||||
 | 
			
		||||
slash@^1.0.0:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
 | 
			
		||||
 | 
			
		||||
snapdragon-node@^2.0.1:
 | 
			
		||||
  version "2.1.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
 | 
			
		||||
@@ -4119,16 +3788,6 @@ source-map-resolve@^0.5.0:
 | 
			
		||||
    source-map-url "^0.4.0"
 | 
			
		||||
    urix "^0.1.0"
 | 
			
		||||
 | 
			
		||||
source-map-resolve@^0.5.2:
 | 
			
		||||
  version "0.5.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    atob "^2.1.1"
 | 
			
		||||
    decode-uri-component "^0.2.0"
 | 
			
		||||
    resolve-url "^0.2.1"
 | 
			
		||||
    source-map-url "^0.4.0"
 | 
			
		||||
    urix "^0.1.0"
 | 
			
		||||
 | 
			
		||||
source-map-url@^0.4.0:
 | 
			
		||||
  version "0.4.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
 | 
			
		||||
@@ -4143,7 +3802,7 @@ source-map@^0.5.1, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1:
 | 
			
		||||
  version "0.5.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
 | 
			
		||||
 | 
			
		||||
source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1:
 | 
			
		||||
source-map@^0.6.1, source-map@~0.6.1:
 | 
			
		||||
  version "0.6.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
 | 
			
		||||
 | 
			
		||||
@@ -4240,12 +3899,6 @@ 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.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/streamfilter/-/streamfilter-1.0.7.tgz#ae3e64522aa5a35c061fd17f67620c7653c643c9"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    readable-stream "^2.0.2"
 | 
			
		||||
 | 
			
		||||
streamsearch@0.1.2:
 | 
			
		||||
  version "0.1.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-0.1.2.tgz#808b9d0e56fc273d809ba57338e929919a1a9f1a"
 | 
			
		||||
@@ -4278,17 +3931,6 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ansi-regex "^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"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    first-chunk-stream "^2.0.0"
 | 
			
		||||
    strip-bom "^2.0.0"
 | 
			
		||||
 | 
			
		||||
strip-bom-string@1.X:
 | 
			
		||||
  version "1.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
 | 
			
		||||
 | 
			
		||||
strip-bom@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
 | 
			
		||||
@@ -4368,13 +4010,6 @@ through2-filter@^3.0.0:
 | 
			
		||||
    through2 "~2.0.0"
 | 
			
		||||
    xtend "~4.0.0"
 | 
			
		||||
 | 
			
		||||
through2@2.X, through2@^2.0.3, through2@~2.0.0:
 | 
			
		||||
  version "2.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    readable-stream "~2.3.6"
 | 
			
		||||
    xtend "~4.0.1"
 | 
			
		||||
 | 
			
		||||
through2@^2.0.0, through2@^2.0.1:
 | 
			
		||||
  version "2.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be"
 | 
			
		||||
@@ -4382,6 +4017,13 @@ through2@^2.0.0, through2@^2.0.1:
 | 
			
		||||
    readable-stream "^2.1.5"
 | 
			
		||||
    xtend "~4.0.1"
 | 
			
		||||
 | 
			
		||||
through2@^2.0.3, through2@~2.0.0:
 | 
			
		||||
  version "2.0.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    readable-stream "~2.3.6"
 | 
			
		||||
    xtend "~4.0.1"
 | 
			
		||||
 | 
			
		||||
through@2, through@~2.3, through@~2.3.1:
 | 
			
		||||
  version "2.3.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
 | 
			
		||||
@@ -4390,13 +4032,6 @@ time-stamp@^1.0.0:
 | 
			
		||||
  version "1.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
 | 
			
		||||
 | 
			
		||||
timers-ext@^0.1.5:
 | 
			
		||||
  version "0.1.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    es5-ext "~0.10.46"
 | 
			
		||||
    next-tick "1"
 | 
			
		||||
 | 
			
		||||
timsort@^0.3.0:
 | 
			
		||||
  version "0.3.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
 | 
			
		||||
@@ -4634,17 +4269,6 @@ verror@1.10.0:
 | 
			
		||||
    core-util-is "1.0.2"
 | 
			
		||||
    extsprintf "^1.2.0"
 | 
			
		||||
 | 
			
		||||
vinyl-file@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vinyl-file/-/vinyl-file-2.0.0.tgz#a7ebf5ffbefda1b7d18d140fcb07b223efb6751a"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    graceful-fs "^4.1.2"
 | 
			
		||||
    pify "^2.3.0"
 | 
			
		||||
    pinkie-promise "^2.0.0"
 | 
			
		||||
    strip-bom "^2.0.0"
 | 
			
		||||
    strip-bom-stream "^2.0.0"
 | 
			
		||||
    vinyl "^1.1.0"
 | 
			
		||||
 | 
			
		||||
vinyl-fs@^3.0.0:
 | 
			
		||||
  version "3.0.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7"
 | 
			
		||||
@@ -4685,14 +4309,6 @@ vinyl-sourcemaps-apply@^0.2.0, vinyl-sourcemaps-apply@^0.2.1:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    source-map "^0.5.1"
 | 
			
		||||
 | 
			
		||||
vinyl@^1.1.0:
 | 
			
		||||
  version "1.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884"
 | 
			
		||||
  dependencies:
 | 
			
		||||
    clone "^1.0.0"
 | 
			
		||||
    clone-stats "^0.0.1"
 | 
			
		||||
    replace-ext "0.0.1"
 | 
			
		||||
 | 
			
		||||
vinyl@^2.0.0, vinyl@^2.1.0, vinyl@^2.2.0:
 | 
			
		||||
  version "2.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user