Skip to content

Commit 07fdb01

Browse files
committed
🔖 Prepare v0.2.0 release
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent a28c341 commit 07fdb01

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

‎CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Changed
1515
### Fixed
1616

17+
## [0.2.0]
18+
### Changed
19+
- Update dependencies
20+
- Update `core-js-builder` to 3.29.0 which now provides its own types
21+
22+
### Fixed
23+
- Provide plugin options types
24+
1725
## [0.1.0] - 2023-01-29
1826
### Added
1927

2028
- Initial release for rollup 3.x
2129

22-
[unreleased]: https://github.com/susnux/rollup-plugin-corejs/compare/v0.1.0...HEAD
30+
[unreleased]: https://github.com/susnux/rollup-plugin-corejs/compare/v0.2.0...HEAD
31+
[0.2.0]: https://github.com/susnux/rollup-plugin-corejs/releases/tag/v0.1.0...v0.2.0
2332
[0.1.0]: https://github.com/susnux/rollup-plugin-corejs/releases/tag/v0.1.0

‎README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SPDX-FileCopyrightText: 2023 Ferdinand Thiessen <[email protected]>
33
SPDX-License-Identifier: EUPL-1.2
44
--->
5-
[![GitHub package.json version (main branch)](https://img.shields.io/github/package-json/v/susnux/rollup-plugin-corejs)](https://github.com/susnux/rollup-plugin-corejs/releases)
5+
[![NPM package version](https://img.shields.io/npm/v/rollup-plugin-corejs)](https://www.npmjs.com/package/rollup-plugin-corejs)
66
[![GitHub Workflow Status (main branch)](https://img.shields.io/github/actions/workflow/status/susnux/rollup-plugin-corejs/node.yml?branch=main)](https://github.com/susnux/rollup-plugin-corejs/actions/workflows/node.yml)
77
[![license](https://img.shields.io/npm/l/rollup-plugin-corejs?color=blue)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12)
88

@@ -28,7 +28,7 @@ npm i -D rollup-plugin-corejs
2828
```
2929

3030
### 🔧 Configuration
31-
In your `rollup.config.js`:
31+
If you are using CommonJS, then use this in your `rollup.config.js`:
3232
```js
3333
const { corejsPlugin } = require('rollup-plugin-corejs')
3434

@@ -41,7 +41,7 @@ module.exports = {
4141
}
4242
```
4343

44-
Or in your `rollup.config.mjs`:
44+
Or if you are using module JS (e.g. `rollup.config.mjs`):
4545
```js
4646
import { corejsPlugin } from 'rollup-plugin-corejs'
4747

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rollup-plugin-corejs",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "âš¡ include core-js polyfills when bundling with rollup",
55
"keywords": [
66
"corejs",

0 commit comments

Comments
 (0)