GoogleChrome / rendertron

A Headless Chrome rendering solution
https://render-tron.appspot.com/
Apache License 2.0
5.94k stars 809 forks source link

[3.0.0] npm run build fails #457

Closed N0153 closed 4 years ago

N0153 commented 4 years ago

Hi,

I followed these instructions to try to build the project:

git clone https://github.com/GoogleChrome/rendertron.git
cd rendertron
npm install
npm run build

After launching npm run build I keep getting the following error message:

> rendertron@3.0.0 build /<some_dirs>/rendertron
> tsc

src/renderer.ts:220:42 - error TS2769: No overload matches this call.
  Overload 1 of 3, '(options?: Base64ScreenShotOptions | undefined): Promise<string>', gave the following error.
    Argument of type 'object & { type: string; encoding: string; }' is not assignable to parameter of type 'Base64ScreenShotOptions | undefined'.
      Type 'object & { type: string; encoding: string; }' is not assignable to type 'Base64ScreenShotOptions'.
        Types of property 'encoding' are incompatible.
          Type 'string' is not assignable to type '"base64"'.
  Overload 2 of 3, '(options?: BinaryScreenShotOptions | undefined): Promise<Buffer>', gave the following error.
    Argument of type 'object & { type: string; encoding: string; }' is not assignable to parameter of type 'BinaryScreenShotOptions | undefined'.
      Type 'object & { type: string; encoding: string; }' is not assignable to type 'BinaryScreenShotOptions'.
        Types of property 'encoding' are incompatible.
          Type 'string' is not assignable to type '"binary" | undefined'.
  Overload 3 of 3, '(options?: ScreenshotOptions | undefined): Promise<string | Buffer>', gave the following error.
    Argument of type 'object & { type: string; encoding: string; }' is not assignable to parameter of type 'ScreenshotOptions | undefined'.
      Type 'object & { type: string; encoding: string; }' is not assignable to type 'ScreenshotOptions'.
        Types of property 'type' are incompatible.
          Type 'string' is not assignable to type '"jpeg" | "png" | undefined'.

220     const buffer = await page.screenshot(screenshotOptions) as Buffer;
                                             ~~~~~~~~~~~~~~~~~

Found 1 error.

npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! rendertron@3.0.0 build: `tsc`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the rendertron@3.0.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /<some_dirs>/.npm/_logs/2020-09-16T09_14_38_037Z-debug.log

You will find the output of npm list and tsc --version below: npm list:

