Skip to content

Commit b92ebbf

Browse files
committed
chore: update devDeps.
1 parent 9ffc9bd commit b92ebbf

File tree

9 files changed

+1327
-1774
lines changed

9 files changed

+1327
-1774
lines changed

CHANGES.md

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

3+
## ?
4+
5+
- chore: update devDeps.
6+
- docs: fix Markdown formatting of examples in README.md (#230) (@aspiers)
7+
38
## 10.3.0
49

510
- fix(eval): rce using non-string prop names (#237)

dist/index-browser-esm.min.js

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

dist/index-browser-esm.min.js.map

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

dist/index-browser-umd.min.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index-browser-umd.min.cjs.map

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: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,25 +68,25 @@
6868
"jsep": "^1.4.0"
6969
},
7070
"devDependencies": {
71-
"@babel/core": "^7.27.4",
72-
"@babel/preset-env": "^7.27.2",
71+
"@babel/core": "^7.28.3",
72+
"@babel/preset-env": "^7.28.3",
7373
"@rollup/plugin-babel": "^6.0.4",
7474
"@rollup/plugin-node-resolve": "^16.0.1",
7575
"@rollup/plugin-terser": "^0.4.4",
7676
"c8": "^10.1.3",
77-
"chai": "^5.2.0",
77+
"chai": "^6.0.1",
7878
"coveradge": "^0.8.2",
79-
"eslint": "^9.29.0",
80-
"eslint-config-ash-nazg": "^38.0.1",
79+
"eslint": "^9.34.0",
80+
"eslint-config-ash-nazg": "^39.0.1",
8181
"http-server": "^14.1.1",
82-
"license-badger": "^0.21.1",
83-
"mocha": "^11.6.0",
82+
"license-badger": "^0.22.1",
83+
"mocha": "^11.7.1",
8484
"mocha-badge-generator": "^0.11.0",
8585
"mocha-multi-reporters": "^1.5.1",
8686
"open-cli": "^8.0.0",
87-
"rollup": "4.43.0",
88-
"typedoc": "^0.28.5",
89-
"typescript": "^5.8.3"
87+
"rollup": "4.49.0",
88+
"typedoc": "^0.28.11",
89+
"typescript": "^5.9.2"
9090
},
9191
"keywords": [
9292
"json",

pnpm-lock.yaml

Lines changed: 1299 additions & 1750 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ignoredBuiltDependencies:
2+
- unrs-resolver

test-helpers/node-env.js

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
import {assert, expect} from 'chai';
2+
import {JSONPath} from '../src/jsonpath-node.js';
3+
import {
4+
JSONPath as JSONPathBrowser
5+
} from '../src/jsonpath-browser.js';
26

37
globalThis.assert = assert;
48
globalThis.expect = expect;
59

6-
setTimeout(async () => {
7-
const {JSONPath} = await import('../src/jsonpath-node.js');
8-
globalThis.jsonpathNodeVM = JSONPath;
9-
globalThis.jsonpath = JSONPath;
10-
11-
const {
12-
JSONPath: JSONPathBrowser
13-
} = await import('../src/jsonpath-browser.js');
14-
globalThis.jsonpathBrowser = JSONPathBrowser;
15-
});
10+
globalThis.jsonpathNodeVM = JSONPath;
11+
globalThis.jsonpath = JSONPath;
12+
globalThis.jsonpathBrowser = JSONPathBrowser;

0 commit comments

Comments
 (0)