chore: Add GitHub workflow to sync public API docs (no-changelog) (#15985)

This commit is contained in:
Marc Littlemore
2025-07-07 09:26:33 +01:00
committed by GitHub
parent ffe8fbbf73
commit aad712e408
2 changed files with 99 additions and 1 deletions

View File

@@ -7,7 +7,8 @@
"scripts": {
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && node scripts/build.mjs",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm run build:data",
"build:data": "node scripts/build.mjs",
"buildAndDev": "pnpm run build && pnpm run dev",
"dev": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon\"",
"dev:worker": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon worker\"",