Skip to content

Commit

Permalink
Merge branch 'master' into fix/ci-yarn-berry
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian authored May 29, 2021
2 parents 0f9fdbd + 0d59077 commit e812034
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .changeset/chilled-queens-live.md

This file was deleted.

12 changes: 12 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# preact-cli

## 3.2.2

### Patch Changes

- [#1568](https://github.com/preactjs/preact-cli/pull/1568) [`bc6d5f6`](https://github.com/preactjs/preact-cli/commit/bc6d5f6e87e9cd5dc652d7e294fff150b7068c4d) Thanks [@rschristian](https://github.com/rschristian)! - Fixes breaking change to the getLoadersByName config helper

## 3.2.1

### Patch Changes

- [#1567](https://github.com/preactjs/preact-cli/pull/1567) [`971e633`](https://github.com/preactjs/preact-cli/commit/971e6335ddd20e8cc0233607c47942831e31f4cb) Thanks [@rschristian](https://github.com/rschristian)! - Reverts update to fork-ts-checker-webpack-plugin

## 3.2.0

### Minor Changes
Expand Down
4 changes: 3 additions & 1 deletion packages/cli/lib/lib/webpack/transform-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ class WebpackConfigHelpers {
)
.reduce((arr, loaders) => arr.concat(loaders), [])
.filter(
({ loader }) => loader === name || (loader && loader.loader === name)
({ loader }) =>
(typeof loader === 'string' && loader.includes(name)) ||
(typeof loader.loader === 'string' && loader.loader.includes(name))
);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "preact-cli",
"version": "3.2.0",
"version": "3.2.2",
"description": "Start building a Preact Progressive Web App in seconds.",
"repository": "preactjs/preact-cli",
"main": "lib/index.js",
Expand Down

0 comments on commit e812034

Please sign in to comment.