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/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 7fc7314..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", @@ -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" } }