Skip to content

Commit 7c14db2

Browse files
authored
Merge pull request #701 from SolidOS/fix/missing-menu
Fix/missing menu
2 parents 6614821 + 5a8654e commit 7c14db2

3 files changed

Lines changed: 61 additions & 44 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ on:
1515
workflow_dispatch:
1616

1717
jobs:
18+
update-deps:
19+
uses: SolidOS/solidos/.github/workflows/update-solidos-deps.yml@main
20+
secrets: inherit
21+
1822
build:
23+
needs: update-deps
1924
runs-on: ubuntu-latest
2025
strategy:
2126
matrix:
@@ -58,6 +63,9 @@ jobs:
5863

5964
npm-publish-dev:
6065
needs: build
66+
permissions:
67+
id-token: write
68+
contents: read
6169
uses: SolidOS/solidos/.github/workflows/publish-prerelease.yml@main
6270
with:
6371
node_version: 22

package-lock.json

Lines changed: 25 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solid-panes",
3-
"version": "4.4.2-1",
3+
"version": "4.4.2-2",
44
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -32,7 +32,6 @@
3232
"test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
3333
"prepublishOnly": "npm run build && npm run lint && npm test",
3434
"preversion": "npm run lint && npm run typecheck && npm test",
35-
"postversion": "git push origin main --follow-tags",
3635
"watch": "npm run build-version && concurrently -k -n babel,types,webpack \"npm:watch-js\" \"npm:watch-types\" \"npm:watch-dist\"",
3736
"start": "webpack serve --config webpack.dev.config.mjs --open"
3837
},
@@ -61,22 +60,22 @@
6160
"homepage": "https://github.com/SolidOS/solid-panes",
6261
"dependencies": {
6362
"@solid/better-simple-slideshow": "^0.1.0",
64-
"activitystreams-pane": "^1.0.3-0",
65-
"chat-pane": "^3.0.4-0",
66-
"contacts-pane": "^3.2.1-1",
63+
"activitystreams-pane": "1.0.3-0",
64+
"chat-pane": "3.0.4-0",
65+
"contacts-pane": "3.2.1-1",
6766
"dompurify": "^3.4.4",
68-
"folder-pane": "^3.1.1-0",
69-
"issue-pane": "^3.0.3-0",
67+
"folder-pane": "3.1.1-0",
68+
"issue-pane": "3.0.3-0",
7069
"lit-html": "^3.3.2",
7170
"marked": "^18.0.3",
72-
"meeting-pane": "^3.0.3-0",
71+
"meeting-pane": "3.0.3-0",
7372
"mime-types": "^3.0.2",
74-
"pane-registry": "^3.1.2-test.0",
73+
"pane-registry": "3.1.2-0",
7574
"patch-package": "^8.0.1",
76-
"profile-pane": "^3.2.3-0",
75+
"profile-pane": "3.2.3-0",
7776
"solid-namespace": "^0.5.4",
78-
"solid-ui": "^3.1.3-0",
79-
"source-pane": "^3.1.1-0"
77+
"solid-ui": "3.1.3-1",
78+
"source-pane": "3.1.1-0"
8079
},
8180
"overrides": {
8281
"rdflib": "$rdflib",
@@ -113,10 +112,10 @@
113112
"node-polyfill-webpack-plugin": "^4.1.0",
114113
"path-browserify": "^1.0.1",
115114
"raw-loader": "^4.0.2",
116-
"rdflib": "^2.3.9",
115+
"rdflib": "2.3.9",
117116
"react": "^19.2.6",
118117
"react-dom": "^19.2.6",
119-
"solid-logic": "^4.0.8-test.0",
118+
"solid-logic": "4.0.8-0",
120119
"style-loader": "^4.0.0",
121120
"terser-webpack-plugin": "^5.6.0",
122121
"ts-jest": "^29.4.9",
@@ -125,5 +124,19 @@
125124
"webpack": "^5.106.2",
126125
"webpack-cli": "^6.0.1",
127126
"webpack-dev-server": "^5.2.4"
128-
}
127+
},
128+
"solidosDependencies": [
129+
"rdflib",
130+
"solid-logic",
131+
"solid-ui",
132+
"pane-registry",
133+
"activitystreams-pane",
134+
"chat-pane",
135+
"contacts-pane",
136+
"folder-pane",
137+
"issue-pane",
138+
"meeting-pane",
139+
"profile-pane",
140+
"source-pane"
141+
]
129142
}

0 commit comments

Comments
 (0)