From 95565026b3d62e8a2d586dde890595ca1b14566c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D1=81=D1=82=D1=8F=20=D0=A2=D1=80=D0=B5=D1=82?= =?UTF-8?q?=D1=8F=D0=BA?= Date: Sat, 26 Oct 2024 21:02:44 +0300 Subject: [PATCH] chore(ditsmod): upgrade ditsmod to v2.60.0 and add script to patch bun bug. (#7901) --- javascript/ditsmod/config.yaml | 2 +- javascript/ditsmod/package.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/javascript/ditsmod/config.yaml b/javascript/ditsmod/config.yaml index c8dc123b098..4fd305e487d 100644 --- a/javascript/ditsmod/config.yaml +++ b/javascript/ditsmod/config.yaml @@ -1,7 +1,7 @@ framework: github: ditsmod/ditsmod website: ditsmod.github.io/en - version: 2.59 + version: 2.60 bootstrap: - npm install diff --git a/javascript/ditsmod/package.json b/javascript/ditsmod/package.json index 5d9f98b9b55..334ca9beec3 100755 --- a/javascript/ditsmod/package.json +++ b/javascript/ditsmod/package.json @@ -5,7 +5,7 @@ "description": "", "scripts": { "start": "npm run build && node dist/main.js", - "build": "tsc -b", + "build": "tsc -b && rm node_modules/@ditsmod/*/tsconfig.json", "clean": "rm -rf dist*" }, "imports": { @@ -15,12 +15,12 @@ "author": "Your Name Here", "license": "MIT", "dependencies": { - "@ditsmod/body-parser": "~2.17.0", - "@ditsmod/core": "~2.59.0", - "@ditsmod/routing": "~2.5.0" + "@ditsmod/body-parser": "~2.17.1", + "@ditsmod/core": "~2.60.0", + "@ditsmod/routing": "~2.6.0" }, "devDependencies": { "@types/node": "^20.6.1", - "typescript": "^5.2.2" + "typescript": "5.2.2" } }