Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 66 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "issue-pane",
"version": "3.0.0",
"version": "3.0.1",
"description": "Solid-compatible Panes: issue editor",
"main": "dist/issuePane.js",
"sideEffects": false,
Expand Down Expand Up @@ -40,32 +40,32 @@
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/issue-pane/issues"
"url": "https://github.com/SolidOS/issue-pane/issues"
},
"homepage": "https://github.com/solid/issue-pane",
"homepage": "https://github.com/SolidOS/issue-pane",
"dependencies": {
"@babel/runtime": "^7.28.3"
"@babel/runtime": "^7.28.6"
},
"peerDependencies": {
"rdflib": "^2.3.0",
"solid-logic": "^4.0.0",
"solid-ui": "^3.0.0"
"rdflib": "^2.3.5",
"solid-logic": "^4.0.2",
"solid-ui": "^3.0.3"
Comment on lines 49 to +52
Copy link

Copilot AI Jan 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updating solid-ui/solid-logic peer versions appears to pull in @noble/* v2 (via solid-ui 3.0.3), which in package-lock now declares an engines requirement of Node ">= 20.19.0". This conflicts with the repo’s .nvmrc (v18.19.0) and may break local installs/builds for contributors on Node 18. Consider either (a) bumping the project’s documented/declared Node version (e.g., add package.json engines + update .nvmrc) or (b) pinning solid-ui (or overriding @noble/* back to v1.x) to keep Node 18 compatibility.

Copilot uses AI. Check for mistakes.
},
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.33.0",
"@babel/preset-env": "^7.28.6",
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"babel-loader": "^10.0.0",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "^9.33.0",
"globals": "^17.0.0",
"html-webpack-plugin": "^5.6.3",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"html-webpack-plugin": "^5.6.6",
"neostandard": "^0.12.2",
"node-polyfill-webpack-plugin": "^4.1.0",
"rdflib": "^2.3.0",
"solid-logic": "^4.0.0",
"solid-ui": "^3.0.0",
"rdflib": "^2.3.5",
"solid-logic": "^4.0.2",
"solid-ui": "^3.0.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
"webpack-dev-server": "^5.2.3"
}
}
Loading