├── .gitignore ├── .travis.yml ├── README.md ├── index.js ├── package.json ├── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "8" 4 | - "6" 5 | - "4" 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gulp-buble [![Build Status](https://travis-ci.org/TrySound/gulp-buble.svg?branch=master)](https://travis-ci.org/TrySound/gulp-buble) 2 | 3 | > Compile ES2015 with [buble](https://gitlab.com/Rich-Harris/buble) 4 | 5 | *Issues with the output should be reported on the buble [issue tracker](https://gitlab.com/Rich-Harris/buble/issues).* 6 | 7 | 8 | ## Install 9 | 10 | ``` 11 | $ npm i gulp-buble -D 12 | ``` 13 | 14 | 15 | ## Usage 16 | 17 | ```js 18 | const gulp = require('gulp'); 19 | const buble = require('gulp-buble'); 20 | 21 | gulp.task('default', function () { 22 | return gulp.src('src/app.js') 23 | .pipe(buble()) 24 | .pipe(gulp.dest('dist')); 25 | }); 26 | ``` 27 | 28 | It is possible to pass transforms option as the first argument to `buble()`, to tansform only some specific features of ES2015. For example: 29 | 30 | ```js 31 | const gulp = require('gulp'); 32 | const buble = require('gulp-buble'); 33 | 34 | gulp.task('default', function () { 35 | return gulp.src('src/app.js') 36 | .pipe(buble({ 37 | transforms: { 38 | arrow: true, 39 | generator: false 40 | } 41 | })) 42 | .pipe(gulp.dest('dist')); 43 | }); 44 | ``` 45 | 46 | For complete list of buble options, please consult [buble guide](https://buble.surge.sh/guide/#using-the-javascript-api) 47 | 48 | 49 | ## Source Maps 50 | 51 | Use [gulp-sourcemaps](https://github.com/floridoo/gulp-sourcemaps) like this: 52 | 53 | ```js 54 | const gulp = require('gulp'); 55 | const sourcemaps = require('gulp-sourcemaps'); 56 | const buble = require('gulp-buble'); 57 | const concat = require('gulp-concat'); 58 | 59 | gulp.task('default', () => 60 | gulp.src('src/**/*.js') 61 | .pipe(sourcemaps.init()) 62 | .pipe(buble()) 63 | .pipe(concat('app.js')) 64 | .pipe(sourcemaps.write('.')) 65 | .pipe(gulp.dest('dist')) 66 | ); 67 | ``` 68 | 69 | 70 | ## License 71 | 72 | MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru) 73 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var Transform = require('readable-stream').Transform; 2 | var applySourceMap = require('vinyl-sourcemaps-apply'); 3 | var buble = require('buble').transform; 4 | var PluginError = require('plugin-error'); 5 | 6 | module.exports = function (options) { 7 | return new Transform({ 8 | objectMode: true, 9 | transform: function (file, enc, cb) { 10 | if (file.isNull()) { 11 | cb(null, file); 12 | return; 13 | } 14 | if (file.isStream()) { 15 | cb(new PluginError('gulp-buble', 'Streaming not supported')); 16 | return; 17 | } 18 | 19 | options = options || {}; 20 | options.file = file.path; 21 | options.source = file.path; 22 | options.includeContent = true; 23 | 24 | var result; 25 | try { 26 | result = buble(file.contents.toString(), options); 27 | } catch (e) { 28 | cb(new PluginError('gulp-buble', e.toString())); 29 | return; 30 | } 31 | 32 | file.contents = new Buffer(result.code); 33 | 34 | if (file.sourceMap) { 35 | applySourceMap(file, result.map); 36 | } 37 | 38 | cb(null, file); 39 | } 40 | }); 41 | }; 42 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gulp-buble", 3 | "version": "0.9.0", 4 | "description": "Compile ES2015 with buble", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "mocha", 8 | "posttest": "eslint ." 9 | }, 10 | "eslintConfig": { 11 | "extends": "postcss/es5" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/TrySound/gulp-buble.git" 16 | }, 17 | "keywords": [ 18 | "gulp", 19 | "buble", 20 | "babel", 21 | "es2015", 22 | "es6" 23 | ], 24 | "author": "Bogdan Chadkin ", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/TrySound/gulp-buble/issues" 28 | }, 29 | "homepage": "https://github.com/TrySound/gulp-buble", 30 | "dependencies": { 31 | "buble": "^0.18.0", 32 | "plugin-error": "^0.1.2", 33 | "readable-stream": "^2.1.0", 34 | "vinyl": "^2.1.0", 35 | "vinyl-sourcemaps-apply": "^0.2.1" 36 | }, 37 | "devDependencies": { 38 | "eslint": "^4.14.0", 39 | "eslint-config-postcss": "^2.0.2", 40 | "gulp-sourcemaps": "^2.0.0-alpha", 41 | "mocha": "^4.1.0" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | /* eslint-env mocha */ 2 | var path = require('path'); 3 | var assert = require('assert'); 4 | var File = require('vinyl'); 5 | var sourceMaps = require('gulp-sourcemaps'); 6 | var buble = require('./'); 7 | 8 | it('should compile es2015', function (cb) { 9 | var stream = buble(); 10 | 11 | stream.on('data', function (file) { 12 | var contents = file.contents.toString(); 13 | assert(/function/.test(contents)); 14 | assert.equal(file.relative, 'fixture.js'); 15 | cb(); 16 | }); 17 | 18 | stream.write(new File({ 19 | cwd: __dirname, 20 | base: path.resolve('fixture'), 21 | path: path.resolve('fixture/fixture.js'), 22 | contents: new Buffer('() => {}') 23 | })); 24 | 25 | stream.end(); 26 | }); 27 | 28 | it('should fail on syntax error', function (cb) { 29 | var stream = buble(); 30 | 31 | stream.on('error', function (err) { 32 | assert.equal(err.message, [ 33 | 'SyntaxError: Unexpected token (1:7)', 34 | '1 : () => {', 35 | ' ^' 36 | ].join('\n')); 37 | cb(); 38 | }); 39 | 40 | stream.write(new File({ 41 | cwd: __dirname, 42 | base: path.resolve('fixture'), 43 | path: path.resolve('fixture/fixture.js'), 44 | contents: new Buffer('() => {') 45 | })); 46 | 47 | stream.end(); 48 | }); 49 | 50 | it('should generate source maps', function (cb) { 51 | var init = sourceMaps.init(); 52 | var write = sourceMaps.write(); 53 | 54 | init 55 | .pipe(buble()) 56 | .pipe(write); 57 | 58 | write.on('data', function (file) { 59 | assert.equal(file.sourceMap.mappings, 'SAAA,GAAG,AAAG'); 60 | var contents = file.contents.toString(); 61 | assert(/function/.test(contents)); 62 | assert(/sourceMappingURL=data:application\/json;/.test(contents)); 63 | cb(); 64 | }); 65 | 66 | init.write(new File({ 67 | cwd: __dirname, 68 | base: path.resolve('fixture'), 69 | path: path.resolve('fixture/fixture.js'), 70 | contents: new Buffer('() => {}'), 71 | sourceMap: '' 72 | })); 73 | 74 | init.end(); 75 | }); 76 | 77 | it('should read upstream source maps', function (cb) { 78 | var testFile; 79 | var stream = buble(); 80 | var write = sourceMaps.write(); 81 | var sourcesContent = [ 82 | '() => {}', 83 | '() => {\n\treturn true;\n}' 84 | ]; 85 | 86 | stream.pipe(write); 87 | 88 | write.on('data', function (file) { 89 | assert.equal(file.sourceMap.sourcesContent[0], sourcesContent[0]); 90 | assert.equal(file.sourceMap.sourcesContent[1], sourcesContent[1]); 91 | cb(); 92 | }); 93 | 94 | testFile = new File({ 95 | cwd: __dirname, 96 | base: path.resolve('fixture'), 97 | path: path.resolve('fixture/fixture.js'), 98 | contents: new Buffer(sourcesContent[1]) 99 | }); 100 | testFile.sourceMap = { 101 | version: 3, 102 | file: 'fixture.js', 103 | sources: ['prev.js'], 104 | names: [], 105 | mappings: 'AAAA,YAAM', 106 | sourcesContent: [sourcesContent[0]] 107 | }; 108 | stream.write(testFile, testFile.sourceMap); 109 | 110 | stream.end(); 111 | }); 112 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@gulp-sourcemaps/identity-map@1.X": 6 | version "1.0.1" 7 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.1.tgz#cfa23bc5840f9104ce32a65e74db7e7a974bbee1" 8 | dependencies: 9 | acorn "^5.0.3" 10 | css "^2.2.1" 11 | normalize-path "^2.1.1" 12 | source-map "^0.5.6" 13 | through2 "^2.0.3" 14 | 15 | "@gulp-sourcemaps/map-sources@1.X": 16 | version "1.0.0" 17 | resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda" 18 | dependencies: 19 | normalize-path "^2.0.1" 20 | through2 "^2.0.3" 21 | 22 | acorn-jsx@^3.0.0, acorn-jsx@^3.0.1: 23 | version "3.0.1" 24 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" 25 | dependencies: 26 | acorn "^3.0.4" 27 | 28 | acorn5-object-spread@^4.0.0: 29 | version "4.0.0" 30 | resolved "https://registry.yarnpkg.com/acorn5-object-spread/-/acorn5-object-spread-4.0.0.tgz#d5758081eed97121ab0be47e31caaef2aa399697" 31 | dependencies: 32 | acorn "^5.1.2" 33 | 34 | acorn@5.X, acorn@^5.0.3, acorn@^5.1.2, acorn@^5.2.1: 35 | version "5.3.0" 36 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" 37 | 38 | acorn@^3.0.4: 39 | version "3.3.0" 40 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" 41 | 42 | ajv-keywords@^2.1.0: 43 | version "2.1.1" 44 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 45 | 46 | ajv@^5.2.3, ajv@^5.3.0: 47 | version "5.5.2" 48 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 49 | dependencies: 50 | co "^4.6.0" 51 | fast-deep-equal "^1.0.0" 52 | fast-json-stable-stringify "^2.0.0" 53 | json-schema-traverse "^0.3.0" 54 | 55 | amdefine@>=0.0.4: 56 | version "1.0.1" 57 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 58 | 59 | ansi-cyan@^0.1.1: 60 | version "0.1.1" 61 | resolved "https://registry.yarnpkg.com/ansi-cyan/-/ansi-cyan-0.1.1.tgz#538ae528af8982f28ae30d86f2f17456d2609873" 62 | dependencies: 63 | ansi-wrap "0.1.0" 64 | 65 | ansi-escapes@^3.0.0: 66 | version "3.0.0" 67 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 68 | 69 | ansi-red@^0.1.1: 70 | version "0.1.1" 71 | resolved "https://registry.yarnpkg.com/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c" 72 | dependencies: 73 | ansi-wrap "0.1.0" 74 | 75 | ansi-regex@^2.0.0: 76 | version "2.1.1" 77 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 78 | 79 | ansi-regex@^3.0.0: 80 | version "3.0.0" 81 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 82 | 83 | ansi-styles@^2.2.1: 84 | version "2.2.1" 85 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 86 | 87 | ansi-styles@^3.1.0: 88 | version "3.2.0" 89 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 90 | dependencies: 91 | color-convert "^1.9.0" 92 | 93 | ansi-wrap@0.1.0: 94 | version "0.1.0" 95 | resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" 96 | 97 | argparse@^1.0.7: 98 | version "1.0.9" 99 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 100 | dependencies: 101 | sprintf-js "~1.0.2" 102 | 103 | arr-diff@^1.0.1: 104 | version "1.1.0" 105 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-1.1.0.tgz#687c32758163588fef7de7b36fabe495eb1a399a" 106 | dependencies: 107 | arr-flatten "^1.0.1" 108 | array-slice "^0.2.3" 109 | 110 | arr-flatten@^1.0.1: 111 | version "1.1.0" 112 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 113 | 114 | arr-union@^2.0.1: 115 | version "2.1.0" 116 | resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-2.1.0.tgz#20f9eab5ec70f5c7d215b1077b1c39161d292c7d" 117 | 118 | array-slice@^0.2.3: 119 | version "0.2.3" 120 | resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-0.2.3.tgz#dd3cfb80ed7973a75117cdac69b0b99ec86186f5" 121 | 122 | array-union@^1.0.1: 123 | version "1.0.2" 124 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" 125 | dependencies: 126 | array-uniq "^1.0.1" 127 | 128 | array-uniq@^1.0.1: 129 | version "1.0.3" 130 | resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" 131 | 132 | arrify@^1.0.0: 133 | version "1.0.1" 134 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 135 | 136 | atob@~1.1.0: 137 | version "1.1.3" 138 | resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773" 139 | 140 | babel-code-frame@^6.22.0: 141 | version "6.26.0" 142 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 143 | dependencies: 144 | chalk "^1.1.3" 145 | esutils "^2.0.2" 146 | js-tokens "^3.0.2" 147 | 148 | balanced-match@^1.0.0: 149 | version "1.0.0" 150 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 151 | 152 | brace-expansion@^1.1.7: 153 | version "1.1.8" 154 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 155 | dependencies: 156 | balanced-match "^1.0.0" 157 | concat-map "0.0.1" 158 | 159 | browser-stdout@1.3.0: 160 | version "1.3.0" 161 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f" 162 | 163 | buble@^0.18.0: 164 | version "0.18.0" 165 | resolved "https://registry.yarnpkg.com/buble/-/buble-0.18.0.tgz#63b338b8248c474b46fd3e3546560ae08d8abe91" 166 | dependencies: 167 | acorn "^5.1.2" 168 | acorn-jsx "^3.0.1" 169 | acorn5-object-spread "^4.0.0" 170 | chalk "^2.1.0" 171 | magic-string "^0.22.4" 172 | minimist "^1.2.0" 173 | os-homedir "^1.0.1" 174 | vlq "^0.2.2" 175 | 176 | caller-path@^0.1.0: 177 | version "0.1.0" 178 | resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" 179 | dependencies: 180 | callsites "^0.2.0" 181 | 182 | callsites@^0.2.0: 183 | version "0.2.0" 184 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" 185 | 186 | chalk@^1.1.3: 187 | version "1.1.3" 188 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 189 | dependencies: 190 | ansi-styles "^2.2.1" 191 | escape-string-regexp "^1.0.2" 192 | has-ansi "^2.0.0" 193 | strip-ansi "^3.0.0" 194 | supports-color "^2.0.0" 195 | 196 | chalk@^2.0.0, chalk@^2.1.0: 197 | version "2.3.0" 198 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" 199 | dependencies: 200 | ansi-styles "^3.1.0" 201 | escape-string-regexp "^1.0.5" 202 | supports-color "^4.0.0" 203 | 204 | chardet@^0.4.0: 205 | version "0.4.2" 206 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" 207 | 208 | circular-json@^0.3.1: 209 | version "0.3.3" 210 | resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" 211 | 212 | cli-cursor@^2.1.0: 213 | version "2.1.0" 214 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 215 | dependencies: 216 | restore-cursor "^2.0.0" 217 | 218 | cli-width@^2.0.0: 219 | version "2.2.0" 220 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 221 | 222 | clone-buffer@^1.0.0: 223 | version "1.0.0" 224 | resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" 225 | 226 | clone-stats@^1.0.0: 227 | version "1.0.0" 228 | resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" 229 | 230 | clone@^2.1.1: 231 | version "2.1.1" 232 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 233 | 234 | cloneable-readable@^1.0.0: 235 | version "1.0.0" 236 | resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.0.0.tgz#a6290d413f217a61232f95e458ff38418cfb0117" 237 | dependencies: 238 | inherits "^2.0.1" 239 | process-nextick-args "^1.0.6" 240 | through2 "^2.0.1" 241 | 242 | co@^4.6.0: 243 | version "4.6.0" 244 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 245 | 246 | color-convert@^1.9.0: 247 | version "1.9.1" 248 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.1.tgz#c1261107aeb2f294ebffec9ed9ecad529a6097ed" 249 | dependencies: 250 | color-name "^1.1.1" 251 | 252 | color-name@^1.1.1: 253 | version "1.1.3" 254 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 255 | 256 | commander@2.11.0: 257 | version "2.11.0" 258 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 259 | 260 | concat-map@0.0.1: 261 | version "0.0.1" 262 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 263 | 264 | concat-stream@^1.6.0: 265 | version "1.6.0" 266 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 267 | dependencies: 268 | inherits "^2.0.3" 269 | readable-stream "^2.2.2" 270 | typedarray "^0.0.6" 271 | 272 | convert-source-map@1.X: 273 | version "1.5.1" 274 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5" 275 | 276 | core-util-is@~1.0.0: 277 | version "1.0.2" 278 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 279 | 280 | cross-spawn@^5.1.0: 281 | version "5.1.0" 282 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 283 | dependencies: 284 | lru-cache "^4.0.1" 285 | shebang-command "^1.2.0" 286 | which "^1.2.9" 287 | 288 | css@2.X, css@^2.2.1: 289 | version "2.2.1" 290 | resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc" 291 | dependencies: 292 | inherits "^2.0.1" 293 | source-map "^0.1.38" 294 | source-map-resolve "^0.3.0" 295 | urix "^0.1.0" 296 | 297 | d@1: 298 | version "1.0.0" 299 | resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" 300 | dependencies: 301 | es5-ext "^0.10.9" 302 | 303 | debug-fabulous@1.X: 304 | version "1.0.0" 305 | resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-1.0.0.tgz#57f6648646097b1b0849dcda0017362c1ec00f8b" 306 | dependencies: 307 | debug "3.X" 308 | memoizee "0.4.X" 309 | object-assign "4.X" 310 | 311 | debug@3.1.0, debug@3.X, debug@^3.1.0: 312 | version "3.1.0" 313 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" 314 | dependencies: 315 | ms "2.0.0" 316 | 317 | deep-is@~0.1.3: 318 | version "0.1.3" 319 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 320 | 321 | del@^2.0.2: 322 | version "2.2.2" 323 | resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" 324 | dependencies: 325 | globby "^5.0.0" 326 | is-path-cwd "^1.0.0" 327 | is-path-in-cwd "^1.0.0" 328 | object-assign "^4.0.1" 329 | pify "^2.0.0" 330 | pinkie-promise "^2.0.0" 331 | rimraf "^2.2.8" 332 | 333 | detect-newline@2.X: 334 | version "2.1.0" 335 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" 336 | 337 | diff@3.3.1: 338 | version "3.3.1" 339 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 340 | 341 | doctrine@^2.0.2: 342 | version "2.0.2" 343 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.2.tgz#68f96ce8efc56cc42651f1faadb4f175273b0075" 344 | dependencies: 345 | esutils "^2.0.2" 346 | 347 | es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.35, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2: 348 | version "0.10.37" 349 | resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.37.tgz#0ee741d148b80069ba27d020393756af257defc3" 350 | dependencies: 351 | es6-iterator "~2.0.1" 352 | es6-symbol "~3.1.1" 353 | 354 | es6-iterator@^2.0.1, es6-iterator@~2.0.1: 355 | version "2.0.3" 356 | resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 357 | dependencies: 358 | d "1" 359 | es5-ext "^0.10.35" 360 | es6-symbol "^3.1.1" 361 | 362 | es6-symbol@^3.1.1, es6-symbol@~3.1.1: 363 | version "3.1.1" 364 | resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" 365 | dependencies: 366 | d "1" 367 | es5-ext "~0.10.14" 368 | 369 | es6-weak-map@^2.0.2: 370 | version "2.0.2" 371 | resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" 372 | dependencies: 373 | d "1" 374 | es5-ext "^0.10.14" 375 | es6-iterator "^2.0.1" 376 | es6-symbol "^3.1.1" 377 | 378 | escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 379 | version "1.0.5" 380 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 381 | 382 | eslint-config-postcss@^2.0.2: 383 | version "2.0.2" 384 | resolved "https://registry.yarnpkg.com/eslint-config-postcss/-/eslint-config-postcss-2.0.2.tgz#cae1c6093ced7850894a5b85fbe1d1e232b72afb" 385 | 386 | eslint-scope@^3.7.1: 387 | version "3.7.1" 388 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" 389 | dependencies: 390 | esrecurse "^4.1.0" 391 | estraverse "^4.1.1" 392 | 393 | eslint-visitor-keys@^1.0.0: 394 | version "1.0.0" 395 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" 396 | 397 | eslint@^4.14.0: 398 | version "4.14.0" 399 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.14.0.tgz#96609768d1dd23304faba2d94b7fefe5a5447a82" 400 | dependencies: 401 | ajv "^5.3.0" 402 | babel-code-frame "^6.22.0" 403 | chalk "^2.1.0" 404 | concat-stream "^1.6.0" 405 | cross-spawn "^5.1.0" 406 | debug "^3.1.0" 407 | doctrine "^2.0.2" 408 | eslint-scope "^3.7.1" 409 | eslint-visitor-keys "^1.0.0" 410 | espree "^3.5.2" 411 | esquery "^1.0.0" 412 | esutils "^2.0.2" 413 | file-entry-cache "^2.0.0" 414 | functional-red-black-tree "^1.0.1" 415 | glob "^7.1.2" 416 | globals "^11.0.1" 417 | ignore "^3.3.3" 418 | imurmurhash "^0.1.4" 419 | inquirer "^3.0.6" 420 | is-resolvable "^1.0.0" 421 | js-yaml "^3.9.1" 422 | json-stable-stringify-without-jsonify "^1.0.1" 423 | levn "^0.3.0" 424 | lodash "^4.17.4" 425 | minimatch "^3.0.2" 426 | mkdirp "^0.5.1" 427 | natural-compare "^1.4.0" 428 | optionator "^0.8.2" 429 | path-is-inside "^1.0.2" 430 | pluralize "^7.0.0" 431 | progress "^2.0.0" 432 | require-uncached "^1.0.3" 433 | semver "^5.3.0" 434 | strip-ansi "^4.0.0" 435 | strip-json-comments "~2.0.1" 436 | table "^4.0.1" 437 | text-table "~0.2.0" 438 | 439 | espree@^3.5.2: 440 | version "3.5.2" 441 | resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" 442 | dependencies: 443 | acorn "^5.2.1" 444 | acorn-jsx "^3.0.0" 445 | 446 | esprima@^4.0.0: 447 | version "4.0.0" 448 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 449 | 450 | esquery@^1.0.0: 451 | version "1.0.0" 452 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" 453 | dependencies: 454 | estraverse "^4.0.0" 455 | 456 | esrecurse@^4.1.0: 457 | version "4.2.0" 458 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" 459 | dependencies: 460 | estraverse "^4.1.0" 461 | object-assign "^4.0.1" 462 | 463 | estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: 464 | version "4.2.0" 465 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" 466 | 467 | esutils@^2.0.2: 468 | version "2.0.2" 469 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 470 | 471 | event-emitter@^0.3.5: 472 | version "0.3.5" 473 | resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 474 | dependencies: 475 | d "1" 476 | es5-ext "~0.10.14" 477 | 478 | extend-shallow@^1.1.2: 479 | version "1.1.4" 480 | resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-1.1.4.tgz#19d6bf94dfc09d76ba711f39b872d21ff4dd9071" 481 | dependencies: 482 | kind-of "^1.1.0" 483 | 484 | external-editor@^2.0.4: 485 | version "2.1.0" 486 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.1.0.tgz#3d026a21b7f95b5726387d4200ac160d372c3b48" 487 | dependencies: 488 | chardet "^0.4.0" 489 | iconv-lite "^0.4.17" 490 | tmp "^0.0.33" 491 | 492 | fast-deep-equal@^1.0.0: 493 | version "1.0.0" 494 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 495 | 496 | fast-json-stable-stringify@^2.0.0: 497 | version "2.0.0" 498 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 499 | 500 | fast-levenshtein@~2.0.4: 501 | version "2.0.6" 502 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 503 | 504 | figures@^2.0.0: 505 | version "2.0.0" 506 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 507 | dependencies: 508 | escape-string-regexp "^1.0.5" 509 | 510 | file-entry-cache@^2.0.0: 511 | version "2.0.0" 512 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" 513 | dependencies: 514 | flat-cache "^1.2.1" 515 | object-assign "^4.0.1" 516 | 517 | flat-cache@^1.2.1: 518 | version "1.3.0" 519 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.0.tgz#d3030b32b38154f4e3b7e9c709f490f7ef97c481" 520 | dependencies: 521 | circular-json "^0.3.1" 522 | del "^2.0.2" 523 | graceful-fs "^4.1.2" 524 | write "^0.2.1" 525 | 526 | fs.realpath@^1.0.0: 527 | version "1.0.0" 528 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 529 | 530 | functional-red-black-tree@^1.0.1: 531 | version "1.0.1" 532 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 533 | 534 | glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2: 535 | version "7.1.2" 536 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 537 | dependencies: 538 | fs.realpath "^1.0.0" 539 | inflight "^1.0.4" 540 | inherits "2" 541 | minimatch "^3.0.4" 542 | once "^1.3.0" 543 | path-is-absolute "^1.0.0" 544 | 545 | globals@^11.0.1: 546 | version "11.1.0" 547 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.1.0.tgz#632644457f5f0e3ae711807183700ebf2e4633e4" 548 | 549 | globby@^5.0.0: 550 | version "5.0.0" 551 | resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" 552 | dependencies: 553 | array-union "^1.0.1" 554 | arrify "^1.0.0" 555 | glob "^7.0.3" 556 | object-assign "^4.0.1" 557 | pify "^2.0.0" 558 | pinkie-promise "^2.0.0" 559 | 560 | graceful-fs@4.X, graceful-fs@^4.1.2: 561 | version "4.1.11" 562 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 563 | 564 | growl@1.10.3: 565 | version "1.10.3" 566 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.3.tgz#1926ba90cf3edfe2adb4927f5880bc22c66c790f" 567 | 568 | gulp-sourcemaps@^2.0.0-alpha: 569 | version "2.6.2" 570 | resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.2.tgz#4f41c72b35a7ea06b666d2e3f57917e2c0e71c4e" 571 | dependencies: 572 | "@gulp-sourcemaps/identity-map" "1.X" 573 | "@gulp-sourcemaps/map-sources" "1.X" 574 | acorn "5.X" 575 | convert-source-map "1.X" 576 | css "2.X" 577 | debug-fabulous "1.X" 578 | detect-newline "2.X" 579 | graceful-fs "4.X" 580 | source-map "0.X" 581 | strip-bom-string "1.X" 582 | through2 "2.X" 583 | 584 | has-ansi@^2.0.0: 585 | version "2.0.0" 586 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 587 | dependencies: 588 | ansi-regex "^2.0.0" 589 | 590 | has-flag@^2.0.0: 591 | version "2.0.0" 592 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 593 | 594 | he@1.1.1: 595 | version "1.1.1" 596 | resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 597 | 598 | iconv-lite@^0.4.17: 599 | version "0.4.19" 600 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 601 | 602 | ignore@^3.3.3: 603 | version "3.3.7" 604 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.7.tgz#612289bfb3c220e186a58118618d5be8c1bab021" 605 | 606 | imurmurhash@^0.1.4: 607 | version "0.1.4" 608 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 609 | 610 | inflight@^1.0.4: 611 | version "1.0.6" 612 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 613 | dependencies: 614 | once "^1.3.0" 615 | wrappy "1" 616 | 617 | inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3: 618 | version "2.0.3" 619 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 620 | 621 | inquirer@^3.0.6: 622 | version "3.3.0" 623 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 624 | dependencies: 625 | ansi-escapes "^3.0.0" 626 | chalk "^2.0.0" 627 | cli-cursor "^2.1.0" 628 | cli-width "^2.0.0" 629 | external-editor "^2.0.4" 630 | figures "^2.0.0" 631 | lodash "^4.3.0" 632 | mute-stream "0.0.7" 633 | run-async "^2.2.0" 634 | rx-lite "^4.0.8" 635 | rx-lite-aggregates "^4.0.8" 636 | string-width "^2.1.0" 637 | strip-ansi "^4.0.0" 638 | through "^2.3.6" 639 | 640 | is-fullwidth-code-point@^2.0.0: 641 | version "2.0.0" 642 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 643 | 644 | is-path-cwd@^1.0.0: 645 | version "1.0.0" 646 | resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" 647 | 648 | is-path-in-cwd@^1.0.0: 649 | version "1.0.0" 650 | resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" 651 | dependencies: 652 | is-path-inside "^1.0.0" 653 | 654 | is-path-inside@^1.0.0: 655 | version "1.0.1" 656 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" 657 | dependencies: 658 | path-is-inside "^1.0.1" 659 | 660 | is-promise@^2.1, is-promise@^2.1.0: 661 | version "2.1.0" 662 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 663 | 664 | is-resolvable@^1.0.0: 665 | version "1.0.1" 666 | resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.1.tgz#acca1cd36dbe44b974b924321555a70ba03b1cf4" 667 | 668 | isarray@~1.0.0: 669 | version "1.0.0" 670 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 671 | 672 | isexe@^2.0.0: 673 | version "2.0.0" 674 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 675 | 676 | js-tokens@^3.0.2: 677 | version "3.0.2" 678 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 679 | 680 | js-yaml@^3.9.1: 681 | version "3.10.0" 682 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 683 | dependencies: 684 | argparse "^1.0.7" 685 | esprima "^4.0.0" 686 | 687 | json-schema-traverse@^0.3.0: 688 | version "0.3.1" 689 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 690 | 691 | json-stable-stringify-without-jsonify@^1.0.1: 692 | version "1.0.1" 693 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 694 | 695 | kind-of@^1.1.0: 696 | version "1.1.0" 697 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-1.1.0.tgz#140a3d2d41a36d2efcfa9377b62c24f8495a5c44" 698 | 699 | levn@^0.3.0, levn@~0.3.0: 700 | version "0.3.0" 701 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 702 | dependencies: 703 | prelude-ls "~1.1.2" 704 | type-check "~0.3.2" 705 | 706 | lodash@^4.17.4, lodash@^4.3.0: 707 | version "4.17.4" 708 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 709 | 710 | lru-cache@^4.0.1: 711 | version "4.1.1" 712 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 713 | dependencies: 714 | pseudomap "^1.0.2" 715 | yallist "^2.1.2" 716 | 717 | lru-queue@0.1: 718 | version "0.1.0" 719 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 720 | dependencies: 721 | es5-ext "~0.10.2" 722 | 723 | magic-string@^0.22.4: 724 | version "0.22.4" 725 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.22.4.tgz#31039b4e40366395618c1d6cf8193c53917475ff" 726 | dependencies: 727 | vlq "^0.2.1" 728 | 729 | memoizee@0.4.X: 730 | version "0.4.11" 731 | resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.11.tgz#bde9817663c9e40fdb2a4ea1c367296087ae8c8f" 732 | dependencies: 733 | d "1" 734 | es5-ext "^0.10.30" 735 | es6-weak-map "^2.0.2" 736 | event-emitter "^0.3.5" 737 | is-promise "^2.1" 738 | lru-queue "0.1" 739 | next-tick "1" 740 | timers-ext "^0.1.2" 741 | 742 | mimic-fn@^1.0.0: 743 | version "1.1.0" 744 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 745 | 746 | minimatch@^3.0.2, minimatch@^3.0.4: 747 | version "3.0.4" 748 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 749 | dependencies: 750 | brace-expansion "^1.1.7" 751 | 752 | minimist@0.0.8: 753 | version "0.0.8" 754 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 755 | 756 | minimist@^1.2.0: 757 | version "1.2.0" 758 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 759 | 760 | mkdirp@0.5.1, mkdirp@^0.5.1: 761 | version "0.5.1" 762 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 763 | dependencies: 764 | minimist "0.0.8" 765 | 766 | mocha@^4.1.0: 767 | version "4.1.0" 768 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-4.1.0.tgz#7d86cfbcf35cb829e2754c32e17355ec05338794" 769 | dependencies: 770 | browser-stdout "1.3.0" 771 | commander "2.11.0" 772 | debug "3.1.0" 773 | diff "3.3.1" 774 | escape-string-regexp "1.0.5" 775 | glob "7.1.2" 776 | growl "1.10.3" 777 | he "1.1.1" 778 | mkdirp "0.5.1" 779 | supports-color "4.4.0" 780 | 781 | ms@2.0.0: 782 | version "2.0.0" 783 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 784 | 785 | mute-stream@0.0.7: 786 | version "0.0.7" 787 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 788 | 789 | natural-compare@^1.4.0: 790 | version "1.4.0" 791 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 792 | 793 | next-tick@1: 794 | version "1.0.0" 795 | resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 796 | 797 | normalize-path@^2.0.1, normalize-path@^2.1.1: 798 | version "2.1.1" 799 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 800 | dependencies: 801 | remove-trailing-separator "^1.0.1" 802 | 803 | object-assign@4.X, object-assign@^4.0.1: 804 | version "4.1.1" 805 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 806 | 807 | once@^1.3.0: 808 | version "1.4.0" 809 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 810 | dependencies: 811 | wrappy "1" 812 | 813 | onetime@^2.0.0: 814 | version "2.0.1" 815 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 816 | dependencies: 817 | mimic-fn "^1.0.0" 818 | 819 | optionator@^0.8.2: 820 | version "0.8.2" 821 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" 822 | dependencies: 823 | deep-is "~0.1.3" 824 | fast-levenshtein "~2.0.4" 825 | levn "~0.3.0" 826 | prelude-ls "~1.1.2" 827 | type-check "~0.3.2" 828 | wordwrap "~1.0.0" 829 | 830 | os-homedir@^1.0.1: 831 | version "1.0.2" 832 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 833 | 834 | os-tmpdir@~1.0.2: 835 | version "1.0.2" 836 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 837 | 838 | path-is-absolute@^1.0.0: 839 | version "1.0.1" 840 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 841 | 842 | path-is-inside@^1.0.1, path-is-inside@^1.0.2: 843 | version "1.0.2" 844 | resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 845 | 846 | pify@^2.0.0: 847 | version "2.3.0" 848 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 849 | 850 | pinkie-promise@^2.0.0: 851 | version "2.0.1" 852 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 853 | dependencies: 854 | pinkie "^2.0.0" 855 | 856 | pinkie@^2.0.0: 857 | version "2.0.4" 858 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 859 | 860 | plugin-error@^0.1.2: 861 | version "0.1.2" 862 | resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-0.1.2.tgz#3b9bb3335ccf00f425e07437e19276967da47ace" 863 | dependencies: 864 | ansi-cyan "^0.1.1" 865 | ansi-red "^0.1.1" 866 | arr-diff "^1.0.1" 867 | arr-union "^2.0.1" 868 | extend-shallow "^1.1.2" 869 | 870 | pluralize@^7.0.0: 871 | version "7.0.0" 872 | resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" 873 | 874 | prelude-ls@~1.1.2: 875 | version "1.1.2" 876 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 877 | 878 | process-nextick-args@^1.0.6, process-nextick-args@~1.0.6: 879 | version "1.0.7" 880 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 881 | 882 | progress@^2.0.0: 883 | version "2.0.0" 884 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.0.tgz#8a1be366bf8fc23db2bd23f10c6fe920b4389d1f" 885 | 886 | pseudomap@^1.0.2: 887 | version "1.0.2" 888 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 889 | 890 | readable-stream@^2.1.0, readable-stream@^2.1.5, readable-stream@^2.2.2: 891 | version "2.3.3" 892 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 893 | dependencies: 894 | core-util-is "~1.0.0" 895 | inherits "~2.0.3" 896 | isarray "~1.0.0" 897 | process-nextick-args "~1.0.6" 898 | safe-buffer "~5.1.1" 899 | string_decoder "~1.0.3" 900 | util-deprecate "~1.0.1" 901 | 902 | remove-trailing-separator@^1.0.1: 903 | version "1.1.0" 904 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 905 | 906 | replace-ext@^1.0.0: 907 | version "1.0.0" 908 | resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" 909 | 910 | require-uncached@^1.0.3: 911 | version "1.0.3" 912 | resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" 913 | dependencies: 914 | caller-path "^0.1.0" 915 | resolve-from "^1.0.0" 916 | 917 | resolve-from@^1.0.0: 918 | version "1.0.1" 919 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" 920 | 921 | resolve-url@~0.2.1: 922 | version "0.2.1" 923 | resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 924 | 925 | restore-cursor@^2.0.0: 926 | version "2.0.0" 927 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 928 | dependencies: 929 | onetime "^2.0.0" 930 | signal-exit "^3.0.2" 931 | 932 | rimraf@^2.2.8: 933 | version "2.6.2" 934 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 935 | dependencies: 936 | glob "^7.0.5" 937 | 938 | run-async@^2.2.0: 939 | version "2.3.0" 940 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 941 | dependencies: 942 | is-promise "^2.1.0" 943 | 944 | rx-lite-aggregates@^4.0.8: 945 | version "4.0.8" 946 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 947 | dependencies: 948 | rx-lite "*" 949 | 950 | rx-lite@*, rx-lite@^4.0.8: 951 | version "4.0.8" 952 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 953 | 954 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 955 | version "5.1.1" 956 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 957 | 958 | semver@^5.3.0: 959 | version "5.4.1" 960 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 961 | 962 | shebang-command@^1.2.0: 963 | version "1.2.0" 964 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 965 | dependencies: 966 | shebang-regex "^1.0.0" 967 | 968 | shebang-regex@^1.0.0: 969 | version "1.0.0" 970 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 971 | 972 | signal-exit@^3.0.2: 973 | version "3.0.2" 974 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 975 | 976 | slice-ansi@1.0.0: 977 | version "1.0.0" 978 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" 979 | dependencies: 980 | is-fullwidth-code-point "^2.0.0" 981 | 982 | source-map-resolve@^0.3.0: 983 | version "0.3.1" 984 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.3.1.tgz#610f6122a445b8dd51535a2a71b783dfc1248761" 985 | dependencies: 986 | atob "~1.1.0" 987 | resolve-url "~0.2.1" 988 | source-map-url "~0.3.0" 989 | urix "~0.1.0" 990 | 991 | source-map-url@~0.3.0: 992 | version "0.3.0" 993 | resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9" 994 | 995 | source-map@0.X: 996 | version "0.6.1" 997 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 998 | 999 | source-map@^0.1.38: 1000 | version "0.1.43" 1001 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.1.43.tgz#c24bc146ca517c1471f5dacbe2571b2b7f9e3346" 1002 | dependencies: 1003 | amdefine ">=0.0.4" 1004 | 1005 | source-map@^0.5.1, source-map@^0.5.6: 1006 | version "0.5.7" 1007 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1008 | 1009 | sprintf-js@~1.0.2: 1010 | version "1.0.3" 1011 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1012 | 1013 | string-width@^2.1.0, string-width@^2.1.1: 1014 | version "2.1.1" 1015 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1016 | dependencies: 1017 | is-fullwidth-code-point "^2.0.0" 1018 | strip-ansi "^4.0.0" 1019 | 1020 | string_decoder@~1.0.3: 1021 | version "1.0.3" 1022 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 1023 | dependencies: 1024 | safe-buffer "~5.1.0" 1025 | 1026 | strip-ansi@^3.0.0: 1027 | version "3.0.1" 1028 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 1029 | dependencies: 1030 | ansi-regex "^2.0.0" 1031 | 1032 | strip-ansi@^4.0.0: 1033 | version "4.0.0" 1034 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1035 | dependencies: 1036 | ansi-regex "^3.0.0" 1037 | 1038 | strip-bom-string@1.X: 1039 | version "1.0.0" 1040 | resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" 1041 | 1042 | strip-json-comments@~2.0.1: 1043 | version "2.0.1" 1044 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1045 | 1046 | supports-color@4.4.0: 1047 | version "4.4.0" 1048 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 1049 | dependencies: 1050 | has-flag "^2.0.0" 1051 | 1052 | supports-color@^2.0.0: 1053 | version "2.0.0" 1054 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 1055 | 1056 | supports-color@^4.0.0: 1057 | version "4.5.0" 1058 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" 1059 | dependencies: 1060 | has-flag "^2.0.0" 1061 | 1062 | table@^4.0.1: 1063 | version "4.0.2" 1064 | resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" 1065 | dependencies: 1066 | ajv "^5.2.3" 1067 | ajv-keywords "^2.1.0" 1068 | chalk "^2.1.0" 1069 | lodash "^4.17.4" 1070 | slice-ansi "1.0.0" 1071 | string-width "^2.1.1" 1072 | 1073 | text-table@~0.2.0: 1074 | version "0.2.0" 1075 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1076 | 1077 | through2@2.X, through2@^2.0.1, through2@^2.0.3: 1078 | version "2.0.3" 1079 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 1080 | dependencies: 1081 | readable-stream "^2.1.5" 1082 | xtend "~4.0.1" 1083 | 1084 | through@^2.3.6: 1085 | version "2.3.8" 1086 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1087 | 1088 | timers-ext@^0.1.2: 1089 | version "0.1.2" 1090 | resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204" 1091 | dependencies: 1092 | es5-ext "~0.10.14" 1093 | next-tick "1" 1094 | 1095 | tmp@^0.0.33: 1096 | version "0.0.33" 1097 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 1098 | dependencies: 1099 | os-tmpdir "~1.0.2" 1100 | 1101 | type-check@~0.3.2: 1102 | version "0.3.2" 1103 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 1104 | dependencies: 1105 | prelude-ls "~1.1.2" 1106 | 1107 | typedarray@^0.0.6: 1108 | version "0.0.6" 1109 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 1110 | 1111 | urix@^0.1.0, urix@~0.1.0: 1112 | version "0.1.0" 1113 | resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 1114 | 1115 | util-deprecate@~1.0.1: 1116 | version "1.0.2" 1117 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1118 | 1119 | vinyl-sourcemaps-apply@^0.2.1: 1120 | version "0.2.1" 1121 | resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" 1122 | dependencies: 1123 | source-map "^0.5.1" 1124 | 1125 | vinyl@^2.1.0: 1126 | version "2.1.0" 1127 | resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.1.0.tgz#021f9c2cf951d6b939943c89eb5ee5add4fd924c" 1128 | dependencies: 1129 | clone "^2.1.1" 1130 | clone-buffer "^1.0.0" 1131 | clone-stats "^1.0.0" 1132 | cloneable-readable "^1.0.0" 1133 | remove-trailing-separator "^1.0.1" 1134 | replace-ext "^1.0.0" 1135 | 1136 | vlq@^0.2.1, vlq@^0.2.2: 1137 | version "0.2.3" 1138 | resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" 1139 | 1140 | which@^1.2.9: 1141 | version "1.3.0" 1142 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 1143 | dependencies: 1144 | isexe "^2.0.0" 1145 | 1146 | wordwrap@~1.0.0: 1147 | version "1.0.0" 1148 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" 1149 | 1150 | wrappy@1: 1151 | version "1.0.2" 1152 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1153 | 1154 | write@^0.2.1: 1155 | version "0.2.1" 1156 | resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" 1157 | dependencies: 1158 | mkdirp "^0.5.1" 1159 | 1160 | xtend@~4.0.1: 1161 | version "4.0.1" 1162 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 1163 | 1164 | yallist@^2.1.2: 1165 | version "2.1.2" 1166 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1167 | --------------------------------------------------------------------------------