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

fix(deps): update all dependencies #2131

Merged
merged 9 commits into from Apr 19, 2022
19 changes: 19 additions & 0 deletions .changeset/chatty-pears-sip.md
@@ -0,0 +1,19 @@
---
'@commercetools-local/generator-package-json': patch
'@commercetools-local/generator-readme': patch
'@commercetools-uikit/calendar-utils': patch
'@commercetools-uikit/data-table-manager': patch
'@commercetools-uikit/icons': patch
'@commercetools-uikit/async-creatable-select-input': patch
'@commercetools-uikit/async-select-input': patch
'@commercetools-uikit/creatable-select-input': patch
'@commercetools-uikit/localized-money-input': patch
'@commercetools-uikit/localized-multiline-text-input': patch
'@commercetools-uikit/money-input': patch
'@commercetools-uikit/select-input': patch
'@commercetools-uikit/select-utils': patch
'@commercetools-uikit/hooks': patch
'visual-testing-app': patch
---

Update all dependencies
4 changes: 4 additions & 0 deletions .github/renovate.json
Expand Up @@ -26,6 +26,10 @@
{
"matchPackageNames": ["markdown-loader"],
"allowedVersions": "<8.0.0"
},
{
"matchPackageNames": ["@percy/puppeteer"],
"allowedVersions": "<=2.0.0"
}
],
"lockFileMaintenance": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1.2.0
uses: changesets/action@v1.2.2
with:
commit: 'ci(changesets): version packages'
publish: yarn changeset publish
Expand Down
768 changes: 0 additions & 768 deletions .yarn/releases/yarn-3.1.1.cjs

This file was deleted.

785 changes: 785 additions & 0 deletions .yarn/releases/yarn-3.2.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Expand Up @@ -6,6 +6,6 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-postinstall.cjs
spec: "https://raw.githubusercontent.com/gravitywelluk/yarn-plugin-postinstall/master/bundles/%40yarnpkg/plugin-postinstall.js"

yarnPath: .yarn/releases/yarn-3.1.1.cjs
yarnPath: .yarn/releases/yarn-3.2.0.cjs

postinstall: ./scripts/postinstall.sh
5 changes: 1 addition & 4 deletions docs/.storybook/webpack.config.js
Expand Up @@ -68,10 +68,7 @@ module.exports = ({ config }) => {
},
{
test: /\.yaml$/,
use: [
{ loader: require.resolve('json-loader') },
{ loader: require.resolve('yaml-loader') },
],
use: [{ loader: require.resolve('yaml-loader') }],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is caused by a breaking change update in yaml-loader dependency.
With the new 0.7.0 version, parsed files are returned as Javascript instead of JSON as before. This means we can't use the json-loader in the chain for .yaml files.

},
// Fix for react-intl
// https://github.com/formatjs/formatjs/issues/143#issuecomment-518774786
Expand Down
11 changes: 5 additions & 6 deletions docs/package.json
Expand Up @@ -7,7 +7,7 @@
"build": "NODE_ENV=production build-storybook -o public -s assets"
},
"dependencies": {
"@babel/core": "7.17.5",
"@babel/core": "7.17.9",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@manypkg/get-packages": "1.1.3",
Expand All @@ -22,9 +22,8 @@
"@storybook/addon-storysource": "5.3.21",
"@storybook/react": "5.3.21",
"@storybook/theming": "5.3.21",
"babel-loader": "8.2.3",
"babel-loader": "8.2.4",
"html-loader": "1.3.2",
"json-loader": "0.5.7",
"markdown-loader": "6.0.0",
"moment": "2.29.2",
"moment-locales-webpack-plugin": "1.2.0",
Expand All @@ -33,12 +32,12 @@
"react-dom": "17.0.2",
"storybook-readme": "5.0.9",
"yaml": "1.10.2",
"yaml-loader": "0.6.0"
"yaml-loader": "0.7.0"
},
"devDependencies": {
"@commercetools-frontend/babel-preset-mc-app": "21.0.0",
"@commercetools-frontend/babel-preset-mc-app": "21.3.4",
"prismjs": "1.27.0",
"webpack": "5.69.1"
"webpack": "5.72.0"
},
"peerDependencies": {
"prismjs": "1.27.0"
Expand Down