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

chore(deps): update dependency react-styleguidist to v11 #339

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 9, 2020

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-styleguidist ^8.0.6 -> ^11.0.0 age adoption passing confidence

Release Notes

styleguidist/react-styleguidist

v11.2.0

Compare Source

Features

v11.1.8

Compare Source

Bug Fixes

v11.1.7

Compare Source

Bug Fixes

v11.1.6

Compare Source

Bug Fixes

v11.1.5

Compare Source

Bug Fixes

v11.1.4

Compare Source

Bug Fixes

v11.1.3

Compare Source

Bug Fixes

v11.1.2

Compare Source

Bug Fixes

v11.1.1

Compare Source

Bug Fixes

v11.1.0

Compare Source

Features
  • Add expand option for sections and allow custom root section options (#​1689) (3ab6f8d)

v11.0.11

Compare Source

Bug Fixes

v11.0.10

Compare Source

Bug Fixes

v11.0.9

Compare Source

Bug Fixes

v11.0.8

Compare Source

Fix

v11.0.7

Compare Source

Fix

v11.0.6

Compare Source

chore
Chore
Docs
Fix

v11.0.5

Compare Source

fix
Fix

v11.0.4

Compare Source

Fix

v11.0.3

Compare Source

Fix

v11.0.2

Compare Source

Docs
Fix

v11.0.1

Compare Source

chore
Chore
Fix

v11.0.0

Compare Source

Breaking changes
TypeScript is supported out of the box

We’ve upgraded react-docgen to 5.0.0, which adds TypeScript support out of the box. The are some limitations, so you may still need react-docgen-typescript — see docs for more details.

(#​1500, #​1354 by @​thecodejack)

Fenced code blocks in Markdown with tags typescript, ts and tsx are rendered as an interactive playground. Use the static modifier to render only the source code.

(#​1543 by @​mitsuruog)

Prefer default exports over named exports

When your component has both default and named exports, Styleguidist will use the default export. This is a bug fix but may break some style guides.

import React from 'react';
import styled from 'styled-components';

export const C: React.FC = () => {
  ...
}

const StyledC = styled(C)``;

export default StyledC;

(#​1504 by @​Lazyuki)

Remove initialState/setState/state

Use React’s useState hook instead:

- initialState = { count: 42 };
- <Button onClick={() => setState({ count: state.count + 1 })}>{state.count}</Button>
+ const [count, setCount] = React.useState(42);
+ <Button onClick={() => setCount(count + 1)}>{count}</Button>

(#​1501 by @​thecodejack)

Drop Node.js 8 support

The minimum supported version on Node.js is 10.

(#​1545)

New features

v10.6.2

Compare Source

Fix

v10.6.1

Compare Source

Build
Fix

v10.6.0

Compare Source

New

v10.5.0

Compare Source

Docs
New

v10.4.2

Compare Source

Build
fix
Fix

v10.4.1

Compare Source

Fix

v10.4.0

Compare Source

Build
chore
  • Add By me a coffee button (35e5d65)
Docs
New

v10.3.2

Compare Source

Fix

v10.3.1

Compare Source

Fix

v10.3.0

Compare Source

Bug fixes
New features

v10.2.1

Compare Source

Build
  • Add funding field to package.json (266f5d4)
Chore
Docs
Fix

v10.2.0

Compare Source

New

v10.1.0

Compare Source

New
  • Modifier to add whitespace between example components (#​1456 by @​apennell, fixes #​841) (4e0bd70)

    Let users to be able to add padding between example components without
    adding manual styling to their example code. This adds the padded modifier option
    to the Playground that adds padding between each example component in that block.

    <Button>Push Me</Button>
    <Button>Click Me</Button>
    <Button>Tap Me</Button>

v10.0.1

Compare Source

Fix

v10.0.0

Compare Source

👋 Support Styleguidist on Open Collective 👋

Mostly code cleanup (use official React Context API, remove deprecated React APIs and patterns, etc.) and dependencies updates.

#​1355 by @​tienpham94, #​1440 by @​J-Kallunki, #​1453 by @​sapegin

Breaking changes

  • Node 8.9 is the lowest supported version
  • React 16.8 is the lowest supported version

v9.2.0

Compare Source

New features

v9.1.16

Compare Source

  • Fixed: Update react-dev-utils to ^9.0.3 (#​1422)

v9.1.15

Compare Source

  • Fixed: Don't show empty sidebar (#​1423)

v9.1.14

Compare Source

  • Fixed: Single sections can contain only sections (#​1414)

    If a section contains only one subsection, Styleguidist will try to optimize. It will make the section disappear and show its components instead. If this section only contain sections, no components, it should optimize to sections and not to components.

v9.1.13

Compare Source

  • Fixed: Highlighting currently selected page on sidebar broken with sections (#​1405)

    Fixes #​1375

v9.1.12

Compare Source

v9.1.11

Compare Source

  • Fixed: Fix incorrect component name capitalization (#​1388)

    Fixes #​1381

    It is happening in a case when react-docgen (any propsParser) is failed and we are trying to guess displayName based on file path. We capitalized every case in the string instead of just words separated by - started with small letter. So, by mistake ButtonTS in file name becomes ButtonTs display name for component when we expect ButtonTS Use [startCase]:(https://lodash.com/docs/4.17.11#startCase) and then remove spaces which covers most our cases likemy-buttonTS => MyButtonTS

v9.1.10

Compare Source

  • Fixed: Encode sublinks in URLs to fix broken routes (#​1389)

    Follow up of #​1332. This appears to have fixed the top level section link, but any sub-links within that section are still unencoded and result in "Page not found".

v9.1.9

Compare Source

  • Fixed: Add .wasm and .mjs to default extensions in webpack config (#​1386)

    Fixes #​1385

v9.1.8

Compare Source

  • Fixed: Replace 'walkes' with 'estree-walker' (#​1349)

    Because walkes has LGPL-3 license.

    Fixes #​1210

v9.1.7

Compare Source

  • Fixed: Encode section pages URLs if a section name has special symbols (#​1384)

    Closes #​1332

v9.1.6

Compare Source

v9.1.5

Compare Source

  • Fixed: to make async/await work by default (#​1379)

    Add transforms: { asyncAwait: false } for default compilerConfig to make async/await work by default. Bublé doesn't have transform for async/await so they raise an error if asyncAwait transformation in configuration is not false (true by default) since bublé v0.9.7.

    Closes #​1371

v9.1.4

Compare Source

  • Fixed: Add .ts and .tsx to default extensions in webpack config

    #​750

v9.1.3

Compare Source

  • Fixed: Allow section content to be function (#​1368)

v9.1.2

Compare Source

  • Fixed: A build should't break when assetsDir is an array (#​1367)

    copy-webpack-plugin is not allowed from to be as an array. If we still want to use from and support array format for assetsDir, then we should pass array of objects {from: ...} to the plugin.

    Closes #​1320

v9.1.1

Compare Source

  • Fixed: Section anchors shouldn't conflict with component anchors (#​1364)

    Prefix section anchors with section-.

    Closes #​1342

v9.1.0

Compare Source

New features

Support React Hooks in examples

You can now use hooks in the examples, like the useState hook:

const [count, setCount] = React.useState(42);
<Button onClick={() => setCount(count + 1)}>{count}</Button>

(#​1353 by @​eragon512)

Bug fixes

v9.0.9

Compare Source

  • Fixed: Correctly render sections with href in sidebar (#​1346)

    Closes #​1141

v9.0.8

Compare Source

  • Fixed: Allow code base color to be customized with theme config (#​1335)

    • Add theme.color.codeBase property
    • Allow syntax highlight default color to set without affecting base color
    • The codeBase and codeBackground can be set to allow finer control on code text contrast ratios. e.g. Use dark themes for code samples.

v9.0.7

Compare Source

  • Fixed: Scroll section into view when exiting isolated mode (#​1331)

v9.0.6

Compare Source

  • Fixed: Add output.publicPath option to webpack config to make Create React App happy

    Fix #​1247

v9.0.5

Compare Source

  • Fixed: Upgrade deps

v9.0.4

Compare Source

  • Fixed: Allow trailing comma in named imports in examples (#​1296)

    Fixes #​1295

v9.0.3

Compare Source

v9.0.2

Compare Source

  • Fixed: Fix broken Node API

    main field in package.json should point to babelified script

    Closes #​1291 #​1293

  • Fixed: Correctly pass key/anchor to config error messages

    • Styleguidist should show an error message with a link to configuration docs, to a particular config option if possible.
    • Actual error text should be part of the message and not passed as a separte field, otherwise the consumer will have to do extra work to show it.
    • Remove anchor field on StyleguidistError class.

Closes #​1292 #​1293

v9.0.1

Compare Source

v9.0.0

Compare Source

👋 Support Styleguidist on Open Collective 👋

New features and breaking changes

Do not put components into global namespace

Finally we’ve fixed one of the oldest and weirdest issues. Style guide components are no longer accessible on window. Only the current component is accessible in the example context (not on window). You need to explicitly import any other component.

Current component (like Button in this example) is always accessible by its name in the example code. If you want to use other components, you need to explicitly import them:

import Placeholder from '../Placeholder'
;<Button>
  <Placeholder />
</Button>

Or you can explicitly import everything, to make examples easier to copy into your app code:

import React from 'react'
import Button from 'rsg-example/components/Button'
import Placeholder from 'rsg-example/components/Placeholder'
;<Button>
  <Placeholder />
</Button>

require() statements are still supported.

(#​1116), #​1075, #​325 by @​sapegin)

Import statements in the editor

You can also define aliases to make your imports more realistic:

// ```jsx inside Markdown
import React from 'react'
import Button from 'rsg-example/components/Button'
import Placeholder from 'rsg-example/components/Placeholder'

In this example rsg-example is an alias defined with the moduleAliases config option.

(#​1142, #​1076, #​1109, #​1074 by @​sapegin)

New editor and syntax highlighting

We’ve replaced CodeMirror with react-simple-code-editor and now using Prism for code highlighting in static examples (instead of Highlight.js) and inside the editor. So code look the same everywhere in Styleguidist. We’ve also removed code splitting because react-simple-code-editor is so small and we can include it in the main bundle (8 KB vs 57 KB).

There are some breaking changes in the config:

  • editorConfig and highlightTheme (already deprecated) options were removed.
  • No highlighting in fenced code blocks without specified language.
  • No highlighting in non-fenced code blocks.

New editor

(#​1054 #​987 by @​sapegin)

Drop React 15 support

React 16.3 is the minimum supported version.

Bug fixes

  • Add generated IDs to Markdown headings (#​833, #​1163 by @​wkillerud)
  • Add pointer cursor on element
  • Add custom focus outline for element
  • Add focus outline for the editor
  • Better focus styles for inputs
  • Tweak colors to make them more accessible
  • Wrap long lines in pre tags
  • Incorrect current section highlighting on partial match (#​1237, #​1239 by @​guyius)
  • Support webpack configs from react-scripts > 2.1.1 (#​1241, #​1243 by @​oterral)
  • Change some dependencies to smaller alternatives (#​1248 by @​lukeed)

Changes since 9.0.0-beta4

Migrating from 8.x to 9.x

  1. Explicitly import all but the current component in your examples:
// ```jsx inside ButtonGroup.md - 8.x
// All style guide component are accessible globally
;<ButtonGroup>
  <Button>Eins</Button>
  <Button>Zwei</Button>
  <Button>Polizei</Button>
</ButtonGroup>

// ```jsx inside ButtonGroup.md - 8.x
// Only the current (ButtonGroup) component is accessible
import Button from './Button'
;<ButtonGroup>
  <Button>Eins</Button>
  <Button>Zwei</Button>
  <Button>Polizei</Button>
</ButtonGroup>
  1. Replace highlightTheme or editorConfig.theme options with theme option:

We don’t have predefined themes anymore, you can customize colors as you wish using the theme config option:

// styleguide.config.js
module.exports = {
  theme: {
    color: {
      codeComment: '#&#8203;6d6d6d',
      codePunctuation: '#&#8203;999',
      codeProperty: '#&#8203;905',
      codeDeleted: '#&#8203;905',
      codeString: '#&#8203;690',
      codeInserted: '#&#8203;690',
      codeOperator: '#&#8203;9a6e3a',
      codeKeyword: '#&#8203;1673b1',
      codeFunction: '#DD4A68',
      codeVariable: '#e90'
    }
  }
}

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Mar 9, 2020
@TDSBot
Copy link

TDSBot commented Mar 9, 2020

Packages pending updates:

- @tds/community-blockquote: 1.0.1 => 1.0.2
- @tds/community-date-picker: 1.0.0 => 1.0.1
- @tds/community-pagination: 2.0.1 => 2.0.2
- @tds/community-preview-card: 1.1.2 => 1.1.3
- @tds/community-ribbon: 1.0.1 => 1.0.2
- @tds/community-side-navigation: 3.0.4 => 3.0.5
- @tds/community-skeleton: 3.0.1 => 3.0.2
- @tds/community-skeleton-provider: 2.0.3 => 2.0.4
- @tds/community-testimonial: 3.0.1 => 3.0.2
- @tds/community-toggle-switch: 3.0.1 => 3.0.2

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 71a17ef to 799df3d Compare March 19, 2020 19:41
@TDSBot
Copy link

TDSBot commented Mar 19, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 799df3d to e7a7d5a Compare March 19, 2020 20:29
@TDSBot
Copy link

TDSBot commented Mar 19, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from e7a7d5a to eb5e160 Compare March 20, 2020 20:25
@TDSBot
Copy link

TDSBot commented Mar 20, 2020

Packages pending updates:

- @tds/community-tags: 1.0.1 => 1.0.2

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from eb5e160 to 704a376 Compare April 13, 2020 19:38
@TDSBot
Copy link

TDSBot commented Apr 13, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 704a376 to f234f88 Compare May 15, 2020 18:48
@TDSBot
Copy link

TDSBot commented May 15, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from f234f88 to 808e67c Compare June 12, 2020 17:46
@TDSBot
Copy link

TDSBot commented Jun 12, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 808e67c to f9a584d Compare June 12, 2020 18:44
@TDSBot
Copy link

TDSBot commented Jun 12, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from f9a584d to 35fe021 Compare June 19, 2020 18:00
@TDSBot
Copy link

TDSBot commented Jun 19, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 35fe021 to bfb3ca5 Compare June 19, 2020 19:00
@TDSBot
Copy link

TDSBot commented Jun 19, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from bfb3ca5 to 7074fce Compare July 10, 2020 17:50
@TDSBot
Copy link

TDSBot commented Jul 10, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 7074fce to c728409 Compare July 10, 2020 19:17
@TDSBot
Copy link

TDSBot commented Jul 10, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from c728409 to 32f4751 Compare July 14, 2020 00:44
@TDSBot
Copy link

TDSBot commented Jul 14, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 32f4751 to a10116f Compare July 21, 2020 23:41
@TDSBot
Copy link

TDSBot commented Jul 21, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from a10116f to 5c9c756 Compare July 31, 2020 01:51
@TDSBot
Copy link

TDSBot commented Jul 31, 2020

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from bf1c86b to f4b7f3b Compare June 22, 2021 20:33
@TDSBot
Copy link

TDSBot commented Jun 22, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from f4b7f3b to 169ed95 Compare June 28, 2021 23:53
@TDSBot
Copy link

TDSBot commented Jun 28, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 169ed95 to 25f28a2 Compare June 29, 2021 23:25
@TDSBot
Copy link

TDSBot commented Jun 29, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 25f28a2 to 459d965 Compare June 30, 2021 22:44
@TDSBot
Copy link

TDSBot commented Jun 30, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 459d965 to dd82722 Compare July 14, 2021 01:05
@TDSBot
Copy link

TDSBot commented Jul 14, 2021

Packages pending updates:

- @tds/community-mini-expand-collapse: 0.2.0 => 0.2.1

If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from dd82722 to 1072a53 Compare July 15, 2021 02:21
@TDSBot
Copy link

TDSBot commented Jul 15, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 1072a53 to 08fbc6e Compare July 20, 2021 19:40
@TDSBot
Copy link

TDSBot commented Jul 20, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 08fbc6e to e36e333 Compare July 21, 2021 19:41
@TDSBot
Copy link

TDSBot commented Jul 21, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from e36e333 to 0552896 Compare September 10, 2021 01:51
@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 0552896 to 60ca8e5 Compare September 22, 2021 03:22
@TDSBot
Copy link

TDSBot commented Sep 22, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 60ca8e5 to 4e6bd15 Compare October 14, 2021 05:17
@TDSBot
Copy link

TDSBot commented Oct 14, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 4e6bd15 to e2ddd08 Compare October 19, 2021 12:04
@TDSBot
Copy link

TDSBot commented Oct 19, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from e2ddd08 to e3f66fb Compare October 22, 2021 05:10
@TDSBot
Copy link

TDSBot commented Oct 22, 2021

Packages pending updates:


If this is not what you expected, ensure that your commit messages follow the TDS commit types guide on this page: https://tds.telus.com/contributing/developer-guide.html and try again.

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from e3f66fb to 75fe610 Compare March 8, 2022 05:58
@renovate
Copy link
Contributor Author

renovate bot commented Mar 8, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm WARN deprecated [email protected]: The functionality that this package provided is now in @npmcli/arborist
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-resolve#deprecated
npm WARN deprecated [email protected]: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated [email protected]: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated [email protected]: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated [email protected]: this library is no longer supported
npm WARN deprecated [email protected]: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.
npm WARN @octokit/[email protected] requires a peer of @octokit/core@>=3 but none is installed. You must install peer dependencies yourself.

lerna notice cli v3.22.1
lerna info versioning independent
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@~2.3.2 (node_modules/fork-ts-checker-webpack-plugin/node_modules/chokidar/node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
npm WARN [email protected] requires a peer of typescript@>= 2.7 but none is installed. You must install peer dependencies yourself.

lerna notice cli v3.22.1
lerna info versioning independent
lerna info Bootstrapping 25 packages
lerna info Installing external dependencies
lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only exited 1 in '@tds/community-skeleton-provider'
lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only stderr:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @tds/[email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/react
npm ERR!   peer react@"^16.8.2 || ^17.0.0" from the root project
npm ERR!   peer react@"^16.8.2 || ^17.0.0" from @tds/[email protected]
npm ERR!   node_modules/@tds/core-heading
npm ERR!     peer @tds/core-heading@"^2.2.5 || ^3.1.0" from the root project
npm ERR!   4 more (react-dom, styled-components, @tds/core-image, @tds/core-text)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! recompose@"^0.30.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/react
npm ERR!   peer react@"^0.14.0 || ^15.0.0 || ^16.0.0" from [email protected]
npm ERR!   node_modules/recompose
npm ERR!     recompose@"^0.30.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate-cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate-cache/others/npm/_logs/2022-04-12T06_07_48_858Z-debug-0.log

lerna ERR! npm install --ignore-scripts --ignore-scripts --no-audit --package-lock-only exited 1 in '@tds/community-skeleton-provider'

@renovate renovate bot force-pushed the renovate/react-styleguidist-11.x branch from 75fe610 to 6b04d1d Compare April 12, 2022 06:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants