check-workspace-constraints.ts 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /**
  2. * Workspace package invariant checks for package-manager-independent quality
  3. * gates.
  4. *
  5. * Run: `tsx scripts/check-workspace-constraints.ts`.
  6. */
  7. import { existsSync, readdirSync, readFileSync } from 'node:fs'
  8. import { join, relative, resolve } from 'node:path'
  9. const root = resolve(import.meta.dirname, '..')
  10. // vendor/* is single-level; packages/<group>/<pkg> nests one level deeper
  11. // (the group dirs — core/llm/bash/… — are pure containers with no manifest).
  12. const workspaceGlobs = [
  13. { dir: 'vendor', depth: 1 },
  14. { dir: 'packages', depth: 2 },
  15. ] as const
  16. const vendoredPackages = new Set([
  17. 'cordis',
  18. 'cosmokit',
  19. 'schemastery',
  20. '@cordisjs/plugin-loader',
  21. '@cordisjs/plugin-include',
  22. '@cordisjs/plugin-group',
  23. '@cordisjs/plugin-timer',
  24. '@cordisjs/plugin-hmr',
  25. '@cordisjs/plugin-logger-console',
  26. ])
  27. const localArtifactDirs = new Set(['node_modules'])
  28. /** The subset of package.json fields this constraint check cares about. */
  29. interface PackageManifest {
  30. name?: string
  31. version?: string
  32. private?: boolean
  33. type?: string
  34. main?: string
  35. types?: string
  36. bin?: string | Record<string, string>
  37. exports?: Record<
  38. string,
  39. | {
  40. types?: string
  41. default?: string
  42. }
  43. | undefined
  44. >
  45. files?: string[]
  46. peerDependencies?: Record<string, string>
  47. devDependencies?: Record<string, string>
  48. }
  49. /** One workspace manifest and its repo-relative path. */
  50. interface WorkspaceManifest {
  51. dir: string
  52. manifest: PackageManifest
  53. }
  54. function readJson(path: string): PackageManifest {
  55. return JSON.parse(readFileSync(path, 'utf8')) as PackageManifest
  56. }
  57. const rootManifest = readJson(join(root, 'package.json'))
  58. const repositoryVersion = rootManifest.version
  59. /** Repo-relative dirs holding a package.json, walked to the configured depth. */
  60. function packageDirs(base: string, depth: number): string[] {
  61. if (depth === 1) {
  62. return readdirSync(join(root, base), { withFileTypes: true })
  63. .filter(entry => entry.isDirectory())
  64. .filter(entry => !localArtifactDirs.has(entry.name))
  65. .filter(entry => existsSync(join(root, base, entry.name, 'package.json')))
  66. .map(entry => join(base, entry.name))
  67. }
  68. return readdirSync(join(root, base), { withFileTypes: true })
  69. .filter(entry => entry.isDirectory())
  70. .filter(entry => !localArtifactDirs.has(entry.name))
  71. .flatMap(group => packageDirs(join(base, group.name), depth - 1))
  72. }
  73. function workspaceManifests(): WorkspaceManifest[] {
  74. const manifests: WorkspaceManifest[] = [
  75. { dir: '.', manifest: rootManifest },
  76. ]
  77. for (const { dir: base, depth } of workspaceGlobs) {
  78. for (const dir of packageDirs(base, depth)) {
  79. manifests.push({ dir, manifest: readJson(join(root, dir, 'package.json')) })
  80. }
  81. }
  82. return manifests
  83. }
  84. const dshPackageFiles = [
  85. 'lib/index.js',
  86. 'lib/types/**/*.d.ts',
  87. 'lib/types/**/*.d.ts.map',
  88. 'src',
  89. ] as const
  90. const dshBinPackageFiles = [
  91. 'lib/index.js',
  92. 'lib/bin.js',
  93. 'lib/types/**/*.d.ts',
  94. 'lib/types/**/*.d.ts.map',
  95. 'src',
  96. ] as const
  97. const dshWorkerPackageFiles = [
  98. 'lib/index.js',
  99. 'lib/worker.cjs',
  100. 'lib/types/**/*.d.ts',
  101. 'lib/types/**/*.d.ts.map',
  102. 'src',
  103. ] as const
  104. function sameStringList(actual: readonly string[] | undefined, expected: readonly string[]): boolean {
  105. return !!actual && actual.length === expected.length && actual.every((value, index) => value === expected[index])
  106. }
  107. function expectedDshPackageFiles(manifest: PackageManifest): readonly string[] {
  108. if (manifest.bin) return dshBinPackageFiles
  109. // A declared "./worker" subpath export sanctions the one extra runtime
  110. // bundle a worker-thread entry needs (and NodeNext/publint then validate
  111. // that subpath's targets like any other export).
  112. if (manifest.exports?.['./worker']) return dshWorkerPackageFiles
  113. return dshPackageFiles
  114. }
  115. function checkWorkspace({ dir, manifest }: WorkspaceManifest): string[] {
  116. const errors: string[] = []
  117. const label = manifest.name ?? dir
  118. if (manifest.private !== true) {
  119. errors.push(`${label}: package.json must set "private": true`)
  120. }
  121. if (manifest.name && vendoredPackages.has(manifest.name)) {
  122. return errors
  123. }
  124. if (manifest.name?.startsWith('@deepseek-ai/dsh-') && manifest.name !== '@deepseek-ai/dsh-root') {
  125. const peer = manifest.peerDependencies?.cordis
  126. const dev = manifest.devDependencies?.cordis
  127. if (!peer) errors.push(`${label}: cordis must be a peerDependency`)
  128. if (!dev) errors.push(`${label}: cordis must also be a devDependency`)
  129. if (peer && dev && peer !== dev) {
  130. errors.push(`${label}: cordis peer (${peer}) and dev (${dev}) ranges must match`)
  131. }
  132. if (manifest.version !== repositoryVersion) {
  133. errors.push(`${label}: package.json version must match root version ${repositoryVersion ?? '(missing)'}`)
  134. }
  135. if (manifest.type !== 'module') {
  136. errors.push(`${label}: package.json must set "type": "module"`)
  137. }
  138. if (manifest.main !== 'lib/index.js') {
  139. errors.push(`${label}: package.json must set "main": "lib/index.js"`)
  140. }
  141. if (manifest.types !== 'lib/types/index.d.ts') {
  142. errors.push(`${label}: package.json must set "types": "lib/types/index.d.ts"`)
  143. }
  144. if (manifest.exports?.['.']?.types !== './lib/types/index.d.ts') {
  145. errors.push(`${label}: package.json exports["."].types must be "./lib/types/index.d.ts"`)
  146. }
  147. if (manifest.exports?.['.']?.default !== './lib/index.js') {
  148. errors.push(`${label}: package.json exports["."].default must be "./lib/index.js"`)
  149. }
  150. const expectedFiles = expectedDshPackageFiles(manifest)
  151. if (!sameStringList(manifest.files, expectedFiles)) {
  152. errors.push(`${label}: package.json files must be ${JSON.stringify(expectedFiles)}`)
  153. }
  154. }
  155. return errors.map(error => `${relative(root, join(root, dir, 'package.json'))}: ${error}`)
  156. }
  157. /**
  158. * Enforce `packages/<group>/<pkg>`: groups are open-named containers without a
  159. * package.json, and packages may be neither flat nor more deeply nested.
  160. */
  161. function checkHierarchyShape(): string[] {
  162. const errors: string[] = []
  163. const packagesRoot = join(root, 'packages')
  164. for (const group of readdirSync(packagesRoot, { withFileTypes: true })) {
  165. if (!group.isDirectory()) continue
  166. const groupRel = join('packages', group.name)
  167. if (existsSync(join(packagesRoot, group.name, 'package.json'))) {
  168. errors.push(`${groupRel}: a group dir must not contain a package.json — packages live at packages/<group>/<pkg>, not directly under packages/`)
  169. continue
  170. }
  171. for (const pkg of readdirSync(join(packagesRoot, group.name), { withFileTypes: true })) {
  172. if (!pkg.isDirectory()) continue
  173. if (localArtifactDirs.has(pkg.name)) continue
  174. const pkgRel = join(groupRel, pkg.name)
  175. if (!existsSync(join(packagesRoot, group.name, pkg.name, 'package.json'))) {
  176. errors.push(`${pkgRel}: expected a package here (no package.json found) — the hierarchy is exactly packages/<group>/<pkg>, no deeper nesting`)
  177. }
  178. }
  179. }
  180. return errors
  181. }
  182. function checkRepositoryVersion(): string[] {
  183. if (repositoryVersion && /^\d+\.\d+\.\d+$/.test(repositoryVersion)) return []
  184. return ['package.json: version must be stable X.Y.Z']
  185. }
  186. const errors = [
  187. ...checkRepositoryVersion(),
  188. ...workspaceManifests().flatMap(checkWorkspace),
  189. ...checkHierarchyShape(),
  190. ]
  191. if (errors.length > 0) {
  192. console.error(errors.join('\n'))
  193. process.exitCode = 1
  194. }