Skip to content

Commit

Permalink
Fix esbuild errors by re-ordering package.json exports
Browse files Browse the repository at this point in the history
  • Loading branch information
shuckster committed Jan 11, 2022
1 parent 752f532 commit 9a162b5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.11.2] - 2022-01-11

### Fixed

- Fix esbuild errors by re-ordering package.json exports

## [1.11.1] - 2022-01-10

### Updated
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -16,8 +16,8 @@
"module": "dist/match-iz.esm.js",
"exports": {
"import": "./dist/match-iz.esm.js",
"browser": "./dist/match-iz.browser.js",
"require": "./dist/match-iz.cjs.js",
"browser": "./dist/match-iz.browser.js",
"default": "./dist/match-iz.cjs.js"
},
"files": [
Expand Down Expand Up @@ -48,7 +48,7 @@
"build:esbuild": "node ./build-config/esbuild.mjs"
},
"devDependencies": {
"compose-paths": "^1.1.1",
"compose-paths": "^1.1.3",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"rimraf": "^3.0.2",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9a162b5

Please sign in to comment.