5-way navigation for React and SolidJS
0

Configure Feed

Select the types of activity you want to include in your feed.

1.0.0-rc.2 release

Pavel Hrách (May 22, 2026, 12:51 AM +0200) 5990ca3c 158f0861

+10 -8
+5 -3
.github/workflows/publish.yml
··· 21 21 node-version: "24" 22 22 cache: false 23 23 24 - # workaround for voidzero-dev/setup-vp@v1 not putting pnpm in PATH 25 - - run: vp install -g pnpm 24 + - run: "npm install -g npm@11.15.0" 26 25 27 26 - run: "vp run preparePublish" 28 27 29 - - run: "pnpm publish -r --no-git-checks --tag latest" 28 + - run: | 29 + for f in ./dist/*.tgz; do 30 + npm stage publish "$f" --tag latest 31 + done
+1 -1
packages/fiveway-inspector/package.json
··· 1 1 { 2 2 "name": "@fiveway/inspector", 3 - "version": "1.0.0-rc.1", 3 + "version": "1.0.0-rc.2", 4 4 "repository": { 5 5 "type": "git", 6 6 "url": "git+https://github.com/silen-z/fiveway.git"
+1 -1
packages/fiveway-react/package.json
··· 1 1 { 2 2 "name": "@fiveway/react", 3 - "version": "1.0.0-rc.1", 3 + "version": "1.0.0-rc.2", 4 4 "repository": { 5 5 "type": "git", 6 6 "url": "git+https://github.com/silen-z/fiveway.git"
+1 -1
packages/fiveway-solid/package.json
··· 1 1 { 2 2 "name": "@fiveway/solid", 3 - "version": "1.0.0-rc.1", 3 + "version": "1.0.0-rc.2", 4 4 "repository": { 5 5 "type": "git", 6 6 "url": "git+https://github.com/silen-z/fiveway.git"
+1 -1
packages/fiveway/package.json
··· 1 1 { 2 2 "name": "@fiveway/core", 3 - "version": "1.0.0-rc.1", 3 + "version": "1.0.0-rc.2", 4 4 "repository": { 5 5 "type": "git", 6 6 "url": "git+https://github.com/silen-z/fiveway.git"
+1 -1
vite.config.ts
··· 13 13 ], 14 14 }, 15 15 preparePublish: { 16 - command: "true", 16 + command: "pnpm -r --filter=!@fiveway/extension pack --pack-destination dist", 17 17 dependsOn: [ 18 18 "@fiveway/core#build", 19 19 "@fiveway/react#build",