Skip to content

Commit

Permalink
Upgrade dependencies and fix attribute of style
Browse files Browse the repository at this point in the history
  • Loading branch information
robincodex committed Oct 13, 2024
1 parent c0456c6 commit e451c47
Show file tree
Hide file tree
Showing 6 changed files with 1,140 additions and 1,233 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,37 @@
"test-update": "jest --verbose --updateSnapshot"
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/helper-module-imports": "^7.24.7",
"@babel/plugin-syntax-jsx": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@babel/types": "^7.24.7",
"@moddota/panorama-types": "^1.33.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@babel/core": "^7.25.8",
"@babel/helper-module-imports": "^7.25.7",
"@babel/plugin-syntax-jsx": "^7.25.7",
"@babel/preset-env": "^7.25.8",
"@babel/preset-typescript": "^7.25.7",
"@babel/types": "^7.25.8",
"@moddota/panorama-types": "^1.34.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/jest": "^29.5.13",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.5",
"babel-plugin-macros": "^3.1.0",
"cross-env": "^7.0.3",
"easy-keyvalues": "^1.2.3",
"easy-keyvalues": "^1.2.5",
"html-entities": "^2.5.2",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"solid-js": "^1.8.17",
"ts-jest": "^29.1.5",
"solid-js": "^1.9.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
Expand Down
10 changes: 5 additions & 5 deletions packages/babel-plugin-jsx-panorama-expressions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-jsx-panorama-expressions",
"version": "0.2.4",
"version": "0.2.5",
"description": "Modify from ryansolid/dom-expressions",
"engines": {
"node": ">=16.0.0"
Expand All @@ -15,10 +15,10 @@
"url": "git+https://github.com/RobinCodeX/solid-panorama.git"
},
"dependencies": {
"@babel/core": "^7.24.3",
"@babel/helper-module-imports": "^7.24.3",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/types": "^7.24.0",
"@babel/core": "^7.25.8",
"@babel/helper-module-imports": "^7.25.7",
"@babel/plugin-syntax-jsx": "^7.25.7",
"@babel/types": "^7.25.8",
"html-entities": "^2.5.2"
}
}
6 changes: 3 additions & 3 deletions packages/panorama-all-in-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-panorama-all-in-jsx",
"version": "0.4.1",
"version": "0.4.2",
"description": "",
"engines": {
"node": ">=16.0.0"
Expand All @@ -15,10 +15,10 @@
},
"dependencies": {
"babel-plugin-macros": "^3.1.0",
"easy-keyvalues": "^1.2.2",
"easy-keyvalues": "^1.2.5",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"@babel/core": "^7.24.3"
"@babel/core": "^7.25.8"
}
}
6 changes: 3 additions & 3 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solid-panorama-runtime",
"version": "0.5.1",
"version": "0.5.2",
"description": "Solid.js runtime for Valve's Panorama UI (for Dota 2 Custom Games).",
"engines": {
"node": ">=16.0.0"
Expand All @@ -15,7 +15,7 @@
"url": "git+https://github.com/RobinCodeX/solid-panorama.git"
},
"dependencies": {
"@moddota/panorama-types": "^1.33.0",
"solid-js": "^1.8.17"
"@moddota/panorama-types": "^1.34.0",
"solid-js": "^1.9.2"
}
}
2 changes: 1 addition & 1 deletion packages/runtime/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ function applyStyles(
}
}
// @ts-ignore
node.style[k] = styles[k];
node.style[k] = styles[k] === undefined ? null : styles[k];
}
}

Expand Down
Loading

0 comments on commit e451c47

Please sign in to comment.