From 91698233b1a799e2d8914f008546499a60f06a3c Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Sun, 21 Apr 2024 18:03:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Prepare=20release=20of=20v1.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ferdinand Thiessen --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6426d5a..489195b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [1.0.0] - 2024-04-21 ### Added - New feature to add polyfills only for APIs that are used by your code. This is similar to Babels `useBuiltIns: 'usage'`. Please not that only your code is analyzed and not your third party dependencies. diff --git a/package-lock.json b/package-lock.json index c16c291..b46dfd9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rollup-plugin-corejs", - "version": "1.0.0-beta.2", + "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rollup-plugin-corejs", - "version": "1.0.0-beta.2", + "version": "1.0.0", "license": "EUPL-1.2", "dependencies": { "acorn": "^8.11.3", diff --git a/package.json b/package.json index 8423e54..f2fb309 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup-plugin-corejs", - "version": "1.0.0-beta.2", + "version": "1.0.0", "description": "⚡ include core-js polyfills when bundling with rollup", "keywords": [ "corejs", @@ -25,9 +25,9 @@ "types": "./dist/index.d.ts", "exports": { ".": { + "types": "./dist/index.d.ts", "import": "./dist/index.es.mjs", - "require": "./dist/index.cjs", - "types": "./dist/index.d.ts" + "require": "./dist/index.cjs" } }, "scripts": {