From b48d16e80adc6f2cfb49524243a5e87f01465abb Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdxcode@users.noreply.github.com> Date: Mon, 12 Feb 2018 17:59:50 -0800 Subject: [PATCH] fix: rename to oclif --- .circleci/config.yml | 14 ++--- .circleci/greenkeeper | 4 +- .eslintrc | 2 +- .gitignore | 1 + README.md | 10 +-- appveyor.yml | 6 +- package.json | 18 +++--- src/deps.ts | 4 +- tslint.json | 2 +- yarn.lock | 137 ++++++++++++++++++++---------------------- 10 files changed, 96 insertions(+), 102 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bba182e3..932439c4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,16 +6,16 @@ jobs: - image: node:latest working_directory: ~/cli environment: - NYC: "yarn exec nyc -- --nycrc-path node_modules/@anycli/nyc-config/.nycrc" + NYC: "yarn exec nyc -- --nycrc-path node_modules/@oclif/nyc-config/.nycrc" MOCHA_FILE: "reports/mocha.xml" steps: - checkout - restore_cache: &restore_cache keys: - - v0-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}} - - v0-yarn-{{checksum ".circleci/config.yml"}} + - v1-yarn-{{checksum ".circleci/config.yml"}}-{{ checksum "yarn.lock"}} + - v1-yarn-{{checksum ".circleci/config.yml"}} - run: .circleci/greenkeeper - - run: yarn add -D nyc@11 @anycli/nyc-config@0 mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6 + - run: yarn add -D nyc@11 @oclif/nyc-config@0 mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6 - run: | mkdir -p reports $NYC yarn test --reporter mocha-junit-reporter @@ -34,13 +34,13 @@ jobs: - add_ssh_keys - checkout - restore_cache: *restore_cache - - run: yarn global add @anycli/semantic-release@1 semantic-release@12 + - run: yarn global add @oclif/semantic-release@1 semantic-release@12 - run: yarn --frozen-lockfile - run: | export PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH - semantic-release -e @anycli/semantic-release + semantic-release -e @oclif/semantic-release - save_cache: - key: v0-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}} + key: v1-yarn-{{checksum ".circleci/config.yml"}}-{{checksum "yarn.lock"}} paths: - ~/cli/node_modules - /usr/local/share/.cache/yarn diff --git a/.circleci/greenkeeper b/.circleci/greenkeeper index 02652544..bf73a3e4 100755 --- a/.circleci/greenkeeper +++ b/.circleci/greenkeeper @@ -6,7 +6,7 @@ PATH=/usr/local/share/.config/yarn/global/node_modules/.bin:$PATH if [[ "$CIRCLE_BRANCH" != greenkeeper/* ]]; then yarn - yarn check + # yarn check exit 0 fi @@ -21,5 +21,5 @@ if [[ ! -x "$(command -v greenkeeper-lockfile-update)" ]]; then fi greenkeeper-lockfile-update -yarn install +yarn greenkeeper-lockfile-upload diff --git a/.eslintrc b/.eslintrc index adc32958..e56091ba 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,3 +1,3 @@ { - "extends": "anycli" + "extends": "oclif" } diff --git a/.gitignore b/.gitignore index 7bc5cb1e..e9cba506 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *-debug.log *-error.log +.oclif.manifest.json /.nyc_output /coverage /coverage.lcov diff --git a/README.md b/README.md index 2ccb0ab6..46f95686 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ cli-ux cli IO utilities [![Version](https://img.shields.io/npm/v/cli-ux.svg)](https://npmjs.org/package/cli-ux) -[![CircleCI](https://circleci.com/gh/anycli/cli-ux/tree/master.svg?style=svg)](https://circleci.com/gh/anycli/cli-ux/tree/master) -[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/anycli/cli-ux?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/cli-ux/branch/master) -[![Codecov](https://codecov.io/gh/anycli/cli-ux/branch/master/graph/badge.svg)](https://codecov.io/gh/anycli/cli-ux) -[![Greenkeeper](https://badges.greenkeeper.io/anycli/cli-ux.svg)](https://greenkeeper.io/) +[![CircleCI](https://circleci.com/gh/oclif/cli-ux/tree/master.svg?style=svg)](https://circleci.com/gh/oclif/cli-ux/tree/master) +[![Appveyor CI](https://ci.appveyor.com/api/projects/status/github/oclif/cli-ux?branch=master&svg=true)](https://ci.appveyor.com/project/heroku/cli-ux/branch/master) +[![Codecov](https://codecov.io/gh/oclif/cli-ux/branch/master/graph/badge.svg)](https://codecov.io/gh/oclif/cli-ux) +[![Greenkeeper](https://badges.greenkeeper.io/oclif/cli-ux.svg)](https://greenkeeper.io/) [![Known Vulnerabilities](https://snyk.io/test/npm/cli-ux/badge.svg)](https://snyk.io/test/npm/cli-ux) [![Downloads/week](https://img.shields.io/npm/dw/cli-ux.svg)](https://npmjs.org/package/cli-ux) -[![License](https://img.shields.io/npm/l/cli-ux.svg)](https://github.com/anycli/cli-ux/blob/master/package.json) +[![License](https://img.shields.io/npm/l/cli-ux.svg)](https://github.com/oclif/cli-ux/blob/master/package.json) diff --git a/appveyor.yml b/appveyor.yml index 87593df8..1dd99ee3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,11 +6,11 @@ cache: install: - ps: Install-Product node $env:nodejs_version x64 - - yarn add -D nyc@11 @anycli/nyc-config@0 + - yarn add -D nyc@11 @oclif/nyc-config@0 test_script: - - .\node_modules\.bin\nyc --nycrc-path node_modules/@anycli/nyc-config/.nycrc yarn test + - .\node_modules\.bin\nyc --nycrc-path node_modules/@oclif/nyc-config/.nycrc yarn test after_test: - - .\node_modules\.bin\nyc --nycrc-path node_modules/@anycli/nyc-config/.nycrc report --reporter text-lcov > coverage.lcov + - .\node_modules\.bin\nyc --nycrc-path node_modules/@oclif/nyc-config/.nycrc report --reporter text-lcov > coverage.lcov - ps: | $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh diff --git a/package.json b/package.json index 0dfb0679..6b8f3e5c 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,10 @@ "description": "cli IO utilities", "version": "3.3.18", "author": "Jeff Dickey @jdxcode", - "bugs": "https://github.com/anycli/cli-ux/issues", + "bugs": "https://github.com/oclif/cli-ux/issues", "dependencies": { - "@anycli/screen": "^0.0.3", "@heroku/linewrap": "^1.0.0", + "@oclif/screen": "^1.0.0", "ansi-styles": "^3.2.0", "cardinal": "^1.0.0", "chalk": "^2.3.0", @@ -21,7 +21,7 @@ "supports-color": "^5.1.0" }, "devDependencies": { - "@anycli/tslint": "^0.2.6", + "@oclif/tslint": "^0.2.7", "@types/ansi-styles": "^2.0.30", "@types/chai": "^4.1.2", "@types/clean-stack": "^1.3.0", @@ -30,14 +30,14 @@ "@types/indent-string": "^3.0.0", "@types/lodash": "^4.14.101", "@types/mocha": "^2.2.48", - "@types/node": "^9.4.0", + "@types/node": "^9.4.5", "@types/semver": "^5.5.0", "@types/strip-ansi": "^3.0.0", "@types/supports-color": "^3.1.0", "chai": "^4.1.2", "concurrently": "^3.5.1", "eslint": "^4.17.0", - "eslint-config-anycli": "^1.3.2", + "eslint-config-oclif": "^1.3.1", "fancy-test": "^1.0.1", "husky": "^0.14.3", "mocha": "^5.0.0", @@ -50,16 +50,16 @@ "files": [ "/lib" ], - "homepage": "https://github.com/anycli/cli-ux", + "homepage": "https://github.com/oclif/cli-ux", "keywords": [ - "anycli" + "oclif" ], "license": "MIT", "main": "lib/index.js", - "repository": "anycli/cli-ux", + "repository": "oclif/cli-ux", "scripts": { "build": "rm -rf lib && tsc", - "lint": "concurrently -p command \"eslint .\" \"tsc -p test --noEmit\" \"tslint -p test\"", + "lint": "concurrently -p command \"tsc -p test --noEmit\" \"tslint -p test -t stylish\"", "posttest": "yarn run lint", "prepublishOnly": "yarn run build", "test": "mocha --forbid-only \"test/**/*.test.ts\"" diff --git a/src/deps.ts b/src/deps.ts index 6753514f..c908af11 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -1,4 +1,4 @@ -import screen = require('@anycli/screen') +import screen = require('@oclif/screen') import ansiStyles = require('ansi-styles') import stripAnsi = require('strip-ansi') @@ -13,7 +13,7 @@ export const deps = { get ansiStyles(): typeof ansiStyles { return fetch('ansi-styles') }, get ansiEscapes(): any { return fetch('ansi-escapes') }, get passwordPrompt(): any { return fetch('password-prompt') }, - get screen(): typeof screen { return fetch('@anycli/screen') }, + get screen(): typeof screen { return fetch('@oclif/screen') }, get prompt(): typeof prompt.default { return fetch('./prompt').default }, get styledObject(): typeof styledObject.default { return fetch('./styled/object').default }, diff --git a/tslint.json b/tslint.json index df846656..26507cec 100644 --- a/tslint.json +++ b/tslint.json @@ -1,5 +1,5 @@ { - "extends": "@anycli/tslint", + "extends": "@oclif/tslint", "rules": { "prefer-template": false } diff --git a/yarn.lock b/yarn.lock index 16d994ee..43c1af96 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,21 +2,21 @@ # yarn lockfile v1 -"@anycli/screen@^0.0.3": - version "0.0.3" - resolved "https://registry.yarnpkg.com/@anycli/screen/-/screen-0.0.3.tgz#f0afd970c3ed725702948a45a874ede1fdd9362e" +"@heroku/linewrap@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@heroku/linewrap/-/linewrap-1.0.0.tgz#a9d4e99f0a3e423a899b775f5f3d6747a1ff15c6" -"@anycli/tslint@^0.2.6": - version "0.2.6" - resolved "https://registry.yarnpkg.com/@anycli/tslint/-/tslint-0.2.6.tgz#4251f4cb3744dc577309b4351d2c2e8b65072de2" +"@oclif/screen@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.0.tgz#4f9848c19c2f598bc2572c026c49b04bf32bbca0" + +"@oclif/tslint@^0.2.7": + version "0.2.9" + resolved "https://registry.yarnpkg.com/@oclif/tslint/-/tslint-0.2.9.tgz#804c64b4ed92fa4087276295cdafbcdc78485f3a" dependencies: tslint "^5.9.1" tslint-xo "^0.6.0" -"@heroku/linewrap@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@heroku/linewrap/-/linewrap-1.0.0.tgz#a9d4e99f0a3e423a899b775f5f3d6747a1ff15c6" - "@types/ansi-styles@^2.0.30": version "2.0.30" resolved "https://registry.yarnpkg.com/@types/ansi-styles/-/ansi-styles-2.0.30.tgz#9a645299020a224afc6a8cd055195850b3c2af85" @@ -44,16 +44,16 @@ resolved "https://registry.yarnpkg.com/@types/indent-string/-/indent-string-3.0.0.tgz#9ebb391ceda548926f5819ad16405349641b999f" "@types/lodash@^4.14.101": - version "4.14.101" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.101.tgz#512f6c9e1749890f4d024e98cb995a63f562d458" + version "4.14.102" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.102.tgz#586a3e22385fc79b07cef9c5a1c8a5387986fbc8" "@types/mocha@^2.2.48": version "2.2.48" resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-2.2.48.tgz#3523b126a0b049482e1c3c11877460f76622ffab" -"@types/node@*", "@types/node@^9.4.0": - version "9.4.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.0.tgz#b85a0bcf1e1cc84eb4901b7e96966aedc6f078d1" +"@types/node@*", "@types/node@^9.4.5": + version "9.4.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-9.4.5.tgz#d2a90c634208173d1b1a0a6ba9f1df3de62edcf5" "@types/semver@^5.5.0": version "5.5.0" @@ -85,9 +85,9 @@ acorn@^3.0.4: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" -acorn@^5.2.1: - version "5.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.3.0.tgz#7446d39459c54fb49a80e6ee6478149b940ec822" +acorn@^5.4.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102" ajv-keywords@^2.1.0: version "2.1.1" @@ -126,7 +126,7 @@ ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" -ansi-styles@^3.1.0, ansi-styles@^3.2.0: +ansi-styles@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" dependencies: @@ -173,8 +173,8 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" brace-expansion@^1.1.7: - version "1.1.8" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" dependencies: balanced-match "^1.0.0" concat-map "0.0.1" @@ -236,12 +236,12 @@ chalk@^1.1.3: supports-color "^2.0.0" chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" + version "2.3.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796" dependencies: - ansi-styles "^3.1.0" + ansi-styles "^3.2.0" escape-string-regexp "^1.0.5" - supports-color "^4.0.0" + supports-color "^5.2.0" chardet@^0.4.0: version "0.4.2" @@ -302,8 +302,8 @@ commander@2.6.0: resolved "https://registry.yarnpkg.com/commander/-/commander-2.6.0.tgz#9df7e52fb2a0cb0fb89058ee80c3104225f37e1d" commander@^2.12.1: - version "2.13.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + version "2.14.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.14.1.tgz#2235123e37af8ca3c65df45b026dbd357b01b9aa" concat-map@0.0.1: version "0.0.1" @@ -346,7 +346,7 @@ date-fns@^1.23.0: version "1.29.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.29.0.tgz#12e609cdcb935127311d04d33334e2960a2a54e6" -debug@*, debug@3.1.0, debug@^3.1.0: +debug@3.1.0, debug@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" dependencies: @@ -406,9 +406,9 @@ eslint-ast-utils@^1.0.0: lodash.get "^4.4.2" lodash.zip "^4.2.0" -eslint-config-anycli@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/eslint-config-anycli/-/eslint-config-anycli-1.3.2.tgz#0f28e63a8ae93d490623cdcd89eeafcb7635b082" +eslint-config-oclif@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/eslint-config-oclif/-/eslint-config-oclif-1.3.1.tgz#06b683cd6787d774cbdca22614858e06a3eb83ac" dependencies: eslint-config-xo-space "^0.17.0" eslint-plugin-mocha "^4.11.0" @@ -506,10 +506,10 @@ eslint@^4.17.0: text-table "~0.2.0" espree@^3.5.2: - version "3.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.2.tgz#756ada8b979e9dcfcdb30aad8d1a9304a905e1ca" + version "3.5.3" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6" dependencies: - acorn "^5.2.1" + acorn "^5.4.0" acorn-jsx "^3.0.0" esprima@^4.0.0: @@ -630,8 +630,8 @@ glob@7.1.2, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2: path-is-absolute "^1.0.0" globals@^11.0.1: - version "11.2.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.2.0.tgz#aa2ece052a787563ba70a3dcd9dc2eb8a9a0488c" + version "11.3.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.3.0.tgz#e04fdb7b9796d8adac9c8f64c14837b2313378b0" globby@^5.0.0: version "5.0.0" @@ -672,6 +672,10 @@ has-flag@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + he@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" @@ -842,11 +846,7 @@ lodash.zip@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" -lodash@^4.17.4, lodash@^4.3.0, lodash@^4.5.1: - version "4.17.4" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" - -lodash@^4.17.5: +lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.5.1: version "4.17.5" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511" @@ -858,12 +858,12 @@ lru-cache@^4.0.1: yallist "^2.1.2" make-error@^1.1.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.2.tgz#8762ffad2444dd8ff1f7c819629fa28e24fea1c4" + version "1.3.3" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.3.tgz#a97ae14ffd98b05f543e83ddc395e1b2b6e4cc6a" mimic-fn@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" minimatch@^3.0.2, minimatch@^3.0.4: version "3.0.4" @@ -996,9 +996,9 @@ prelude-ls@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" -process-nextick-args@~1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" progress@^2.0.0: version "2.0.0" @@ -1013,13 +1013,13 @@ ramda@^0.24.1: resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.24.1.tgz#c3b7755197f35b8dc3502228262c4c91ddb6b857" readable-stream@^2.2.2: - version "2.3.3" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + version "2.3.4" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071" dependencies: core-util-is "~1.0.0" inherits "~2.0.3" isarray "~1.0.0" - process-nextick-args "~1.0.6" + process-nextick-args "~2.0.0" safe-buffer "~5.1.1" string_decoder "~1.0.3" util-deprecate "~1.0.1" @@ -1131,10 +1131,9 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" stdout-stderr@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/stdout-stderr/-/stdout-stderr-0.1.6.tgz#82616602f639bf029c87ab1049b02640a39a18ba" + version "0.1.7" + resolved "https://registry.yarnpkg.com/stdout-stderr/-/stdout-stderr-0.1.7.tgz#f3f69391f3e721c2c52aa92fbfa18b8a6e9ce3df" dependencies: - debug "*" strip-ansi "^4.0.0" string-width@^2.1.0, string-width@^2.1.1: @@ -1200,17 +1199,11 @@ supports-color@^3.2.3: dependencies: has-flag "^1.0.0" -supports-color@^4.0.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" +supports-color@^5.1.0, supports-color@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a" dependencies: - has-flag "^2.0.0" - -supports-color@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.1.0.tgz#058a021d1b619f7ddf3980d712ea3590ce7de3d5" - dependencies: - has-flag "^2.0.0" + has-flag "^3.0.0" table@^4.0.1: version "4.0.2" @@ -1270,11 +1263,11 @@ tslib@^1.0.0, tslib@^1.7.1, tslib@^1.8.0, tslib@^1.8.1: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" tslint-consistent-codestyle@^1.11.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.11.0.tgz#051493eeb3536a74e98d14b66f38028a785f8c2b" + version "1.11.1" + resolved "https://registry.yarnpkg.com/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.11.1.tgz#fa39ff5f5f8a25c537bd1e1f50de6190a2f4d70d" dependencies: tslib "^1.7.1" - tsutils "^2.12.2" + tsutils "^2.21.0" tslint-eslint-rules@^4.1.1: version "4.1.1" @@ -1319,9 +1312,9 @@ tsutils@^1.4.0: version "1.9.1" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-1.9.1.tgz#b9f9ab44e55af9681831d5f28d0aeeaf5c750cb0" -tsutils@^2.12.1, tsutils@^2.12.2: - version "2.19.1" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.19.1.tgz#76d7ebdea9d7a7bf4a05f50ead3701b0168708d7" +tsutils@^2.12.1, tsutils@^2.21.0: + version "2.21.1" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.21.1.tgz#5b23c263233300ed7442b4217855cbc7547c296a" dependencies: tslib "^1.8.1" @@ -1332,8 +1325,8 @@ type-check@~0.3.2: prelude-ls "~1.1.2" type-detect@^4.0.0: - version "4.0.7" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.7.tgz#862bd2cf6058ad92799ff5a5b8cf7b6cec726198" + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" typedarray@^0.0.6: version "0.0.6"