Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-kinokon committed Dec 22, 2024
1 parent 4855273 commit 6737229
Show file tree
Hide file tree
Showing 4 changed files with 2,365 additions and 1,983 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 8.1.6
- Fixes #110: Add missing .js extension to export in "jsx-dev-runtime.js"

# 8.1.5
- Fixes #108: Class components are now differentiated from functional components by `.isComponent` instead of `.prototype.isReactComponent`, fixing an issue with terser.
- React.ReactElement now extends DocumentFragment.

# 8.1.4
- Fixes #104: Class Components do not populate their ref attribute.
Expand Down
66 changes: 33 additions & 33 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "jsx-dom",
"version": "8.1.5",
"version": "8.1.6",
"description": "JSX to document.createElement.",
"main": "index.js",
"module": "index.js",
"private": true,
"scripts": {
"build": "node -r esbuild-register ./scripts/build.ts",
"build": "tsx ./scripts/build.ts",
"prepublishOnly": "exit 1",
"lint": "eslint src/*",
"test": "vitest --coverage"
Expand All @@ -28,56 +28,56 @@
"@babel/types": "^7.25.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-typescript": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/types": "^7.25.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.26.3",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/types": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/chai": "^4.3.17",
"@types/chai": "^5.0.1",
"@types/chai-string": "^1.4.5",
"@types/clean-css": "^4.2.11",
"@types/dedent": "^0.7.2",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.0",
"@types/prop-types": "^15.7.12",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.12.0",
"@vitest/coverage-v8": "^2.0.5",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/prop-types": "^15.7.14",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.2",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"c8": "^10.1.2",
"chai": "^5.1.1",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-string": "^1.5.0",
"clean-css": "^5.3.3",
"dedent": "^1.5.3",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"eslint": "8.57.0",
"esbuild": "^0.24.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"fs-extra": "^11.2.0",
"husky": "9.0.11",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"husky": "9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-prettier": "^4.1.1",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.ts": [
Expand Down
Loading

0 comments on commit 6737229

Please sign in to comment.