Skip to content

Commit 6737229

Browse files
committed
chore: bump deps
1 parent 4855273 commit 6737229

File tree

4 files changed

+2365
-1983
lines changed

4 files changed

+2365
-1983
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
# 8.1.6
2+
- Fixes #110: Add missing .js extension to export in "jsx-dev-runtime.js"
3+
14
# 8.1.5
25
- Fixes #108: Class components are now differentiated from functional components by `.isComponent` instead of `.prototype.isReactComponent`, fixing an issue with terser.
6+
- React.ReactElement now extends DocumentFragment.
37

48
# 8.1.4
59
- Fixes #104: Class Components do not populate their ref attribute.

package.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "jsx-dom",
3-
"version": "8.1.5",
3+
"version": "8.1.6",
44
"description": "JSX to document.createElement.",
55
"main": "index.js",
66
"module": "index.js",
77
"private": true,
88
"scripts": {
9-
"build": "node -r esbuild-register ./scripts/build.ts",
9+
"build": "tsx ./scripts/build.ts",
1010
"prepublishOnly": "exit 1",
1111
"lint": "eslint src/*",
1212
"test": "vitest --coverage"
@@ -28,56 +28,56 @@
2828
"@babel/types": "^7.25.4"
2929
},
3030
"devDependencies": {
31-
"@babel/core": "^7.25.2",
32-
"@babel/plugin-transform-typescript": "^7.25.2",
33-
"@babel/preset-env": "^7.25.4",
34-
"@babel/preset-react": "^7.24.7",
35-
"@babel/types": "^7.25.4",
31+
"@babel/core": "^7.26.0",
32+
"@babel/plugin-transform-typescript": "^7.26.3",
33+
"@babel/preset-env": "^7.26.0",
34+
"@babel/preset-react": "^7.26.3",
35+
"@babel/types": "^7.26.3",
3636
"@rollup/plugin-babel": "^6.0.4",
37-
"@rollup/plugin-node-resolve": "^15.2.3",
38-
"@rollup/plugin-replace": "^5.0.7",
37+
"@rollup/plugin-node-resolve": "^16.0.0",
38+
"@rollup/plugin-replace": "^6.0.2",
3939
"@types/babel-plugin-macros": "^3.1.3",
4040
"@types/babel__core": "^7.20.5",
41-
"@types/chai": "^4.3.17",
41+
"@types/chai": "^5.0.1",
4242
"@types/chai-string": "^1.4.5",
4343
"@types/clean-css": "^4.2.11",
4444
"@types/dedent": "^0.7.2",
4545
"@types/fs-extra": "^11.0.4",
4646
"@types/jsdom": "^21.1.7",
47-
"@types/lodash": "^4.17.7",
48-
"@types/node": "^22.5.0",
49-
"@types/prop-types": "^15.7.12",
50-
"@typescript-eslint/eslint-plugin": "7.3.1",
51-
"@typescript-eslint/parser": "7.12.0",
52-
"@vitest/coverage-v8": "^2.0.5",
47+
"@types/lodash": "^4.17.13",
48+
"@types/node": "^22.10.2",
49+
"@types/prop-types": "^15.7.14",
50+
"@typescript-eslint/eslint-plugin": "8.18.1",
51+
"@typescript-eslint/parser": "8.18.1",
52+
"@vitest/coverage-v8": "^2.1.8",
5353
"babel-plugin-macros": "^3.1.0",
5454
"babel-plugin-minify-constant-folding": "^0.5.0",
5555
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
5656
"babel-plugin-minify-guarded-expressions": "^0.4.4",
57-
"c8": "^10.1.2",
58-
"chai": "^5.1.1",
57+
"c8": "^10.1.3",
58+
"chai": "^5.1.2",
5959
"chai-string": "^1.5.0",
6060
"clean-css": "^5.3.3",
6161
"dedent": "^1.5.3",
62-
"esbuild": "^0.23.1",
63-
"esbuild-register": "^3.6.0",
64-
"eslint": "8.57.0",
62+
"esbuild": "^0.24.2",
63+
"eslint": "9.17.0",
6564
"eslint-config-prettier": "9.1.0",
66-
"eslint-import-resolver-typescript": "3.6.1",
67-
"eslint-plugin-import": "2.29.1",
68-
"eslint-plugin-react": "7.34.2",
69-
"eslint-plugin-react-hooks": "4.6.2",
65+
"eslint-import-resolver-typescript": "3.7.0",
66+
"eslint-plugin-import": "2.31.0",
67+
"eslint-plugin-react": "7.37.2",
68+
"eslint-plugin-react-hooks": "5.1.0",
7069
"fs-extra": "^11.2.0",
71-
"husky": "9.0.11",
72-
"jsdom": "^24.1.1",
73-
"lint-staged": "^15.2.9",
70+
"husky": "9.1.7",
71+
"jsdom": "^25.0.1",
72+
"lint-staged": "^15.2.11",
7473
"lodash": "^4.17.21",
75-
"prettier": "^3.3.3",
76-
"rollup": "^4.21.0",
74+
"prettier": "^3.4.2",
75+
"rollup": "^4.29.1",
7776
"rollup-plugin-prettier": "^4.1.1",
78-
"tslib": "^2.6.3",
79-
"typescript": "^5.5.4",
80-
"vitest": "^2.0.5"
77+
"tslib": "^2.8.1",
78+
"tsx": "^4.19.2",
79+
"typescript": "^5.7.2",
80+
"vitest": "^2.1.8"
8181
},
8282
"lint-staged": {
8383
"*.ts": [

0 commit comments

Comments
 (0)