From efdbd3b2e7fbacf94739a31237047cb21af4af32 Mon Sep 17 00:00:00 2001 From: Frederik Wessberg Date: Sun, 29 May 2022 22:36:19 +0200 Subject: [PATCH] 2.0.0 --- CHANGELOG.md | 16 ++++++++++++++++ README.md | 3 ++- package.json | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d317d50..bb4c80f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# [2.0.0](https://github.com/wessberg/cjstoesm/compare/v1.1.5...v2.0.0) (2022-05-29) + + +### Bug Fixes + +* don't use import assertions to ensure compatibility with Node 14 and 16 in the test runner ([8c2b76a](https://github.com/wessberg/cjstoesm/commit/8c2b76a878e047c9b54e37555d4a432e8ff61b04)) +* don't use import assertions to ensure compatibility with Node 14 and 16 in the test runner ([d9c996e](https://github.com/wessberg/cjstoesm/commit/d9c996e72098cb5ebcd8014ee05d2997e0c9c9cc)) +* fix built-in-module-map generator ([65e1179](https://github.com/wessberg/cjstoesm/commit/65e1179f2b5abb18f4aeb235f50647c7f8b6fdfd)) + + +### Features + +* migrate to publishing ES-modules with a CommonJS fallback. Improve emit-behavior. Fix bugs related to inclusion of module specifiers ([78592d0](https://github.com/wessberg/cjstoesm/commit/78592d0d33e1116b6cc2ff81dd010a3f1b63254c)) + + + ## [1.1.5](https://github.com/wessberg/cjstoesm/compare/v1.1.4...v1.1.5) (2022-05-25) diff --git a/README.md b/README.md index 6ae1328..d8a9ede 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Downloads per month NPM version -Dependencies +Dependencies Contributors code style: prettier License: MIT @@ -162,6 +162,7 @@ As you can see, this transformer will attempt to produce code that generates as - [pnpm](#pnpm) - [Run once with npx](#run-once-with-npx) - [Peer Dependencies](#peer-dependencies) +- [Engine](#engine) - [Usage](#usage) - [CLI usage](#cli-usage) - [API Usage](#api-usage) diff --git a/package.json b/package.json index ab168d5..c2b7413 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cjstoesm", - "version": "1.1.5", + "version": "2.0.0", "description": "A tool that can transform CommonJS to ESM", "scripts": { "generate:sandhog": "sandhog all --yes",