Skip to content

Commit 4ba227a

Browse files
author
Alain Bourgeois
committed
auto update solidosDependencies
1 parent 5af6ee3 commit 4ba227a

2 files changed

Lines changed: 18 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ on:
1515
workflow_dispatch:
1616

1717
jobs:
18-
build:
18+
update-deps:
19+
uses: SolidOS/solidos/.github/workflows/update-solidos-deps.yml@main
20+
secrets: inherit
1921

22+
build:
23+
needs: update-deps
2024
runs-on: ubuntu-latest
21-
2225
strategy:
2326
matrix:
2427
node-version:
@@ -62,6 +65,9 @@ jobs:
6265

6366
npm-publish-dev:
6467
needs: build
68+
permissions:
69+
id-token: write
70+
contents: read
6571
uses: SolidOS/solidos/.github/workflows/publish-prerelease.yml@main
6672
with:
6773
node_version: 22

package.json

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"test": "echo \"No tests specified\" && exit 0",
1717
"prepublishOnly": "npm run build && npm run lint",
1818
"preversion": "npm run typecheck && npm run lint",
19-
"postpublish": "git push origin main --follow-tags",
19+
"postpublish": "git push origin staging",
2020
"start": "webpack serve --config webpack.dev.config.mjs --open"
2121
},
2222
"files": [
@@ -47,10 +47,6 @@
4747
"url": "https://github.com/SolidOS/folder-pane/issues"
4848
},
4949
"homepage": "https://github.com/SolidOS/folder-pane",
50-
"peerDependencies": {
51-
"solid-logic": "^4.0.6",
52-
"solid-ui": "^3.1.0"
53-
},
5450
"devDependencies": {
5551
"@babel/core": "^7.28.6",
5652
"@babel/preset-env": "^7.28.6",
@@ -75,6 +71,13 @@
7571
},
7672
"dependencies": {
7773
"patch-package": "^8.0.1",
78-
"rdflib": "^2.3.9"
79-
}
74+
"rdflib": "^2.3.9",
75+
"solid-logic": "^4.0.7",
76+
"solid-ui": "^3.1.0"
77+
},
78+
"solidosDependencies": [
79+
"rdflib",
80+
"solid-logic",
81+
"solid-ui"
82+
]
8083
}

0 commit comments

Comments
 (0)