Skip to content

Commit

Permalink
Bump postcss-preset-env from 7.0.1 to 7.2.3 (#1282)
Browse files Browse the repository at this point in the history
* Bump postcss-preset-env from 7.0.1 to 7.2.3

Bumps [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) from 7.0.1 to 7.2.3.
- [Release notes](https://github.com/csstools/postcss-plugins/releases)
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

---
updated-dependencies:
- dependency-name: postcss-preset-env
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix tests and update browserslist

* Add changesets

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luke Sheard <me@lukesheard.com>
  • Loading branch information
dependabot[bot] and LukeSheard committed Jan 13, 2022
1 parent 3c0ffba commit a8fdfd0
Show file tree
Hide file tree
Showing 6 changed files with 183 additions and 182 deletions.
5 changes: 5 additions & 0 deletions .changeset/perfect-trains-shave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'modular-scripts': patch
---

Bump browserslist from 4.18.1 to 4.19.1.
5 changes: 5 additions & 0 deletions .changeset/seven-elephants-bake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'modular-scripts': patch
---

Bump postcss-preset-env from 7.0.1 to 7.2.3.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/babel__code-frame": "^7.0.3",
"@types/babel-plugin-macros": "2.8.5",
"@types/babel__code-frame": "^7.0.3",
"@types/cross-spawn": "^6.0.2",
"@types/dedent": "0.7.0",
"@types/express": "^4.17.13",
Expand Down
4 changes: 2 additions & 2 deletions packages/modular-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"address": "1.1.2",
"babel-jest": "26.6.3",
"babel-preset-react-app": "10.0.0",
"browserslist": "4.18.1",
"browserslist": "4.19.1",
"builtin-modules": "3.2.0",
"case-sensitive-paths-webpack-plugin": "2.4.0",
"chalk": "4.1.2",
Expand Down Expand Up @@ -89,7 +89,7 @@
"postcss-flexbugs-fixes": "4.2.1",
"postcss-loader": "4.2.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "7.0.1",
"postcss-preset-env": "7.2.3",
"postcss-safe-parser": "5.0.2",
"prompts": "2.4.2",
"react-error-overlay": "6.0.9",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('createEsbuildBrowserslistTarget', () => {
);

const result = createEsbuildBrowserslistTarget(process.cwd());
expect(result).toEqual(['chrome96', 'firefox94', 'safari15.1']);
expect(result).toEqual(['chrome97', 'firefox96', 'safari15.2']);
});

it('filters out unsupported browsers', () => {
Expand All @@ -51,7 +51,7 @@ describe('createEsbuildBrowserslistTarget', () => {
);

const result = createEsbuildBrowserslistTarget(process.cwd());
expect(result).toEqual(['chrome96', 'firefox94', 'safari15.1']);
expect(result).toEqual(['chrome97', 'firefox96', 'safari15.2']);
});

it('filters out unsupported browser versions', () => {
Expand All @@ -70,6 +70,6 @@ describe('createEsbuildBrowserslistTarget', () => {
);

const result = createEsbuildBrowserslistTarget(process.cwd());
expect(result).toEqual(['chrome96', 'firefox94', 'safari15.1']);
expect(result).toEqual(['chrome97', 'firefox96', 'safari15.2']);
});
});
Loading

0 comments on commit a8fdfd0

Please sign in to comment.