Compare commits

..
5 changed files with 5 additions and 6 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
if [[ "${GITHUB_REF_NAME}" == *"-"* ]]; then if [[ "${GITHUB_REF_NAME}" == *"-"* ]]; then
DIST_TAG=rc DIST_TAG=rc
fi fi
pnpm publish --filter cryptgeon --tag "${DIST_TAG}" pnpm publish --filter cryptgeon --tag "${DIST_TAG}" --no-git-checks
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
-1
View File
@@ -6,7 +6,6 @@
- Add remaining shared tooling to the pnpm catalog (`vite`, `tsdown`). - Add remaining shared tooling to the pnpm catalog (`vite`, `tsdown`).
- Move formatting, linting and type-checking + git hooks onto `vite-plus` (oxlint, oxfmt, vitest). - Move formatting, linting and type-checking + git hooks onto `vite-plus` (oxlint, oxfmt, vitest).
- Re-add CSP (`Content-Security-Policy`) wired into the axum router (was in `csp.rs`, removed as unused). - Re-add CSP (`Content-Security-Policy`) wired into the axum router (was in `csp.rs`, removed as unused).
- Move all CLI deps to `devDependencies` — they bundle into the single output file anyway.
## Unified payload (drop the text/file union) ## Unified payload (drop the text/file union)
+1 -1
View File
@@ -252,7 +252,7 @@ dependencies = [
[[package]] [[package]]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.0" version = "3.0.0-rc.2"
dependencies = [ dependencies = [
"axum", "axum",
"bs62", "bs62",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "cryptgeon" name = "cryptgeon"
version = "3.0.0-rc.0" version = "3.0.0-rc.2"
authors = ["cupcakearmy <hi@nicco.io>"] authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2024" edition = "2024"
rust-version = "1.95" rust-version = "1.95"
+2 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "cryptgeon", "name": "cryptgeon",
"version": "3.0.0-rc.0", "version": "3.0.0-rc.2",
"homepage": "https://github.com/cupcakearmy/cryptgeon", "homepage": "https://github.com/cupcakearmy/cryptgeon",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -21,7 +21,7 @@
"scripts": { "scripts": {
"build": "vp pack", "build": "vp pack",
"dev": "vp pack --watch", "dev": "vp pack --watch",
"prepublishOnly": "run-s build" "prepublishOnly": "pnpm run build"
}, },
"devDependencies": { "devDependencies": {
"@cryptgeon/shared": "workspace:*", "@cryptgeon/shared": "workspace:*",