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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ on:
workflow_dispatch:

jobs:
update-deps:
uses: SolidOS/solidos/.github/workflows/update-solidos-deps.yml@main
secrets:
GIT_PUSH_TOKEN: ${{ secrets.GIT_PUSH_TOKEN }}

build:
needs: update-deps
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
node-version:
- 22
- 24
steps:
Expand Down Expand Up @@ -55,6 +61,9 @@ jobs:

npm-publish-dev:
needs: build
permissions:
id-token: write
contents: read
uses: SolidOS/solidos/.github/workflows/publish-prerelease.yml@main
with:
node_version: 22
Expand Down
54 changes: 23 additions & 31 deletions package-lock.json

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

21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "issue-pane",
"version": "3.0.3-0",
"version": "3.0.3-1",
"description": "Solid-compatible Panes: issue editor",
"main": "lib/issue-pane.js",
"sideEffects": [
Expand All @@ -20,7 +20,6 @@
"test": "echo \"No tests specified\" && exit 0",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run lint",
"postpublish": "git push origin main --follow-tags",
"start": "webpack serve --config webpack.dev.config.mjs --open"
},
"repository": {
Expand Down Expand Up @@ -52,11 +51,6 @@
"@babel/runtime": "^7.28.6",
"patch-package": "^8.0.1"
},
"peerDependencies": {
"rdflib": "^2.3.5",
"solid-logic": "^4.0.7",
"solid-ui": "^3.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.6",
"@eslint/compat": "^2.0.1",
Expand All @@ -70,11 +64,16 @@
"html-webpack-plugin": "^5.6.6",
"neostandard": "^0.13.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"rdflib": "^2.3.9",
"solid-logic": "^4.0.8-test.0",
"solid-ui": "^3.1.3-0",
"rdflib": "2.3.9",
"solid-logic": "4.0.8-0",
"solid-ui": "3.1.3-5",
"style-loader": "^4.0.0",
"webpack-cli": "^7.0.0",
"webpack-dev-server": "^5.2.3"
}
},
"solidosDependencies": [
"rdflib",
"solid-logic",
"solid-ui"
]
}