rendertron@3.0.0 /<some_dirs>/rendertron
├─┬ @google-cloud/datastore@2.0.0
│ ├── @google-cloud/projectify@0.3.3
│ ├── @google-cloud/promisify@0.3.1
│ ├── arrify@1.0.1
│ ├─┬ concat-stream@1.6.2
│ │ ├── buffer-from@1.1.1
│ │ ├── inherits@2.0.4
│ │ ├─┬ readable-stream@2.3.7
│ │ │ ├── core-util-is@1.0.2
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── isarray@1.0.0
│ │ │ ├── process-nextick-args@2.0.1
│ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ ├─┬ string_decoder@1.1.1
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ └── util-deprecate@1.0.2
│ │ └── typedarray@0.0.6
│ ├─┬ create-error-class@3.0.2
│ │ └── capture-stack-trace@1.0.1
│ ├── extend@3.0.2
│ ├─┬ google-auth-library@2.0.2
│ │ ├─┬ axios@0.18.1
│ │ │ ├─┬ follow-redirects@1.5.10
│ │ │ │ └── debug@3.1.0 deduped
│ │ │ └── is-buffer@2.0.4
│ │ ├─┬ gcp-metadata@0.7.0
│ │ │ ├── axios@0.18.1 deduped
│ │ │ ├── extend@3.0.2 deduped
│ │ │ └── retry-axios@0.3.2
│ │ ├─┬ gtoken@2.3.3
│ │ │ ├─┬ gaxios@1.8.4
│ │ │ │ ├─┬ abort-controller@3.0.0
│ │ │ │ │ └── event-target-shim@5.0.1
│ │ │ │ ├── extend@3.0.2 deduped
│ │ │ │ ├── https-proxy-agent@2.2.4 deduped
│ │ │ │ └── node-fetch@2.6.1
│ │ │ ├─┬ google-p12-pem@1.0.4
│ │ │ │ ├── node-forge@0.8.5
│ │ │ │ └── pify@4.0.1 deduped
│ │ │ ├── jws@3.2.2 deduped
│ │ │ ├── mime@2.4.6 deduped
│ │ │ └── pify@4.0.1
│ │ ├─┬ https-proxy-agent@2.2.4
│ │ │ ├─┬ agent-base@4.3.0
│ │ │ │ └─┬ es6-promisify@5.0.0
│ │ │ │   └── es6-promise@4.2.8
│ │ │ └── debug@3.1.0 deduped
│ │ ├─┬ jws@3.2.2
│ │ │ ├─┬ jwa@1.4.1
│ │ │ │ ├── buffer-equal-constant-time@1.0.1
│ │ │ │ ├─┬ ecdsa-sig-formatter@1.0.11
│ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ └── safe-buffer@5.1.2 deduped
│ │ ├─┬ lru-cache@5.1.1
│ │ │ └── yallist@3.1.1
│ │ └── semver@5.7.1
│ ├─┬ google-gax@0.20.0
│ │ ├─┬ @grpc/grpc-js@0.2.0
│ │ │ └── lodash@4.17.20 deduped
│ │ ├─┬ @grpc/proto-loader@0.3.0
│ │ │ ├── @types/lodash@4.14.161
│ │ │ ├── @types/node@9.6.58
│ │ │ ├── lodash@4.17.20 deduped
│ │ │ └── protobufjs@6.10.1 deduped
│ │ ├─┬ duplexify@3.7.1
│ │ │ ├─┬ end-of-stream@1.4.4
│ │ │ │ └── once@1.4.0 deduped
│ │ │ ├── inherits@2.0.4 deduped
│ │ │ ├── readable-stream@2.3.7 deduped
│ │ │ └── stream-shift@1.0.1
│ │ ├── extend@3.0.2 deduped
│ │ ├─┬ globby@8.0.2
│ │ │ ├── array-union@1.0.2 deduped
│ │ │ ├── dir-glob@2.0.0 deduped
│ │ │ ├─┬ fast-glob@2.2.7
│ │ │ │ ├─┬ @mrmlnc/readdir-enhanced@2.2.1
│ │ │ │ │ ├── call-me-maybe@1.0.1
│ │ │ │ │ └── glob-to-regexp@0.3.0
│ │ │ │ ├── @nodelib/fs.stat@1.1.3
│ │ │ │ ├── glob-parent@3.1.0 deduped
│ │ │ │ ├── is-glob@4.0.1 deduped
│ │ │ │ ├── merge2@1.4.1
│ │ │ │ └── micromatch@3.1.10 deduped
│ │ │ ├── glob@7.1.6 deduped
│ │ │ ├── ignore@3.3.10 deduped
│ │ │ ├── pify@3.0.0
│ │ │ └── slash@1.0.0
│ │ ├── google-auth-library@2.0.2 deduped
│ │ ├── google-proto-files@0.16.1 deduped
│ │ ├─┬ grpc@1.24.3
│ │ │ ├─┬ @types/bytebuffer@5.0.41
│ │ │ │ ├── @types/long@4.0.1 deduped
│ │ │ │ └── @types/node@14.10.2
│ │ │ ├── lodash.camelcase@4.3.0
│ │ │ ├── lodash.clone@4.5.0 deduped
│ │ │ ├── nan@2.14.1
│ │ │ ├─┬ node-pre-gyp@0.15.0
│ │ │ │ ├── detect-libc@1.0.3
│ │ │ │ ├── mkdirp@0.5.5 deduped
│ │ │ │ ├─┬ needle@2.5.2
│ │ │ │ │ ├─┬ debug@3.2.6
│ │ │ │ │ │ └── ms@2.1.2
│ │ │ │ │ ├── iconv-lite@0.4.24 deduped
│ │ │ │ │ └── sax@1.2.4
│ │ │ │ ├─┬ nopt@4.0.3
│ │ │ │ │ ├── abbrev@1.1.1 deduped
│ │ │ │ │ └─┬ osenv@0.1.5
│ │ │ │ │   ├── os-homedir@1.0.2
│ │ │ │ │   └── os-tmpdir@1.0.2 deduped
│ │ │ │ ├─┬ npm-packlist@1.4.8
│ │ │ │ │ ├─┬ ignore-walk@3.0.3
│ │ │ │ │ │ └── minimatch@3.0.4 deduped
│ │ │ │ │ ├─┬ npm-bundled@1.1.1
│ │ │ │ │ │ └── npm-normalize-package-bin@1.0.1 deduped
│ │ │ │ │ └── npm-normalize-package-bin@1.0.1
│ │ │ │ ├─┬ npmlog@4.1.2
│ │ │ │ │ ├─┬ are-we-there-yet@1.1.5
│ │ │ │ │ │ ├── delegates@1.0.0 deduped
│ │ │ │ │ │ └── readable-stream@2.3.7 deduped
│ │ │ │ │ ├── console-control-strings@1.1.0
│ │ │ │ │ ├─┬ gauge@2.7.4
│ │ │ │ │ │ ├── aproba@1.2.0
│ │ │ │ │ │ ├── console-control-strings@1.1.0 deduped
│ │ │ │ │ │ ├── has-unicode@2.0.1
│ │ │ │ │ │ ├── object-assign@4.1.1 deduped
│ │ │ │ │ │ ├── signal-exit@3.0.3 deduped
│ │ │ │ │ │ ├── string-width@1.0.2 deduped
│ │ │ │ │ │ ├── strip-ansi@3.0.1 deduped
│ │ │ │ │ │ └─┬ wide-align@1.1.3
│ │ │ │ │ │   └── string-width@1.0.2 deduped
│ │ │ │ │ └── set-blocking@2.0.0
│ │ │ │ ├─┬ rc@1.2.8
│ │ │ │ │ ├── deep-extend@0.6.0
│ │ │ │ │ ├── ini@1.3.5 deduped
│ │ │ │ │ ├── minimist@1.2.5 deduped
│ │ │ │ │ └── strip-json-comments@2.0.1
│ │ │ │ ├── rimraf@2.7.1 deduped
│ │ │ │ ├── semver@5.7.1
│ │ │ │ └─┬ tar@4.4.13
│ │ │ │   ├── chownr@1.1.4
│ │ │ │   ├─┬ fs-minipass@1.2.7
│ │ │ │   │ └── minipass@2.9.0 deduped
│ │ │ │   ├─┬ minipass@2.9.0
│ │ │ │   │ ├── safe-buffer@5.1.2 deduped
│ │ │ │   │ └── yallist@3.1.1 deduped
│ │ │ │   ├─┬ minizlib@1.3.3
│ │ │ │   │ └── minipass@2.9.0 deduped
│ │ │ │   ├── mkdirp@0.5.5 deduped
│ │ │ │   ├── safe-buffer@5.1.2 deduped
│ │ │ │   └── yallist@3.1.1 deduped
│ │ │ └─┬ protobufjs@5.0.3
│ │ │   ├─┬ ascli@1.0.1
│ │ │   │ ├── colour@0.7.1
│ │ │   │ └── optjs@3.2.2
│ │ │   ├─┬ bytebuffer@5.0.1
│ │ │   │ └── long@3.2.0
│ │ │   ├── glob@7.1.6 deduped
│ │ │   └─┬ yargs@3.32.0
│ │ │     ├── camelcase@2.1.1
│ │ │     ├─┬ cliui@3.2.0
│ │ │     │ ├── string-width@1.0.2 deduped
│ │ │     │ ├─┬ strip-ansi@3.0.1
│ │ │     │ │ └── ansi-regex@2.1.1
│ │ │     │ └─┬ wrap-ansi@2.1.0
│ │ │     │   ├── string-width@1.0.2 deduped
│ │ │     │   └── strip-ansi@3.0.1 deduped
│ │ │     ├── decamelize@1.2.0 deduped
│ │ │     ├─┬ os-locale@1.4.0
│ │ │     │ └─┬ lcid@1.0.0
│ │ │     │   └── invert-kv@1.0.0
│ │ │     ├─┬ string-width@1.0.2
│ │ │     │ ├── code-point-at@1.1.0
│ │ │     │ ├─┬ is-fullwidth-code-point@1.0.0
│ │ │     │ │ └── number-is-nan@1.0.1
│ │ │     │ └── strip-ansi@3.0.1 deduped
│ │ │     ├── window-size@0.1.4
│ │ │     └── y18n@3.2.1
│ │ ├── is-stream-ended@0.1.4
│ │ ├── lodash@4.17.20
│ │ ├─┬ protobufjs@6.10.1
│ │ │ ├── @protobufjs/aspromise@1.1.2
│ │ │ ├── @protobufjs/base64@1.1.2
│ │ │ ├── @protobufjs/codegen@2.0.4
│ │ │ ├── @protobufjs/eventemitter@1.1.0
│ │ │ ├─┬ @protobufjs/fetch@1.1.0
│ │ │ │ ├── @protobufjs/aspromise@1.1.2 deduped
│ │ │ │ └── @protobufjs/inquire@1.1.0 deduped
│ │ │ ├── @protobufjs/float@1.0.2
│ │ │ ├── @protobufjs/inquire@1.1.0
│ │ │ ├── @protobufjs/path@1.1.2
│ │ │ ├── @protobufjs/pool@1.1.0
│ │ │ ├── @protobufjs/utf8@1.1.0
│ │ │ ├── @types/long@4.0.1
│ │ │ ├── @types/node@13.13.20
│ │ │ └── long@4.0.0
│ │ ├─┬ retry-request@4.1.3
│ │ │ └─┬ debug@4.1.1
│ │ │   └── ms@2.1.2
│ │ ├── semver@5.7.1
│ │ └── through2@2.0.5 deduped
│ ├─┬ google-proto-files@0.16.1
│ │ ├── globby@8.0.2 deduped
│ │ ├─┬ power-assert@1.6.1
│ │ │ ├─┬ define-properties@1.1.3
│ │ │ │ └── object-keys@1.1.1
│ │ │ ├─┬ empower@1.3.1
│ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ └─┬ empower-core@1.2.0
│ │ │ │   ├── call-signature@0.0.2 deduped
│ │ │ │   └── core-js@2.6.11 deduped
│ │ │ ├─┬ power-assert-formatter@1.4.1
│ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ ├─┬ power-assert-context-formatter@1.2.0
│ │ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ │ └─┬ power-assert-context-traversal@1.2.0
│ │ │ │ │   ├── core-js@2.6.11 deduped
│ │ │ │ │   └── estraverse@4.3.0 deduped
│ │ │ │ ├─┬ power-assert-context-reducer-ast@1.2.0
│ │ │ │ │ ├── acorn@5.7.4
│ │ │ │ │ ├── acorn-es7-plugin@1.1.7
│ │ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ │ ├── espurify@1.8.1 deduped
│ │ │ │ │ └── estraverse@4.3.0 deduped
│ │ │ │ ├─┬ power-assert-renderer-assertion@1.2.0
│ │ │ │ │ ├── power-assert-renderer-base@1.1.1
│ │ │ │ │ └─┬ power-assert-util-string-width@1.2.0
│ │ │ │ │   └── eastasianwidth@0.2.0
│ │ │ │ ├─┬ power-assert-renderer-comparison@1.2.0
│ │ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ │ ├── diff-match-patch@1.0.5
│ │ │ │ │ ├── power-assert-renderer-base@1.1.1 deduped
│ │ │ │ │ ├─┬ stringifier@1.4.0
│ │ │ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ │ │ ├── traverse@0.6.6
│ │ │ │ │ │ └── type-name@2.0.2 deduped
│ │ │ │ │ └── type-name@2.0.2
│ │ │ │ ├─┬ power-assert-renderer-diagram@1.2.0
│ │ │ │ │ ├── core-js@2.6.11 deduped
│ │ │ │ │ ├── power-assert-renderer-base@1.1.1 deduped
│ │ │ │ │ ├── power-assert-util-string-width@1.2.0 deduped
│ │ │ │ │ └── stringifier@1.4.0 deduped
│ │ │ │ └─┬ power-assert-renderer-file@1.2.0
│ │ │ │   └── power-assert-renderer-base@1.1.1 deduped
│ │ │ ├─┬ universal-deep-strict-equal@1.2.2
│ │ │ │ ├── array-filter@1.0.0
│ │ │ │ ├── indexof@0.0.1
│ │ │ │ └── object-keys@1.1.1 deduped
│ │ │ └── xtend@4.0.2 deduped
│ │ └── protobufjs@6.10.1 deduped
│ ├── is@3.3.0
│ ├── lodash.flatten@4.4.0
│ ├── lodash.merge@4.6.2
│ ├── prop-assign@1.0.0
│ ├─┬ split-array-stream@2.0.0
│ │ └── is-stream-ended@0.1.4 deduped
│ ├─┬ stream-events@1.0.5
│ │ └── stubs@3.0.0
│ └─┬ through2@2.0.5
│   ├── readable-stream@2.3.7 deduped
│   └── xtend@4.0.2
├─┬ @types/fs-extra@8.1.1
│ └── @types/node@12.12.59 deduped
├─┬ @types/google-cloud__datastore@1.3.3
│ └── @types/node@12.12.59 deduped
├─┬ @types/koa@2.11.4
│ ├─┬ @types/accepts@1.3.5
│ │ └── @types/node@12.12.59 deduped
│ ├── @types/content-disposition@0.5.3
│ ├─┬ @types/cookies@0.7.4
│ │ ├─┬ @types/connect@3.4.33
│ │ │ └── @types/node@12.12.59 deduped
│ │ ├─┬ @types/express@4.17.8
│ │ │ ├─┬ @types/body-parser@1.19.0
│ │ │ │ ├── @types/connect@3.4.33 deduped
│ │ │ │ └── @types/node@12.12.59 deduped
│ │ │ ├─┬ @types/express-serve-static-core@4.17.12
│ │ │ │ ├── @types/node@12.12.59 deduped
│ │ │ │ ├── @types/qs@6.9.4 deduped
│ │ │ │ └── @types/range-parser@1.2.3
│ │ │ ├── @types/qs@6.9.4
│ │ │ └─┬ @types/serve-static@1.13.5
│ │ │   ├── @types/express-serve-static-core@4.17.12 deduped
│ │ │   └── @types/mime@2.0.3
│ │ ├── @types/keygrip@1.0.2 deduped
│ │ └── @types/node@12.12.59 deduped
│ ├── @types/http-assert@1.5.1
│ ├── @types/http-errors@1.8.0
│ ├── @types/keygrip@1.0.2
│ ├─┬ @types/koa-compose@3.2.5
│ │ └── @types/koa@2.11.4 deduped
│ └── @types/node@12.12.59 deduped
├─┬ @types/koa-bodyparser@4.3.0
│ └── @types/koa@2.11.4 deduped
├─┬ @types/koa-compress@2.0.9
│ ├── @types/koa@2.11.4 deduped
│ └── @types/node@12.12.59 deduped
├─┬ @types/koa-logger@3.1.1
│ └── @types/koa@2.11.4 deduped
├─┬ @types/koa-route@3.2.4
│ ├── @types/koa@2.11.4 deduped
│ └─┬ path-to-regexp@1.8.0
│   └── isarray@0.0.1
├─┬ @types/koa-send@4.1.2
│ └── @types/koa@2.11.4 deduped
├─┬ @types/koa-static@4.0.1
│ ├── @types/koa@2.11.4 deduped
│ └── @types/koa-send@4.1.2 deduped
├── @types/node@12.12.59
├─┬ @types/puppeteer@2.1.3
│ └── @types/node@12.12.59 deduped
├─┬ @types/supertest@2.0.10
│ └─┬ @types/superagent@4.1.10
│   ├── @types/cookiejar@2.1.1
│   └── @types/node@12.12.59 deduped
├── @webcomponents/webcomponentsjs@2.4.4
├─┬ ava@1.0.0-beta.6
│ ├─┬ @ava/babel-preset-stage-4@2.0.0-beta.8
│ │ ├─┬ @babel/plugin-proposal-async-generator-functions@7.0.0-beta.51
│ │ │ ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ │ ├─┬ @babel/helper-remap-async-to-generator@7.0.0-beta.51
│ │ │ │ ├─┬ @babel/helper-annotate-as-pure@7.0.0-beta.51
│ │ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ │ ├─┬ @babel/helper-wrap-function@7.0.0-beta.51
│ │ │ │ │ ├── @babel/helper-function-name@7.0.0-beta.51 deduped
│ │ │ │ │ ├── @babel/template@7.0.0-beta.51 deduped
│ │ │ │ │ ├── @babel/traverse@7.0.0-beta.51 deduped
│ │ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ │ ├── @babel/template@7.0.0-beta.51 deduped
│ │ │ │ ├── @babel/traverse@7.0.0-beta.51 deduped
│ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ └── @babel/plugin-syntax-async-generators@7.0.0-beta.51 deduped
│ │ ├─┬ @babel/plugin-proposal-object-rest-spread@7.0.0-beta.51
│ │ │ ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ │ └── @babel/plugin-syntax-object-rest-spread@7.0.0-beta.51 deduped
│ │ ├─┬ @babel/plugin-proposal-optional-catch-binding@7.0.0-beta.51
│ │ │ ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ │ └── @babel/plugin-syntax-optional-catch-binding@7.0.0-beta.51 deduped
│ │ ├─┬ @babel/plugin-transform-async-to-generator@7.0.0-beta.51
│ │ │ ├─┬ @babel/helper-module-imports@7.0.0-beta.51
│ │ │ │ ├── @babel/types@7.0.0-beta.51 deduped
│ │ │ │ └── lodash@4.17.20 deduped
│ │ │ ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ │ └── @babel/helper-remap-async-to-generator@7.0.0-beta.51 deduped
│ │ ├─┬ @babel/plugin-transform-dotall-regex@7.0.0-beta.51
│ │ │ ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ │ ├─┬ @babel/helper-regex@7.0.0-beta.51
│ │ │ │ └── lodash@4.17.20 deduped
│ │ │ └─┬ regexpu-core@4.7.0
│ │ │   ├── regenerate@1.4.1
│ │ │   ├─┬ regenerate-unicode-properties@8.2.0
│ │ │   │ └── regenerate@1.4.1 deduped
│ │ │   ├── regjsgen@0.5.2
│ │ │   ├─┬ regjsparser@0.6.4
│ │ │   │ └── jsesc@0.5.0
│ │ │   ├─┬ unicode-match-property-ecmascript@1.0.4
│ │ │   │ ├── unicode-canonical-property-names-ecmascript@1.0.4
│ │ │   │ └── unicode-property-aliases-ecmascript@1.1.0
│ │ │   └── unicode-match-property-value-ecmascript@1.2.0
│ │ ├─┬ @babel/plugin-transform-exponentiation-operator@7.0.0-beta.51
│ │ │ ├─┬ @babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.51
│ │ │ │ ├─┬ @babel/helper-explode-assignable-expression@7.0.0-beta.51
│ │ │ │ │ ├── @babel/traverse@7.0.0-beta.51 deduped
│ │ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ └── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │ └─┬ @babel/plugin-transform-modules-commonjs@7.0.0-beta.51
│ │   ├─┬ @babel/helper-module-transforms@7.0.0-beta.51
│ │   │ ├── @babel/helper-module-imports@7.0.0-beta.51 deduped
│ │   │ ├── @babel/helper-simple-access@7.0.0-beta.51 deduped
│ │   │ ├── @babel/helper-split-export-declaration@7.0.0-beta.51 deduped
│ │   │ ├── @babel/template@7.0.0-beta.51 deduped
│ │   │ ├── @babel/types@7.0.0-beta.51 deduped
│ │   │ └── lodash@4.17.20 deduped
│ │   ├── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ │   └─┬ @babel/helper-simple-access@7.0.0-beta.51
│ │     ├── @babel/template@7.0.0-beta.51 deduped
│ │     ├── @babel/types@7.0.0-beta.51 deduped
│ │     └── lodash@4.17.20 deduped
│ ├─┬ @ava/babel-preset-transform-test-files@4.0.0-beta.7
│ │ ├── @ava/babel-plugin-throws-helper@3.0.0-beta.7
│ │ └─┬ babel-plugin-espower@3.0.0-beta.1
│ │   ├── @babel/generator@7.0.0-beta.51 deduped
│ │   ├── babylon@7.0.0-beta.47
│ │   ├─┬ call-matcher@1.1.0
│ │   │ ├── core-js@2.6.11 deduped
│ │   │ ├── deep-equal@1.0.1 deduped
│ │   │ ├── espurify@1.8.1 deduped
│ │   │ └── estraverse@4.3.0 deduped
│ │   ├── core-js@2.6.11 deduped
│ │   ├─┬ espower-location-detector@1.0.0
│ │   │ ├── is-url@1.2.4
│ │   │ ├── path-is-absolute@1.0.1 deduped
│ │   │ ├── source-map@0.5.7 deduped
│ │   │ └── xtend@4.0.2 deduped
│ │   ├─┬ espurify@1.8.1
│ │   │ └── core-js@2.6.11 deduped
│ │   └── estraverse@4.3.0
│ ├─┬ @ava/write-file-atomic@2.2.0
│ │ ├── graceful-fs@4.2.4 deduped
│ │ ├── imurmurhash@0.1.4
│ │ └── slide@1.1.6
│ ├─┬ @babel/core@7.0.0-beta.51
│ │ ├─┬ @babel/code-frame@7.0.0-beta.51
│ │ │ └─┬ @babel/highlight@7.0.0-beta.51
│ │ │   ├── chalk@2.4.2 deduped
│ │ │   ├── esutils@2.0.3 deduped
│ │ │   └── js-tokens@3.0.2
│ │ ├── @babel/generator@7.0.0-beta.51 deduped
│ │ ├─┬ @babel/helpers@7.0.0-beta.51
│ │ │ ├── @babel/template@7.0.0-beta.51 deduped
│ │ │ ├── @babel/traverse@7.0.0-beta.51 deduped
│ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ ├── @babel/parser@7.0.0-beta.51
│ │ ├─┬ @babel/template@7.0.0-beta.51
│ │ │ ├── @babel/code-frame@7.0.0-beta.51 deduped
│ │ │ ├── @babel/parser@7.0.0-beta.51 deduped
│ │ │ ├── @babel/types@7.0.0-beta.51 deduped
│ │ │ └── lodash@4.17.20 deduped
│ │ ├─┬ @babel/traverse@7.0.0-beta.51
│ │ │ ├── @babel/code-frame@7.0.0-beta.51 deduped
│ │ │ ├── @babel/generator@7.0.0-beta.51 deduped
│ │ │ ├─┬ @babel/helper-function-name@7.0.0-beta.51
│ │ │ │ ├─┬ @babel/helper-get-function-arity@7.0.0-beta.51
│ │ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ │ ├── @babel/template@7.0.0-beta.51 deduped
│ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ ├─┬ @babel/helper-split-export-declaration@7.0.0-beta.51
│ │ │ │ └── @babel/types@7.0.0-beta.51 deduped
│ │ │ ├── @babel/parser@7.0.0-beta.51 deduped
│ │ │ ├── @babel/types@7.0.0-beta.51 deduped
│ │ │ ├── debug@3.1.0 deduped
│ │ │ ├── globals@11.12.0
│ │ │ ├─┬ invariant@2.2.4
│ │ │ │ └─┬ loose-envify@1.4.0
│ │ │ │   └── js-tokens@3.0.2 deduped
│ │ │ └── lodash@4.17.20 deduped
│ │ ├─┬ @babel/types@7.0.0-beta.51
│ │ │ ├── esutils@2.0.3 deduped
│ │ │ ├── lodash@4.17.20 deduped
│ │ │ └── to-fast-properties@2.0.0
│ │ ├── convert-source-map@1.7.0 deduped
│ │ ├── debug@3.1.0 deduped
│ │ ├── json5@0.5.1
│ │ ├── lodash@4.17.20 deduped
│ │ ├─┬ micromatch@3.1.10
│ │ │ ├── arr-diff@4.0.0
│ │ │ ├── array-unique@0.3.2
│ │ │ ├── braces@2.3.2 deduped
│ │ │ ├─┬ define-property@2.0.2
│ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ │ └── kind-of@6.0.3 deduped
│ │ │ │ └── isobject@3.0.1 deduped
│ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ ├── assign-symbols@1.0.0
│ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ ├─┬ extglob@2.0.4
│ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   └── kind-of@6.0.3 deduped
│ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ ├── posix-character-classes@0.1.1
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ fragment-cache@0.2.1
│ │ │ │ └── map-cache@0.2.2
│ │ │ ├── kind-of@6.0.3
│ │ │ ├─┬ nanomatch@1.2.13
│ │ │ │ ├── arr-diff@4.0.0 deduped
│ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ ├── define-property@2.0.2 deduped
│ │ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ ├── is-windows@1.0.2
│ │ │ │ ├── kind-of@6.0.3 deduped
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ ├─┬ object.pick@1.3.0
│ │ │ │ └── isobject@3.0.1 deduped
│ │ │ ├─┬ regex-not@1.0.2
│ │ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ │ └─┬ safe-regex@1.1.0
│ │ │ │   └── ret@0.1.15
│ │ │ ├─┬ snapdragon@0.8.2
│ │ │ │ ├─┬ base@0.11.2
│ │ │ │ │ ├─┬ cache-base@1.0.1
│ │ │ │ │ │ ├─┬ collection-visit@1.0.0
│ │ │ │ │ │ │ ├─┬ map-visit@1.0.0
│ │ │ │ │ │ │ │ └── object-visit@1.0.1 deduped
│ │ │ │ │ │ │ └─┬ object-visit@1.0.1
│ │ │ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ │ │ ├── get-value@2.0.6
│ │ │ │ │ │ ├─┬ has-value@1.0.0
│ │ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ │ ├─┬ has-values@1.0.0
│ │ │ │ │ │ │ │ ├── is-number@3.0.0 deduped
│ │ │ │ │ │ │ │ └─┬ kind-of@4.0.0
│ │ │ │ │ │ │ │   └── is-buffer@1.1.6
│ │ │ │ │ │ │ └── isobject@3.0.1 deduped
│ │ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ │ ├─┬ set-value@2.0.1
│ │ │ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ ├── is-plain-object@2.0.4 deduped
│ │ │ │ │ │ │ └── split-string@3.1.0 deduped
│ │ │ │ │ │ ├─┬ to-object-path@0.3.0
│ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │   └── is-buffer@1.1.6
│ │ │ │ │ │ ├─┬ union-value@1.0.1
│ │ │ │ │ │ │ ├── arr-union@3.1.0 deduped
│ │ │ │ │ │ │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │ │ ├── is-extendable@0.1.1 deduped
│ │ │ │ │ │ │ └── set-value@2.0.1 deduped
│ │ │ │ │ │ └─┬ unset-value@1.0.0
│ │ │ │ │ │   ├─┬ has-value@0.3.1
│ │ │ │ │ │   │ ├── get-value@2.0.6 deduped
│ │ │ │ │ │   │ ├── has-values@0.1.4
│ │ │ │ │ │   │ └─┬ isobject@2.1.0
│ │ │ │ │ │   │   └── isarray@1.0.0 deduped
│ │ │ │ │ │   └── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ class-utils@0.3.6
│ │ │ │ │ │ ├── arr-union@3.1.0
│ │ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ │ └─┬ static-extend@0.1.2
│ │ │ │ │ │   ├─┬ define-property@0.2.5
│ │ │ │ │ │   │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ │   └─┬ object-copy@0.1.0
│ │ │ │ │ │     ├── copy-descriptor@0.1.1
│ │ │ │ │ │     ├─┬ define-property@0.2.5
│ │ │ │ │ │     │ └── is-descriptor@0.1.6 deduped
│ │ │ │ │ │     └─┬ kind-of@3.2.2
│ │ │ │ │ │       └── is-buffer@1.1.6
│ │ │ │ │ ├── component-emitter@1.3.0 deduped
│ │ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │ │   └── kind-of@6.0.3 deduped
│ │ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ │ ├─┬ mixin-deep@1.3.2
│ │ │ │ │ │ ├── for-in@1.0.2
│ │ │ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ │   └── is-plain-object@2.0.4 deduped
│ │ │ │ │ └── pascalcase@0.1.1
│ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ └── ms@2.0.0 deduped
│ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │   ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6
│ │ │ │ │   ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │   │ └─┬ kind-of@3.2.2
│ │ │ │ │   │   └── is-buffer@1.1.6
│ │ │ │ │   └── kind-of@5.1.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├── map-cache@0.2.2 deduped
│ │ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ ├─┬ source-map-resolve@0.5.3
│ │ │ │ │ ├── atob@2.1.2
│ │ │ │ │ ├── decode-uri-component@0.2.0
│ │ │ │ │ ├── resolve-url@0.2.1
│ │ │ │ │ ├── source-map-url@0.4.0
│ │ │ │ │ └── urix@0.1.0
│ │ │ │ └── use@3.1.1
│ │ │ └─┬ to-regex@3.0.2
│ │ │   ├── define-property@2.0.2 deduped
│ │ │   ├── extend-shallow@3.0.2 deduped
│ │ │   ├── regex-not@1.0.2 deduped
│ │ │   └── safe-regex@1.1.0 deduped
│ │ ├── resolve@1.17.0 deduped
│ │ ├── semver@5.7.1
│ │ └── source-map@0.5.7
│ ├─┬ @babel/generator@7.0.0-beta.51
│ │ ├── @babel/types@7.0.0-beta.51 deduped
│ │ ├── jsesc@2.5.2
│ │ ├── lodash@4.17.20 deduped
│ │ ├── source-map@0.5.7 deduped
│ │ └── trim-right@1.0.1 deduped
│ ├─┬ @babel/plugin-syntax-async-generators@7.0.0-beta.51
│ │ └── @babel/helper-plugin-utils@7.0.0-beta.51
│ ├─┬ @babel/plugin-syntax-object-rest-spread@7.0.0-beta.51
│ │ └── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ ├─┬ @babel/plugin-syntax-optional-catch-binding@7.0.0-beta.51
│ │ └── @babel/helper-plugin-utils@7.0.0-beta.51 deduped
│ ├─┬ @concordance/react@1.0.0
│ │ └── arrify@1.0.1 deduped
│ ├── ansi-escapes@3.2.0
│ ├─┬ ansi-styles@3.2.1
│ │ └─┬ color-convert@1.9.3
│ │   └── color-name@1.1.3
│ ├── arr-flatten@1.1.0
│ ├─┬ array-union@1.0.2
│ │ └── array-uniq@1.0.3
│ ├── array-uniq@2.1.0
│ ├── arrify@1.0.1 deduped
│ ├── auto-bind@1.2.1
│ ├── bluebird@3.7.2
│ ├─┬ chalk@2.4.2
│ │ ├── ansi-styles@3.2.1 deduped
│ │ ├── escape-string-regexp@1.0.5 deduped
│ │ └── supports-color@5.5.0 deduped
│ ├─┬ chokidar@2.1.8
│ │ ├─┬ anymatch@2.0.0
│ │ │ ├── micromatch@3.1.10 deduped
│ │ │ └─┬ normalize-path@2.1.1
│ │ │   └── remove-trailing-separator@1.1.0
│ │ ├── async-each@1.0.3
│ │ ├─┬ braces@2.3.2
│ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ ├── array-unique@0.3.2 deduped
│ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ └── is-extendable@0.1.1
│ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │   └── is-buffer@1.1.6
│ │ │ │ ├── repeat-string@1.6.1
│ │ │ │ └─┬ to-regex-range@2.1.1
│ │ │ │   ├── is-number@3.0.0 deduped
│ │ │ │   └── repeat-string@1.6.1 deduped
│ │ │ ├── isobject@3.0.1 deduped
│ │ │ ├── repeat-element@1.1.3
│ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ ├─┬ snapdragon-node@2.1.1
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │   ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │   │ └── kind-of@6.0.3 deduped
│ │ │ │ │   └── kind-of@6.0.3 deduped
│ │ │ │ ├── isobject@3.0.1 deduped
│ │ │ │ └─┬ snapdragon-util@3.0.1
│ │ │ │   └─┬ kind-of@3.2.2
│ │ │ │     └── is-buffer@1.1.6
│ │ │ ├─┬ split-string@3.1.0
│ │ │ │ └── extend-shallow@3.0.2 deduped
│ │ │ └── to-regex@3.0.2 deduped
│ │ ├─┬ UNMET OPTIONAL DEPENDENCY fsevents@1.2.13
│ │ │ ├─┬ UNMET OPTIONAL DEPENDENCY bindings@1.5.0
│ │ │ │ └── UNMET OPTIONAL DEPENDENCY file-uri-to-path@1.0.0
│ │ │ └── nan@2.14.1 deduped
│ │ ├─┬ glob-parent@3.1.0
│ │ │ ├─┬ is-glob@3.1.0
│ │ │ │ └── is-extglob@2.1.1 deduped
│ │ │ └── path-dirname@1.0.2
│ │ ├── inherits@2.0.4 deduped
│ │ ├─┬ is-binary-path@1.0.1
│ │ │ └── binary-extensions@1.13.1
│ │ ├─┬ is-glob@4.0.1
│ │ │ └── is-extglob@2.1.1
│ │ ├── normalize-path@3.0.0
│ │ ├── path-is-absolute@1.0.1
│ │ ├─┬ readdirp@2.2.1
│ │ │ ├── graceful-fs@4.2.4 deduped
│ │ │ ├── micromatch@3.1.10 deduped
│ │ │ └── readable-stream@2.3.7 deduped
│ │ └── upath@1.2.0
│ ├── clean-stack@1.3.0
│ ├── clean-yaml-object@0.1.0
│ ├─┬ cli-cursor@2.1.0
│ │ └─┬ restore-cursor@2.0.0
│ │   ├─┬ onetime@2.0.1
│ │   │ └── mimic-fn@1.2.0
│ │   └── signal-exit@3.0.3 deduped
│ ├─┬ cli-truncate@1.1.0
│ │ ├─┬ slice-ansi@1.0.0
│ │ │ └── is-fullwidth-code-point@2.0.0
│ │ └─┬ string-width@2.1.1
│ │   ├── is-fullwidth-code-point@2.0.0
│ │   └─┬ strip-ansi@4.0.0
│ │     └── ansi-regex@3.0.0
│ ├─┬ co-with-promise@4.6.0
│ │ └─┬ pinkie-promise@1.0.0
│ │   └── pinkie@1.0.0
│ ├─┬ code-excerpt@2.1.1
│ │ └── convert-to-spaces@1.0.2
│ ├── common-path-prefix@1.0.0
│ ├─┬ concordance@3.0.0
│ │ ├─┬ date-time@2.1.0
│ │ │ └── time-zone@1.0.0
│ │ ├── esutils@2.0.3
│ │ ├── fast-diff@1.2.0
│ │ ├── function-name-support@0.2.0
│ │ ├── js-string-escape@1.0.1
│ │ ├── lodash.clonedeep@4.5.0 deduped
│ │ ├── lodash.flattendeep@4.4.0
│ │ ├── lodash.merge@4.6.2 deduped
│ │ ├── md5-hex@2.0.0 deduped
│ │ ├── semver@5.7.1
│ │ └── well-known-symbols@1.0.0
│ ├─┬ convert-source-map@1.7.0
│ │ └── safe-buffer@5.1.2
│ ├─┬ currently-unhandled@0.4.1
│ │ └── array-find-index@1.0.2
│ ├─┬ debug@3.1.0
│ │ └── ms@2.0.0
│ ├─┬ del@3.0.0
│ │ ├─┬ globby@6.1.0
│ │ │ ├── array-union@1.0.2 deduped
│ │ │ ├── glob@7.1.6 deduped
│ │ │ ├── object-assign@4.1.1
│ │ │ ├── pify@2.3.0
│ │ │ └─┬ pinkie-promise@2.0.1
│ │ │   └── pinkie@2.0.4
│ │ ├── is-path-cwd@1.0.0
│ │ ├─┬ is-path-in-cwd@1.0.1
│ │ │ └─┬ is-path-inside@1.0.1
│ │ │   └── path-is-inside@1.0.2
│ │ ├── p-map@1.2.0
│ │ ├── pify@3.0.0
│ │ └── rimraf@2.7.1 deduped
│ ├─┬ dot-prop@4.2.1
│ │ └── is-obj@1.0.1
│ ├── emittery@0.3.0
│ ├─┬ empower-core@0.6.2
│ │ ├── call-signature@0.0.2
│ │ └── core-js@2.6.11
│ ├── equal-length@1.0.1
│ ├── escape-string-regexp@1.0.5
│ ├── esm@3.2.25
│ ├─┬ figures@2.0.0
│ │ └── escape-string-regexp@1.0.5 deduped
│ ├── get-port@3.2.0
│ ├─┬ globby@7.1.1
│ │ ├── array-union@1.0.2 deduped
│ │ ├─┬ dir-glob@2.0.0
│ │ │ ├── arrify@1.0.1 deduped
│ │ │ └─┬ path-type@3.0.0
│ │ │   └── pify@3.0.0
│ │ ├── glob@7.1.6 deduped
│ │ ├── ignore@3.3.10
│ │ ├── pify@3.0.0
│ │ └── slash@1.0.0
│ ├── ignore-by-default@1.0.1
│ ├─┬ import-local@1.0.0
│ │ ├─┬ pkg-dir@2.0.0
│ │ │ └── find-up@2.1.0 deduped
│ │ └── resolve-cwd@2.0.0 deduped
│ ├── indent-string@3.2.0
│ ├─┬ is-ci@1.2.1
│ │ └── ci-info@1.6.0
│ ├── is-error@2.2.2
│ ├── is-generator-fn@1.0.0
│ ├─┬ is-observable@1.1.0
│ │ └── symbol-observable@1.2.0
│ ├─┬ is-plain-object@2.0.4
│ │ └── isobject@3.0.1
│ ├── is-promise@2.2.2
│ ├── lodash.clone@4.5.0
│ ├── lodash.clonedeep@4.5.0
│ ├── lodash.clonedeepwith@4.5.0
│ ├── lodash.debounce@4.0.8
│ ├── lodash.difference@4.5.0
│ ├── lodash.flatten@4.4.0 deduped
│ ├─┬ loud-rejection@1.6.0
│ │ ├── currently-unhandled@0.4.1 deduped
│ │ └── signal-exit@3.0.3
│ ├─┬ make-dir@1.3.0
│ │ └── pify@3.0.0
│ ├─┬ matcher@1.1.1
│ │ └── escape-string-regexp@1.0.5 deduped
│ ├─┬ md5-hex@2.0.0
│ │ └── md5-o-matic@0.1.1
│ ├─┬ meow@5.0.0
│ │ ├─┬ camelcase-keys@4.2.0
│ │ │ ├── camelcase@4.1.0
│ │ │ ├── map-obj@2.0.0
│ │ │ └── quick-lru@1.1.0
│ │ ├─┬ decamelize-keys@1.1.0
│ │ │ ├── decamelize@1.2.0
│ │ │ └── map-obj@1.0.1
│ │ ├── loud-rejection@1.6.0 deduped
│ │ ├─┬ minimist-options@3.0.2
│ │ │ ├── arrify@1.0.1 deduped
│ │ │ └── is-plain-obj@1.1.0
│ │ ├─┬ normalize-package-data@2.5.0
│ │ │ ├── hosted-git-info@2.8.8
│ │ │ ├── resolve@1.17.0 deduped
│ │ │ ├── semver@5.7.1
│ │ │ └─┬ validate-npm-package-license@3.0.4
│ │ │   ├─┬ spdx-correct@3.1.1
│ │ │   │ ├── spdx-expression-parse@3.0.1 deduped
│ │ │   │ └── spdx-license-ids@3.0.5
│ │ │   └─┬ spdx-expression-parse@3.0.1
│ │ │     ├── spdx-exceptions@2.3.0
│ │ │     └── spdx-license-ids@3.0.5 deduped
│ │ ├─┬ read-pkg-up@3.0.0
│ │ │ ├── find-up@2.1.0 deduped
│ │ │ └─┬ read-pkg@3.0.0
│ │ │   ├── load-json-file@4.0.0 deduped
│ │ │   ├── normalize-package-data@2.5.0 deduped
│ │ │   └── path-type@3.0.0 deduped
│ │ ├─┬ redent@2.0.0
│ │ │ ├── indent-string@3.2.0 deduped
│ │ │ └── strip-indent@2.0.0
│ │ ├── trim-newlines@2.0.0
│ │ └─┬ yargs-parser@10.1.0
│ │   └── camelcase@4.1.0
│ ├── ms@2.1.2
│ ├─┬ multimatch@2.1.0
│ │ ├── array-differ@1.0.0
│ │ ├── array-union@1.0.2 deduped
│ │ ├── arrify@1.0.1 deduped
│ │ └── minimatch@3.0.4 deduped
│ ├─┬ observable-to-promise@0.5.0
│ │ ├─┬ is-observable@0.2.0
│ │ │ └── symbol-observable@0.2.4
│ │ └── symbol-observable@1.2.0 deduped
│ ├─┬ ora@2.1.0
│ │ ├── chalk@2.4.2 deduped
│ │ ├── cli-cursor@2.1.0 deduped
│ │ ├── cli-spinners@1.3.1
│ │ ├─┬ log-symbols@2.2.0
│ │ │ └── chalk@2.4.2 deduped
│ │ ├─┬ strip-ansi@4.0.0
│ │ │ └── ansi-regex@3.0.0
│ │ └─┬ wcwidth@1.0.1
│ │   └─┬ defaults@1.0.3
│ │     └── clone@1.0.4
│ ├─┬ package-hash@2.0.0
│ │ ├── graceful-fs@4.2.4 deduped
│ │ ├── lodash.flattendeep@4.4.0 deduped
│ │ ├── md5-hex@2.0.0 deduped
│ │ └─┬ release-zalgo@1.0.0
│ │   └── es6-error@4.1.1
│ ├─┬ pkg-conf@2.1.0
│ │ ├─┬ find-up@2.1.0
│ │ │ └─┬ locate-path@2.0.0
│ │ │   ├─┬ p-locate@2.0.0
│ │ │   │ └─┬ p-limit@1.3.0
│ │ │   │   └── p-try@1.0.0
│ │ │   └── path-exists@3.0.0
│ │ └─┬ load-json-file@4.0.0
│ │   ├── graceful-fs@4.2.4 deduped
│ │   ├─┬ parse-json@4.0.0
│ │   │ ├─┬ error-ex@1.3.2
│ │   │ │ └── is-arrayish@0.2.1
│ │   │ └── json-parse-better-errors@1.0.2
│ │   ├── pify@3.0.0
│ │   └── strip-bom@3.0.0
│ ├─┬ plur@3.1.1
│ │ └── irregular-plurals@2.0.0
│ ├─┬ pretty-ms@3.2.0
│ │ └── parse-ms@1.0.1
│ ├── require-precompiled@0.1.0
│ ├─┬ resolve-cwd@2.0.0
│ │ └── resolve-from@3.0.0
│ ├── slash@2.0.0
│ ├─┬ source-map-support@0.5.19
│ │ ├── buffer-from@1.1.1 deduped
│ │ └── source-map@0.6.1
│ ├── stack-utils@1.0.2
│ ├─┬ strip-ansi@4.0.0
│ │ └── ansi-regex@3.0.0
│ ├─┬ strip-bom-buf@1.0.0
│ │ └── is-utf8@0.2.1
│ ├─┬ supertap@1.0.0
│ │ ├── arrify@1.0.1 deduped
│ │ ├── indent-string@3.2.0 deduped
│ │ ├── js-yaml@3.14.0 deduped
│ │ ├── serialize-error@2.1.0
│ │ └─┬ strip-ansi@4.0.0
│ │   └── ansi-regex@3.0.0
│ ├─┬ supports-color@5.5.0
│ │ └── has-flag@3.0.0
│ ├── trim-off-newlines@1.0.1
│ ├── trim-right@1.0.1
│ ├─┬ unique-temp-dir@1.0.0
│ │ ├── mkdirp@0.5.5 deduped
│ │ ├── os-tmpdir@1.0.2
│ │ └── uid2@0.0.3
│ └─┬ update-notifier@2.5.0
│   ├─┬ boxen@1.3.0
│   │ ├─┬ ansi-align@2.0.0
│   │ │ └─┬ string-width@2.1.1
│   │ │   ├── is-fullwidth-code-point@2.0.0
│   │ │   └─┬ strip-ansi@4.0.0
│   │ │     └── ansi-regex@3.0.0
│   │ ├── camelcase@4.1.0
│   │ ├── chalk@2.4.2 deduped
│   │ ├── cli-boxes@1.0.0
│   │ ├─┬ string-width@2.1.1
│   │ │ ├── is-fullwidth-code-point@2.0.0
│   │ │ └─┬ strip-ansi@4.0.0
│   │ │   └── ansi-regex@3.0.0
│   │ ├─┬ term-size@1.2.0
│   │ │ └─┬ execa@0.7.0
│   │ │   ├─┬ cross-spawn@5.1.0
│   │ │   │ ├─┬ lru-cache@4.1.5
│   │ │   │ │ ├── pseudomap@1.0.2
│   │ │   │ │ └── yallist@2.1.2
│   │ │   │ ├─┬ shebang-command@1.2.0
│   │ │   │ │ └── shebang-regex@1.0.0
│   │ │   │ └─┬ which@1.3.1
│   │ │   │   └── isexe@2.0.0
│   │ │   ├── get-stream@3.0.0
│   │ │   ├── is-stream@1.1.0
│   │ │   ├─┬ npm-run-path@2.0.2
│   │ │   │ └── path-key@2.0.1
│   │ │   ├── p-finally@1.0.0
│   │ │   ├── signal-exit@3.0.3 deduped
│   │ │   └── strip-eof@1.0.0
│   │ └─┬ widest-line@2.0.1
│   │   └─┬ string-width@2.1.1
│   │     ├── is-fullwidth-code-point@2.0.0
│   │     └─┬ strip-ansi@4.0.0
│   │       └── ansi-regex@3.0.0
│   ├── chalk@2.4.2 deduped
│   ├─┬ configstore@3.1.5
│   │ ├── dot-prop@4.2.1 deduped
│   │ ├── graceful-fs@4.2.4 deduped
│   │ ├── make-dir@1.3.0 deduped
│   │ ├─┬ unique-string@1.0.0
│   │ │ └── crypto-random-string@1.0.0
│   │ ├─┬ write-file-atomic@2.4.3
│   │ │ ├── graceful-fs@4.2.4 deduped
│   │ │ ├── imurmurhash@0.1.4 deduped
│   │ │ └── signal-exit@3.0.3 deduped
│   │ └── xdg-basedir@3.0.0 deduped
│   ├── import-lazy@2.1.0
│   ├── is-ci@1.2.1 deduped
│   ├─┬ is-installed-globally@0.1.0
│   │ ├─┬ global-dirs@0.1.1
│   │ │ └── ini@1.3.5
│   │ └── is-path-inside@1.0.1 deduped
│   ├── is-npm@1.0.0
│   ├─┬ latest-version@3.1.0
│   │ └─┬ package-json@4.0.1
│   │   ├─┬ got@6.7.1
│   │   │ ├── create-error-class@3.0.2 deduped
│   │   │ ├── duplexer3@0.1.4
│   │   │ ├── get-stream@3.0.0 deduped
│   │   │ ├── is-redirect@1.0.0
│   │   │ ├── is-retry-allowed@1.2.0
│   │   │ ├── is-stream@1.1.0 deduped
│   │   │ ├── lowercase-keys@1.0.1
│   │   │ ├── safe-buffer@5.1.2 deduped
│   │   │ ├── timed-out@4.0.1
│   │   │ ├── unzip-response@2.0.1
│   │   │ └─┬ url-parse-lax@1.0.0
│   │   │   └── prepend-http@1.0.4
│   │   ├─┬ registry-auth-token@3.4.0
│   │   │ ├── rc@1.2.8 deduped
│   │   │ └── safe-buffer@5.1.2 deduped
│   │   ├─┬ registry-url@3.1.0
│   │   │ └── rc@1.2.8 deduped
│   │   └── semver@5.7.1
│   ├─┬ semver-diff@2.1.0
│   │ └── semver@5.7.1
│   └── xdg-basedir@3.0.0
├─┬ chrome-launcher@0.13.4
│ ├── @types/node@14.10.2
│ ├── escape-string-regexp@1.0.5 deduped
│ ├─┬ is-wsl@2.2.0
│ │ └── is-docker@2.1.1
│ ├─┬ lighthouse-logger@1.2.0
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ └── marky@1.2.1
│ ├─┬ mkdirp@0.5.5
│ │ └── minimist@1.2.5
│ └─┬ rimraf@3.0.2
│   └── glob@7.1.6 deduped
├─┬ chrome-remote-interface@0.28.2
│ ├── commander@2.11.0
│ └── ws@7.3.1
├─┬ fs-extra@8.1.0
│ ├── graceful-fs@4.2.4
│ ├─┬ jsonfile@4.0.0
│ │ └── graceful-fs@4.2.4 deduped
│ └── universalify@0.1.2
├─┬ koa@2.13.0
│ ├─┬ accepts@1.3.7
│ │ ├── mime-types@2.1.27 deduped
│ │ └── negotiator@0.6.2
│ ├─┬ cache-content-type@1.0.1
│ │ ├── mime-types@2.1.27 deduped
│ │ └── ylru@1.2.1
│ ├─┬ content-disposition@0.5.3
│ │ └── safe-buffer@5.1.2 deduped
│ ├── content-type@1.0.4
│ ├─┬ cookies@0.8.0
│ │ ├── depd@2.0.0
│ │ └─┬ keygrip@1.1.0
│ │   └── tsscmp@1.0.6
│ ├── debug@3.1.0 deduped
│ ├── delegates@1.0.0
│ ├── depd@1.1.2
│ ├── destroy@1.0.4
│ ├── encodeurl@1.0.2
│ ├── escape-html@1.0.3
│ ├── fresh@0.5.2
│ ├─┬ http-assert@1.4.1
│ │ ├── deep-equal@1.0.1
│ │ └─┬ http-errors@1.7.3
│ │   ├── depd@1.1.2 deduped
│ │   ├── inherits@2.0.4 deduped
│ │   ├── setprototypeof@1.1.1
│ │   ├── statuses@1.5.0 deduped
│ │   └── toidentifier@1.0.0 deduped
│ ├─┬ http-errors@1.8.0
│ │ ├── depd@1.1.2 deduped
│ │ ├── inherits@2.0.4 deduped
│ │ ├── setprototypeof@1.2.0
│ │ ├── statuses@1.5.0 deduped
│ │ └── toidentifier@1.0.0
│ ├── is-generator-function@1.0.7
│ ├── koa-compose@4.1.0
│ ├─┬ koa-convert@1.2.0
│ │ ├── co@4.6.0
│ │ └─┬ koa-compose@3.2.1
│ │   └── any-promise@1.3.0
│ ├─┬ on-finished@2.3.0
│ │ └── ee-first@1.1.1
│ ├── only@0.0.2
│ ├── parseurl@1.3.3
│ ├── statuses@1.5.0
│ ├─┬ type-is@1.6.18
│ │ ├── media-typer@0.3.0
│ │ └── mime-types@2.1.27 deduped
│ └── vary@1.1.2
├─┬ koa-bodyparser@4.3.0
│ ├─┬ co-body@6.0.0
│ │ ├── inflation@2.0.0
│ │ ├── qs@6.9.4
│ │ ├─┬ raw-body@2.4.1
│ │ │ ├── bytes@3.1.0 deduped
│ │ │ ├─┬ http-errors@1.7.3
│ │ │ │ ├── depd@1.1.2 deduped
│ │ │ │ ├── inherits@2.0.4 deduped
│ │ │ │ ├── setprototypeof@1.1.1 deduped
│ │ │ │ ├── statuses@1.5.0 deduped
│ │ │ │ └── toidentifier@1.0.0 deduped
│ │ │ ├─┬ iconv-lite@0.4.24
│ │ │ │ └── safer-buffer@2.1.2
│ │ │ └── unpipe@1.0.0
│ │ └── type-is@1.6.18 deduped
│ └── copy-to@2.0.1
├─┬ koa-compress@3.1.0
│ ├── bytes@3.1.0
│ ├─┬ compressible@2.0.18
│ │ └── mime-db@1.44.0
│ ├── koa-is-json@1.0.0
│ └── statuses@1.5.0 deduped
├─┬ koa-logger@3.2.1
│ ├── bytes@3.1.0 deduped
│ ├── chalk@2.4.2 deduped
│ ├── humanize-number@0.0.2
│ └── passthrough-counter@1.0.0
├─┬ koa-route@3.2.0
│ ├── debug@3.1.0 deduped
│ ├── methods@1.1.2
│ └── path-to-regexp@1.8.0 deduped
├─┬ koa-send@5.0.1
│ ├─┬ debug@4.1.1
│ │ └── ms@2.1.2
│ ├── http-errors@1.8.0 deduped
│ └─┬ resolve-path@1.4.0
│   ├─┬ http-errors@1.6.3
│   │ ├── depd@1.1.2 deduped
│   │ ├── inherits@2.0.3
│   │ ├── setprototypeof@1.1.0
│   │ └── statuses@1.5.0 deduped
│   └── path-is-absolute@1.0.1 deduped
├─┬ koa-static@5.0.0
│ ├── debug@3.1.0 deduped
│ └── koa-send@5.0.1 deduped
├─┬ nodemon@2.0.4
│ ├─┬ chokidar@3.4.2
│ │ ├─┬ anymatch@3.1.1
│ │ │ ├── normalize-path@3.0.0 deduped
│ │ │ └── picomatch@2.2.2
│ │ ├─┬ braces@3.0.2
│ │ │ └─┬ fill-range@7.0.1
│ │ │   └─┬ to-regex-range@5.0.1
│ │ │     └── is-number@7.0.0
│ │ ├── UNMET OPTIONAL DEPENDENCY fsevents@2.1.3
│ │ ├─┬ glob-parent@5.1.1
│ │ │ └── is-glob@4.0.1 deduped
│ │ ├─┬ is-binary-path@2.1.0
│ │ │ └── binary-extensions@2.1.0
│ │ ├── is-glob@4.0.1 deduped
│ │ ├── normalize-path@3.0.0 deduped
│ │ └─┬ readdirp@3.4.0
│ │   └── picomatch@2.2.2 deduped
│ ├─┬ debug@3.2.6
│ │ └── ms@2.1.2
│ ├── ignore-by-default@1.0.1 deduped
│ ├─┬ minimatch@3.0.4
│ │ └─┬ brace-expansion@1.1.11
│ │   ├── balanced-match@1.0.0
│ │   └── concat-map@0.0.1
│ ├── pstree.remy@1.1.8
│ ├── semver@5.7.1
│ ├── supports-color@5.5.0 deduped
│ ├─┬ touch@3.1.0
│ │ └─┬ nopt@1.0.10
│ │   └── abbrev@1.1.1
│ ├─┬ undefsafe@2.0.3
│ │ └─┬ debug@2.6.9
│ │   └── ms@2.0.0 deduped
│ └─┬ update-notifier@4.1.1
│   ├─┬ boxen@4.2.0
│   │ ├─┬ ansi-align@3.0.0
│   │ │ └─┬ string-width@3.1.0
│   │ │   ├── emoji-regex@7.0.3
│   │ │   ├── is-fullwidth-code-point@2.0.0
│   │ │   └─┬ strip-ansi@5.2.0
│   │ │     └── ansi-regex@4.1.0
│   │ ├── camelcase@5.3.1
│   │ ├── chalk@3.0.0 deduped
│   │ ├── cli-boxes@2.2.1
│   │ ├─┬ string-width@4.2.0
│   │ │ ├── emoji-regex@8.0.0
│   │ │ ├── is-fullwidth-code-point@3.0.0
│   │ │ └─┬ strip-ansi@6.0.0
│   │ │   └── ansi-regex@5.0.0
│   │ ├── term-size@2.2.0
│   │ ├── type-fest@0.8.1
│   │ └─┬ widest-line@3.1.0
│   │   └── string-width@4.2.0 deduped
│   ├─┬ chalk@3.0.0
│   │ ├─┬ ansi-styles@4.2.1
│   │ │ ├── @types/color-name@1.1.1
│   │ │ └─┬ color-convert@2.0.1
│   │ │   └── color-name@1.1.4
│   │ └─┬ supports-color@7.2.0
│   │   └── has-flag@4.0.0
│   ├─┬ configstore@5.0.1
│   │ ├─┬ dot-prop@5.3.0
│   │ │ └── is-obj@2.0.0
│   │ ├── graceful-fs@4.2.4 deduped
│   │ ├─┬ make-dir@3.1.0
│   │ │ └── semver@6.3.0
│   │ ├─┬ unique-string@2.0.0
│   │ │ └── crypto-random-string@2.0.0
│   │ ├─┬ write-file-atomic@3.0.3
│   │ │ ├── imurmurhash@0.1.4 deduped
│   │ │ ├── is-typedarray@1.0.0
│   │ │ ├── signal-exit@3.0.3 deduped
│   │ │ └─┬ typedarray-to-buffer@3.1.5
│   │ │   └── is-typedarray@1.0.0 deduped
│   │ └── xdg-basedir@4.0.0 deduped
│   ├── has-yarn@2.1.0
│   ├── import-lazy@2.1.0 deduped
│   ├─┬ is-ci@2.0.0
│   │ └── ci-info@2.0.0
│   ├─┬ is-installed-globally@0.3.2
│   │ ├─┬ global-dirs@2.0.1
│   │ │ └── ini@1.3.5 deduped
│   │ └── is-path-inside@3.0.2
│   ├── is-npm@4.0.0
│   ├── is-yarn-global@0.3.0
│   ├─┬ latest-version@5.1.0
│   │ └─┬ package-json@6.5.0
│   │   ├─┬ got@9.6.0
│   │   │ ├── @sindresorhus/is@0.14.0
│   │   │ ├─┬ @szmarczak/http-timer@1.1.2
│   │   │ │ └── defer-to-connect@1.1.3
│   │   │ ├─┬ cacheable-request@6.1.0
│   │   │ │ ├─┬ clone-response@1.0.2
│   │   │ │ │ └── mimic-response@1.0.1 deduped
│   │   │ │ ├─┬ get-stream@5.2.0
│   │   │ │ │ └── pump@3.0.0 deduped
│   │   │ │ ├── http-cache-semantics@4.1.0
│   │   │ │ ├─┬ keyv@3.1.0
│   │   │ │ │ └── json-buffer@3.0.0
│   │   │ │ ├── lowercase-keys@2.0.0
│   │   │ │ ├── normalize-url@4.5.0
│   │   │ │ └─┬ responselike@1.0.2
│   │   │ │   └── lowercase-keys@1.0.1 deduped
│   │   │ ├─┬ decompress-response@3.3.0
│   │   │ │ └── mimic-response@1.0.1 deduped
│   │   │ ├── duplexer3@0.1.4 deduped
│   │   │ ├─┬ get-stream@4.1.0
│   │   │ │ └─┬ pump@3.0.0
│   │   │ │   ├── end-of-stream@1.4.4 deduped
│   │   │ │   └── once@1.4.0 deduped
│   │   │ ├── lowercase-keys@1.0.1 deduped
│   │   │ ├── mimic-response@1.0.1
│   │   │ ├── p-cancelable@1.1.0
│   │   │ ├── to-readable-stream@1.0.0
│   │   │ └─┬ url-parse-lax@3.0.0
│   │   │   └── prepend-http@2.0.0
│   │   ├─┬ registry-auth-token@4.2.0
│   │   │ └── rc@1.2.8 deduped
│   │   ├─┬ registry-url@5.1.0
│   │   │ └── rc@1.2.8 deduped
│   │   └── semver@6.3.0
│   ├─┬ pupa@2.0.1
│   │ └── escape-goat@2.1.1
│   ├─┬ semver-diff@3.1.1
│   │ └── semver@6.3.0
│   └── xdg-basedir@4.0.0
├── performance-now@2.1.0
├─┬ puppeteer@2.1.1
│ ├── @types/mime-types@2.1.0
│ ├─┬ debug@4.1.1
│ │ └── ms@2.1.2
│ ├─┬ extract-zip@1.7.0
│ │ ├── concat-stream@1.6.2 deduped
│ │ ├─┬ debug@2.6.9
│ │ │ └── ms@2.0.0 deduped
│ │ ├── mkdirp@0.5.5 deduped
│ │ └─┬ yauzl@2.10.0
│ │   ├── buffer-crc32@0.2.13
│ │   └─┬ fd-slicer@1.1.0
│ │     └── pend@1.2.0
│ ├─┬ https-proxy-agent@4.0.0
│ │ ├── agent-base@5.1.1
│ │ └── debug@4.1.1 deduped
│ ├── mime@2.4.6
│ ├─┬ mime-types@2.1.27
│ │ └── mime-db@1.44.0 deduped
│ ├── progress@2.0.3
│ ├── proxy-from-env@1.1.0
│ ├─┬ rimraf@2.7.1
│ │ └── glob@7.1.6 deduped
│ └─┬ ws@6.2.1
│   └── async-limiter@1.0.1
├── semver@7.3.2
├─┬ supertest@4.0.2
│ ├── methods@1.1.2 deduped
│ └─┬ superagent@3.8.3
│   ├── component-emitter@1.3.0
│   ├── cookiejar@2.1.2
│   ├── debug@3.1.0 deduped
│   ├── extend@3.0.2 deduped
│   ├─┬ form-data@2.5.1
│   │ ├── asynckit@0.4.0
│   │ ├─┬ combined-stream@1.0.8
│   │ │ └── delayed-stream@1.0.0
│   │ └── mime-types@2.1.27 deduped
│   ├── formidable@1.2.2
│   ├── methods@1.1.2 deduped
│   ├── mime@1.6.0
│   ├── qs@6.9.4 deduped
│   └── readable-stream@2.3.7 deduped
├─┬ tslint@5.20.1
│ ├─┬ @babel/code-frame@7.10.4
│ │ └─┬ @babel/highlight@7.10.4
│ │   ├── @babel/helper-validator-identifier@7.10.4
│ │   ├── chalk@2.4.2 deduped
│ │   └── js-tokens@4.0.0
│ ├── builtin-modules@1.1.1
│ ├── chalk@2.4.2 deduped
│ ├── commander@2.20.3
│ ├── diff@4.0.2
│ ├─┬ glob@7.1.6
│ │ ├── fs.realpath@1.0.0
│ │ ├─┬ inflight@1.0.6
│ │ │ ├── once@1.4.0 deduped
│ │ │ └── wrappy@1.0.2
│ │ ├── inherits@2.0.4 deduped
│ │ ├── minimatch@3.0.4 deduped
│ │ ├─┬ once@1.4.0
│ │ │ └── wrappy@1.0.2 deduped
│ │ └── path-is-absolute@1.0.1 deduped
│ ├─┬ js-yaml@3.14.0
│ │ ├─┬ argparse@1.0.10
│ │ │ └── sprintf-js@1.0.3
│ │ └── esprima@4.0.1
│ ├── minimatch@3.0.4 deduped
│ ├── mkdirp@0.5.5 deduped
│ ├─┬ resolve@1.17.0
│ │ └── path-parse@1.0.6
│ ├── semver@5.7.1
│ ├── tslib@1.13.0
│ └─┬ tsutils@2.29.0
│   └── tslib@1.13.0 deduped
└── typescript@3.9.7

tsc --version: Version 3.9.7

I tried looking for the error, but I found only another issue #304 that doesn't seem to be helpful in this case.

Thank you for your time

AVGP commented 4 years ago

Thanks for reporting the problem, @N0153 Unfortunately I can't reproduce the issue neither with tsc 3.2.1 nor 4.0.2.

Also: line 220 is different from what your build output shows, so I'd suggest to do a git pull --rebase origin main to get the latest mainline code and then npm install --reinstall followed by npm run build.

N0153 commented 4 years ago

Thanks for reporting the problem, @N0153 Unfortunately I can't reproduce the issue neither with tsc 3.2.1 nor 4.0.2.

Also: line 220 is different from what your build output shows, so I'd suggest to do a git pull --rebase origin main to get the latest mainline code and then npm install --reinstall followed by npm run build.

I just did what you suggested and it solved the problem! I have no clue on why the repository cloning "failed" the first time though.

Anyway, thank you for your support.