Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into claude/refactor-library-011CUMZM8tpzo6bxT5…
…9xVBd1
  • Loading branch information
gxcsoccer authored Oct 22, 2025
commit 164461a4ccd3c6635cd1e91b64744b4ec2801b0a
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@
"build": "tsc",
"dev": "tsc --watch",
"test": "npm run build && egg-bin test",
"cov": "egg-bin cov",
"lint": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"cov": "npm run build && egg-bin cov",
"ci": "npm run lint && npm run cov",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a postbuild script to run build:java to ensure that the Java code is built after the TypeScript code. This would ensure that the Java code is always up-to-date after a build.

    "prepublishOnly": "npm run build",
    "postbuild": "npm run build:java"

"build": "node bin/build.js",
"autod": "autod",
"prepublishOnly": "npm run build"
},
"dependencies": {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.