Skip to content

Commit

Permalink
- Fix: Proper Node CommonJS export; fixes #144
Browse files Browse the repository at this point in the history
- npm: Bump to 5.0.2
  • Loading branch information
brettz9 committed Jan 15, 2021
1 parent b17e491 commit 9c003da
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES for jsonpath-plus

## 5.0.2 (2021-01-15)

- Fix: Proper Node CommonJS export; fixes #144

## 5.0.1 (2021-01-15)

- Fix: Proper Node CommonJS export; fixes #143
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"author": "Stefan Goessner",
"name": "jsonpath-plus",
"version": "5.0.1",
"version": "5.0.2",
"type": "commonjs",
"main": "dist/index-node-cjs.js",
"exports": {
"import": "dist/index-node-esm.mjs",
"require": "dist/index-node-cjs.js"
"import": "./dist/index-node-esm.mjs",
"require": "./dist/index-node-cjs.js"
},
"module": "dist/index-node-esm.mjs",
"browser": "dist/index-browser-esm.js",
Expand Down

0 comments on commit 9c003da

Please sign in to comment.