From 8b3987c784991628ecf1e4d91943c84b5bfb17c2 Mon Sep 17 00:00:00 2001 From: Trygve Lie Date: Wed, 15 Jun 2022 07:52:17 +0200 Subject: [PATCH 1/2] feat: Support full import map mapping BREAKING CHANGE: Module should now be fully spec compliant. This might break builds due to parts of the import map implementation might have been following the spec. --- .github/workflows/test.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 35d73ad..9c236af 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] - node-version: [14.x, 16.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} diff --git a/package.json b/package.json index 7fc7314..2277af0 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ }, "dependencies": { "@eik/common": "3.0.1", - "esbuild-plugin-import-map": "2.1.0", + "esbuild-plugin-import-map": "3.0.0-next.1", "undici": "5.5.1" } } From fdc8ed6c0328b22251950ba71ba7c0c116a1c653 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 15 Jun 2022 05:57:44 +0000 Subject: [PATCH 2/2] chore(release): 2.0.0-next.1 [skip ci] # [2.0.0-next.1](https://github.com/eik-lib/esbuild-plugin/compare/v1.1.13...v2.0.0-next.1) (2022-06-15) ### Features * Support full import map mapping ([8b3987c](https://github.com/eik-lib/esbuild-plugin/commit/8b3987c784991628ecf1e4d91943c84b5bfb17c2)) ### BREAKING CHANGES * Module should now be fully spec compliant. This might break builds due to parts of the import map implementation might have been following the spec. --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f98dd3..b9f5a37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [2.0.0-next.1](https://github.com/eik-lib/esbuild-plugin/compare/v1.1.13...v2.0.0-next.1) (2022-06-15) + + +### Features + +* Support full import map mapping ([8b3987c](https://github.com/eik-lib/esbuild-plugin/commit/8b3987c784991628ecf1e4d91943c84b5bfb17c2)) + + +### BREAKING CHANGES + +* Module should now be fully spec compliant. This might break builds due to parts of the import map implementation might have been following the spec. + ## [1.1.13](https://github.com/eik-lib/esbuild-plugin/compare/v1.1.12...v1.1.13) (2022-06-15) diff --git a/package.json b/package.json index 2277af0..4a4e688 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eik/esbuild-plugin", - "version": "1.1.13", + "version": "2.0.0-next.1", "description": "ESBuild plugin for loading import maps from a Eik server and applying the mapping to ECMAScript modules in preparation for upload to the same server.", "type": "module", "main": "./src/plugin.js",