Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: fix resolutions #5681

Merged
merged 2 commits into from
Mar 10, 2020
Merged

build: fix resolutions #5681

merged 2 commits into from
Mar 10, 2020

Conversation

viceice
Copy link
Member

@viceice viceice commented Mar 10, 2020

  • Remove obsolete yarn resolutions.
  • Add new resolutions, only changes devDependencies

ref rickhanlonii/jest-silent-reporter#20, jest-community/jest-junit#122

@viceice viceice changed the title chore: remove obsolete resolutions chore: fix resolutions Mar 10, 2020
@rarkins rarkins changed the title chore: fix resolutions build: fix resolutions Mar 10, 2020
@viceice
Copy link
Member Author

viceice commented Mar 10, 2020

before
image

❯ yarn why kind-of
yarn why v1.22.0
[1/4] Why do we have the module "kind-of"...?
[2/4] Initialising dependency graph...
warning Resolution field "yargs@13.3.0" is incompatible with requested version "yargs@^11.0.0"
warning Resolution field "yargs@13.3.0" is incompatible with requested version "yargs@^15.0.0"
warning Resolution field "yargs@13.3.0" is incompatible with requested version "yargs@^15.0.0"
warning Resolution field "yargs@13.3.0" is incompatible with requested version "yargs@^15.0.1"
[3/4] Finding dependency...
[4/4] Calculating file sizes...
=> Found "kind-of@3.2.2"
info Has been hoisted to "kind-of"
info Reasons this module exists
   - Hoisted from "is-number#kind-of"
   - Hoisted from "braces#snapdragon-node#snapdragon-util#kind-of"
   - Hoisted from "braces#snapdragon#base#cache-base#to-object-path#kind-of"
   - Hoisted from "braces#snapdragon#base#class-utils#static-extend#object-copy#kind-of"
info Disk size without dependencies: "20KB"
info Disk size with unique dependencies: "40KB"
info Disk size with transitive dependencies: "40KB"
info Number of shared dependencies: 1
=> Found "is-descriptor#kind-of@6.0.2"
info This module exists because "is-descriptor" depends on it.
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "define-property#kind-of@5.1.0"
info Reasons this module exists
   - "define-property#is-descriptor" depends on it
   - Hoisted from "define-property#is-descriptor#kind-of"
info Disk size without dependencies: "24KB"
info Disk size with unique dependencies: "24KB"
info Disk size with transitive dependencies: "24KB"
info Number of shared dependencies: 0
=> Found "is-accessor-descriptor#kind-of@6.0.2"
info This module exists because "is-descriptor#is-accessor-descriptor" depends on it.
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "is-data-descriptor#kind-of@6.0.2"
info This module exists because "is-descriptor#is-data-descriptor" depends on it.
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "anymatch#kind-of@6.0.2"
info Reasons this module exists
   - "anymatch#micromatch" depends on it
   - Hoisted from "anymatch#micromatch#kind-of"
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "define-property#is-accessor-descriptor#kind-of@3.2.2"
info This module exists because "define-property#is-descriptor#is-accessor-descriptor" depends on it.
info Disk size without dependencies: "20KB"
info Disk size with unique dependencies: "40KB"
info Disk size with transitive dependencies: "40KB"
info Number of shared dependencies: 1
=> Found "define-property#is-data-descriptor#kind-of@3.2.2"
info This module exists because "define-property#is-descriptor#is-data-descriptor" depends on it.
info Disk size without dependencies: "20KB"
info Disk size with unique dependencies: "40KB"
info Disk size with transitive dependencies: "40KB"
info Number of shared dependencies: 1
=> Found "nanomatch#kind-of@6.0.2"
info This module exists because "anymatch#micromatch#nanomatch" depends on it.
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "readdirp#kind-of@6.0.2"
info Reasons this module exists
   - "@babel#cli#chokidar#readdirp#micromatch" depends on it
   - Hoisted from "@babel#cli#chokidar#readdirp#micromatch#kind-of"
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "jest-silent-reporter#kind-of@6.0.2"
info Reasons this module exists
   - "jest-silent-reporter#jest-util#@jest#fake-timers#jest-message-util#micromatch" depends on it
   - Hoisted from "jest-silent-reporter#jest-util#@jest#fake-timers#jest-message-util#micromatch#kind-of"
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "sane#kind-of@6.0.2"
info Reasons this module exists
   - "jest#@jest#core#jest-haste-map#sane#micromatch" depends on it
   - Hoisted from "jest#@jest#core#jest-haste-map#sane#micromatch#kind-of"
info Disk size without dependencies: "32KB"
info Disk size with unique dependencies: "32KB"
info Disk size with transitive dependencies: "32KB"
info Number of shared dependencies: 0
=> Found "has-values#kind-of@4.0.0"
info This module exists because "braces#snapdragon#base#cache-base#has-value#has-values" depends on it.
info Disk size without dependencies: "20KB"
info Disk size with unique dependencies: "40KB"
info Disk size with transitive dependencies: "40KB"
info Number of shared dependencies: 1
Done in 1.31s.

after
image
image

@viceice
Copy link
Member Author

viceice commented Mar 10, 2020

live tests against github / bitbucket server / gitlab self-hosted works as expected.

@viceice viceice marked this pull request as ready for review March 10, 2020 07:23
@rarkins rarkins merged commit ab94f91 into master Mar 10, 2020
@rarkins rarkins deleted the chore/resolutions branch March 10, 2020 07:35
rarkins added a commit that referenced this pull request Mar 10, 2020
commit bef70f7f22dd5a072bab68bdc1c728be92a83260
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 15:29:06 2020 +0100

    mew

commit 09e381c
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 14:58:03 2020 +0100

    fix: Revert "feat(npm): update resolutions (#5636)"

    This reverts commit c974929.

commit ff5fe49
Author: Renovate Bot <bot@renovateapp.com>
Date:   Tue Mar 10 11:03:11 2020 +0000

    chore(deps): update dependency @types/jest to v25.1.4

commit ae069b0
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 12:00:36 2020 +0100

    fix(github): set stabilityStatus using Enum

    Closes #5683

commit 2599ea5
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 11:24:38 2020 +0100

    refactor: commit -> commitHash

commit c97defc
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 11:11:08 2020 +0100

    refactor: AwaitingBranchAutomerge ->   BlockeddByBranchAutomerge

commit b20591e
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 11:10:09 2020 +0100

    refactor: use CamelCase for enum values

commit d0ec7cf
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 10:19:44 2020 +0100

    refactor: move PrResult to workers/common

commit 2039f17
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 10:02:02 2020 +0100

    refactor: result -> prResult

commit 34496d3
Author: Rhys Arkins <rhys@arkins.net>
Date:   Tue Mar 10 09:16:11 2020 +0100

    feat: PrResult enum (#5664)

commit ab94f91
Author: Michael Kriese <michael.kriese@visualon.de>
Date:   Tue Mar 10 08:35:31 2020 +0100

    build: fix resolutions (#5681)

commit c974929
Author: Michael Kriese <michael.kriese@visualon.de>
Date:   Tue Mar 10 06:52:27 2020 +0100

    feat(npm): update resolutions (#5636)
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 16, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants