Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriiis committed Dec 29, 2022
1 parent 855f0f0 commit a2218b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Expand Up @@ -4,8 +4,8 @@

### Breaking changes

- Drop webpack 4 support [#87](https://github.com/yoriiis/chunks-webpack-plugin/pull/87)
- Drop Node.js 12 support [#88](https://github.com/yoriiis/chunks-webpack-plugin/pull/88)
- Drop webpack 4 support ([#87](https://github.com/yoriiis/chunks-webpack-plugin/pull/87))
- Drop Node.js 12 support ([#88](https://github.com/yoriiis/chunks-webpack-plugin/pull/88))

## 7.0.3

Expand Down
10 changes: 3 additions & 7 deletions README.md
Expand Up @@ -30,9 +30,7 @@ yarn add chunks-webpack-plugin --dev

## Environment

`ChunksWebpackPlugin` was built for Node.js `>=10.13.0` and webpack `^4 || ^5`.

The plugin is compatible with the webpack `v4` and `v5`, more details in the [CHANGELOG](CHANGELOG.md).
`ChunksWebpackPlugin` was built for Node.js LTS 14 and webpack 5.

## Example

Expand Down Expand Up @@ -294,8 +292,7 @@ The plugin will generate all files in the `./dist/` directory:
**home-styles.html**

```html
<link rel="stylesheet" href="vendors~home~news.css" />
<link rel="stylesheet" href="home.css" />
<link rel="stylesheet" href="vendors~home~news.css" /> <link rel="stylesheet" href="home.css" />
```

**home-scripts.html**
Expand All @@ -308,8 +305,7 @@ The plugin will generate all files in the `./dist/` directory:
**news-styles.html**

```html
<link rel="stylesheet" href="vendors~home~news.css" />
<link rel="stylesheet" href="news.css" />
<link rel="stylesheet" href="vendors~home~news.css" /> <link rel="stylesheet" href="news.css" />
```

**news-scripts.html**
Expand Down

0 comments on commit a2218b3

Please sign in to comment.