Skip to content

Commit

Permalink
🔖 Prepare v0.2.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <[email protected]>
  • Loading branch information
susnux committed Mar 7, 2023
1 parent a28c341 commit 07fdb01
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Fixed

## [0.2.0]
### Changed
- Update dependencies
- Update `core-js-builder` to 3.29.0 which now provides its own types

### Fixed
- Provide plugin options types

## [0.1.0] - 2023-01-29
### Added

- Initial release for rollup 3.x

[unreleased]: https://github.com/susnux/rollup-plugin-corejs/compare/v0.1.0...HEAD
[unreleased]: https://github.com/susnux/rollup-plugin-corejs/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/susnux/rollup-plugin-corejs/releases/tag/v0.1.0...v0.2.0
[0.1.0]: https://github.com/susnux/rollup-plugin-corejs/releases/tag/v0.1.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SPDX-FileCopyrightText: 2023 Ferdinand Thiessen <[email protected]>
SPDX-License-Identifier: EUPL-1.2
--->
[![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)
[![NPM package version](https://img.shields.io/npm/v/rollup-plugin-corejs)](https://www.npmjs.com/package/rollup-plugin-corejs)
[![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)
[![license](https://img.shields.io/npm/l/rollup-plugin-corejs?color=blue)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12)

Expand All @@ -28,7 +28,7 @@ npm i -D rollup-plugin-corejs
```

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

Expand All @@ -41,7 +41,7 @@ module.exports = {
}
```

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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-corejs",
"version": "0.1.0",
"version": "0.2.0",
"description": "âš¡ include core-js polyfills when bundling with rollup",
"keywords": [
"corejs",
Expand Down

0 comments on commit 07fdb01

Please sign in to comment.