Skip to content

Commit

Permalink
Merge branch 'v2' of github.com:parcel-bundler/parcel into parallel-r…
Browse files Browse the repository at this point in the history
…equest-limit
  • Loading branch information
gorakong committed Apr 5, 2022
2 parents 892edd3 + a8a4f51 commit 4e04010
Show file tree
Hide file tree
Showing 162 changed files with 1,087 additions and 784 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Expand Up @@ -5,9 +5,20 @@ All notable changes to Parcel will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.4.1] - 2022-03-31

### Fixed

- Fix `:export` in CSS modules
- Don't remove unused classes or `@keyframes` when a CSS module is processed by postcss
- Fix bundling issue with CSS modules where unintended side effects from a different page could be run
- Fix crash with CSS in multiple environments
- Update Parcel CSS. Fixes issues with `::-webkit-scrollbar`, list styles in CSS modules, `@-moz-document`, and more. See [release notes](https://github.com/parcel-bundler/parcel-css/releases/tag/v1.7.4).
- Update SWC. Fixes an issue with parenthesized expressions following a return statement.

## [2.4.0] - 2022-03-22

## Added
### Added

- Replace default CSS transformer and minifier with `@parcel/css` - [Details](https://github.com/parcel-bundler/parcel/pull/7821)
- Replace `typeof` before dead code elimination to improve bundle size - [Details](https://github.com/parcel-bundler/parcel/pull/7788)
Expand All @@ -19,7 +30,7 @@ and Parcel adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
- Use relative path for bundle labels in bundle analysis - [Details](https://github.com/parcel-bundler/parcel/pull/7737)
- Load dynamic imports at higher network priority in non-ESM builds - [Details](https://github.com/parcel-bundler/parcel/pull/7061)

## Fixed
### Fixed

- Pin lmdb to 2.2.3 - [Details](https://github.com/parcel-bundler/parcel/pull/7763)
- Prevent term-size from being bundled - [Details](https://github.com/parcel-bundler/parcel/pull/7750)
Expand Down
100 changes: 50 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions packages/bundlers/default/package.json
@@ -1,6 +1,6 @@
{
"name": "@parcel/bundler-default",
"version": "2.4.0",
"version": "2.4.1",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand All @@ -17,13 +17,13 @@
"source": "src/DefaultBundler.js",
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.4.0"
"parcel": "^2.4.1"
},
"dependencies": {
"@parcel/diagnostic": "2.4.0",
"@parcel/hash": "2.4.0",
"@parcel/plugin": "2.4.0",
"@parcel/utils": "2.4.0",
"@parcel/diagnostic": "2.4.1",
"@parcel/hash": "2.4.1",
"@parcel/plugin": "2.4.1",
"@parcel/utils": "2.4.1",
"nullthrows": "^1.1.1"
}
}

0 comments on commit 4e04010

Please sign in to comment.