mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
* [AI] Fix duplicate typechecking by consolidating into lage Previously `yarn typecheck` ran: 1. `tsc -b` (type-checks all packages via project references) 2. `tsc -p tsconfig.root.json --noEmit` (checks root bin/*.ts) 3. `lage typecheck` (runs `tsc --noEmit` per package - duplicate!) Now it runs: 1. `tsc -p tsconfig.root.json --noEmit` (checks root bin/*.ts) 2. `lage typecheck` (handles everything via dependency ordering) Changes: - Remove `tsc -b` from root typecheck script - Add `dependsOn: ["^typecheck"]` to lage config for correct ordering - Change per-package typecheck from `tsc --noEmit` to `tsc -b` so declarations are emitted for dependent packages https://claude.ai/code/session_01P7mtAHphD6f1FsnQRwWBaW * Add release notes for PR #7180 --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
31 lines
692 B
JSON
31 lines
692 B
JSON
{
|
|
"name": "@actual-app/crdt",
|
|
"version": "2.1.0",
|
|
"description": "CRDT layer of Actual",
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build:node": "tsc",
|
|
"proto:generate": "./bin/generate-proto",
|
|
"build": "rm -rf dist && yarn run build:node",
|
|
"test": "vitest --run",
|
|
"typecheck": "tsc -b"
|
|
},
|
|
"dependencies": {
|
|
"google-protobuf": "^3.21.4",
|
|
"murmurhash": "^2.0.1",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/google-protobuf": "3.15.12",
|
|
"protoc-gen-js": "3.21.4-4",
|
|
"ts-protoc-gen": "0.15.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|