1
0

update: version number

fix: version number in frontend
This commit is contained in:
alikia2x (寒寒) 2025-11-17 05:15:33 +08:00
parent 2851491eaa
commit a95b9f76be
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 56209E0CCD8420C6
6 changed files with 9 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "cvsa",
"version": "3.15.34",
"version": "5.5.0",
"private": false,
"type": "module",
"workspaces": {

View File

@ -1,6 +1,6 @@
{
"name": "elysia-api",
"version": "0.7.0",
"name": "backend",
"version": "1.0.0",
"scripts": {
"dev": "NODE_ENV=development bun run --watch src/index.ts",
"start": "NODE_ENV=production bun run src/index.ts",

View File

@ -15,6 +15,7 @@ import { addSongHandler } from "@backend/routes/song/add";
import { deleteSongHandler } from "@backend/routes/song/delete";
import { songEtaHandler } from "@backend/routes/video/eta";
import "./mq";
import pkg from "../package.json";
const [host, port] = getBindingInfo();
logStartup(host, port);
@ -46,7 +47,6 @@ const app = new Elysia({
.use(addSongHandler)
.use(deleteSongHandler)
.use(songEtaHandler)
.get("/a", () => file("public/background.jpg"))
.get("/song/:id", ({ redirect, params }) => {
console.log(`/song/${params.id}/info`);
return redirect(`/song/${params.id}/info`, 302);
@ -56,6 +56,6 @@ const app = new Elysia({
})
.listen(15412);
export const VERSION = "0.7.0";
export const VERSION = pkg.version;
export type App = typeof app;

View File

@ -1,5 +1,5 @@
{
"name": "@cvsa/core",
"name": "core",
"private": false,
"version": "0.0.10",
"scripts": {

View File

@ -1,6 +1,6 @@
{
"name": "crawler",
"version": "1.3.0",
"version": "1.5.0",
"scripts": {
"test": "bun --env-file=.env.test run vitest",
"worker:main": "bun run ./src/worker.ts",

View File

@ -1,6 +1,7 @@
{
"name": "@cvsa/cvsa-temp",
"name": "temp_frontend",
"type": "module",
"version": "3.0.0",
"scripts": {
"build": "NODE_ENV=production react-router build",
"dev": "react-router dev",