Skip to content

Commit 9c003da

Browse files
committed
- Fix: Proper Node CommonJS export; fixes #144
- npm: Bump to 5.0.2
1 parent b17e491 commit 9c003da

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGES for jsonpath-plus
22

3+
## 5.0.2 (2021-01-15)
4+
5+
- Fix: Proper Node CommonJS export; fixes #144
6+
37
## 5.0.1 (2021-01-15)
48

59
- Fix: Proper Node CommonJS export; fixes #143

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"author": "Stefan Goessner",
33
"name": "jsonpath-plus",
4-
"version": "5.0.1",
4+
"version": "5.0.2",
55
"type": "commonjs",
66
"main": "dist/index-node-cjs.js",
77
"exports": {
8-
"import": "dist/index-node-esm.mjs",
9-
"require": "dist/index-node-cjs.js"
8+
"import": "./dist/index-node-esm.mjs",
9+
"require": "./dist/index-node-cjs.js"
1010
},
1111
"module": "dist/index-node-esm.mjs",
1212
"browser": "dist/index-browser-esm.js",

0 commit comments

Comments
 (0)