Skip to content

Commit

Permalink
Merged in release/04-08 (pull request #71)
Browse files Browse the repository at this point in the history
Merge v2 04/14

Approved-by: Will Binns-Smith
  • Loading branch information
thebriando authored and Will Binns-Smith committed Apr 21, 2022
2 parents f44627a + 4a892d0 commit 3a50434
Show file tree
Hide file tree
Showing 117 changed files with 2,403 additions and 1,043 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ untyped-import
untyped-type-import

[version]
0.174.1
0.175.1
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
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
4 changes: 1 addition & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ yarn install
yarn build-native
```

In the folder `packages/examples`, create a temporary example to debug. You can start by copying the `simple` example and try to reproduce the bug.

In the newly created example run `yarn parcel build index.html` to build.
In the folder `packages/examples`, create a temporary example to debug. You can start by copying the `simple` example and try to reproduce the bug. It has everything set up for working on local changes. You can run `yarn build` to build the project. If you're re-using another example or creating one from scratch, make sure to use the `--no-cache` flag for `parcel build` to see your local changes reflected.

After you've figured out where the issue originated from and found a fix, try to add a test case or ask for help on how to proceed if the use case it more complex.

Expand Down
Loading

0 comments on commit 3a50434

Please sign in to comment.