check-workspace-constraints.ts 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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. import { pathToFileURL } from 'node:url'
  10. import { hasTypertRemoteNavigation, isForbiddenPublicationFile } from './publication-payload.ts'
  11. import { collectProjectReferenceFaceViolations } from './project-reference-faces.ts'
  12. const root = resolve(import.meta.dirname, '..')
  13. // vendor/* is single-level; packages/<group>/<pkg> nests one level deeper
  14. // (the group dirs — core/llm/shell/… — are pure containers with no manifest).
  15. const workspaceGlobs = [
  16. { dir: 'vendor', depth: 1 },
  17. { dir: 'packages', depth: 2 },
  18. { dir: 'native', depth: 1 },
  19. { dir: 'native/landlock-run/packages', depth: 1 },
  20. { dir: 'apps', depth: 1 },
  21. ] as const
  22. const vendoredPackages = new Set([
  23. '@deepseek-ai/cordis',
  24. '@deepseek-ai/cosmokit',
  25. '@deepseek-ai/schemastery',
  26. '@deepseek-ai/cordis-plugin-loader',
  27. '@deepseek-ai/cordis-plugin-include',
  28. '@deepseek-ai/cordis-plugin-group',
  29. '@deepseek-ai/cordis-plugin-timer',
  30. '@deepseek-ai/cordis-plugin-hmr',
  31. '@deepseek-ai/cordis-plugin-logger-console',
  32. ])
  33. const publicLandlockPackages = new Set([
  34. '@deepseek-ai/node-addon-landlock-run',
  35. '@deepseek-ai/node-addon-landlock-run-linux-arm64',
  36. '@deepseek-ai/node-addon-landlock-run-linux-x64',
  37. ])
  38. /** Deliberate source payloads whose exact bytes are part of the package's audit surface. */
  39. const publicationSourceAllowlist: Readonly<Record<string, readonly string[]>> = {
  40. '@deepseek-ai/node-addon-landlock-run': ['src/main.c'],
  41. }
  42. const repositoryUrl = 'git+https://github.com/deepseek-harness/deepseek-harness.git'
  43. /**
  44. * Source home the published packages point consumers at. It differs from
  45. * {@link repositoryUrl}, which the Landlock packages keep because npm resolves
  46. * their trusted publishing against the repository that runs the workflow.
  47. */
  48. const publishedRepositoryUrl = 'git+https://github.com/deepseek-ai/deepseek-harness.git'
  49. /** Private packages that participate in workspace checks but not releases. */
  50. const experimentalPackageDirectory = /^packages\/experimental\/[^/]+$/
  51. /** npm namespace reserved for private experimental packages. */
  52. const experimentalPackageNamePrefix = '@deepseek-ai/dsh-experimental-'
  53. /** Directories whose packages this repository publishes: one release member each. */
  54. const releaseMemberDirectory = /^(?:packages\/(?!experimental\/)[^/]+\/[^/]+|apps\/[^/]+|vendor\/[^/]+)$/
  55. const localArtifactDirs = new Set(['node_modules'])
  56. const appPackageFiles: Readonly<Record<string, readonly string[]>> = {
  57. '@deepseek-ai/dsh': ['lib/*.js'],
  58. // Sourcemaps stay out by payload policy; the worker-preview surface
  59. // (dist/preview.html and dist/preview/) backs private experimental
  60. // packages and is not published.
  61. '@deepseek-ai/dsh-web-frontend': ['dist', '!dist/**/*.map', '!dist/preview.html', '!dist/preview'],
  62. }
  63. /** The subset of package.json fields this constraint check cares about. */
  64. export interface PackageManifest {
  65. name?: string
  66. version?: string
  67. private?: boolean
  68. type?: string
  69. main?: string
  70. types?: string
  71. bin?: string | Record<string, string>
  72. exports?: Record<
  73. string,
  74. | string
  75. | {
  76. types?: string
  77. default?: string
  78. }
  79. | null
  80. | undefined
  81. >
  82. files?: string[]
  83. publishConfig?: { access?: string }
  84. repository?: { type?: string; url?: string; directory?: string }
  85. peerDependencies?: Record<string, string>
  86. devDependencies?: Record<string, string>
  87. dependencies?: Record<string, string>
  88. optionalDependencies?: Record<string, string>
  89. dsh?: {
  90. bundle?: {
  91. patch?: string
  92. }
  93. }
  94. }
  95. /** One workspace manifest and its repo-relative path. */
  96. export interface WorkspaceManifest {
  97. dir: string
  98. manifest: PackageManifest
  99. }
  100. function readJson(path: string): PackageManifest {
  101. return JSON.parse(readFileSync(path, 'utf8')) as PackageManifest
  102. }
  103. const rootManifest = readJson(join(root, 'package.json'))
  104. const repositoryVersion = rootManifest.version
  105. const landlockWorkspaceManifest = readJson(join(root, 'native/landlock-run/package.json'))
  106. const landlockVersion = landlockWorkspaceManifest.version
  107. /** Repo-relative dirs holding a package.json, walked to the configured depth. */
  108. function packageDirs(base: string, depth: number): string[] {
  109. if (depth === 1) {
  110. return readdirSync(join(root, base), { withFileTypes: true })
  111. .filter(entry => entry.isDirectory())
  112. .filter(entry => !localArtifactDirs.has(entry.name))
  113. .filter(entry => existsSync(join(root, base, entry.name, 'package.json')))
  114. .map(entry => `${base}/${entry.name}`)
  115. }
  116. return readdirSync(join(root, base), { withFileTypes: true })
  117. .filter(entry => entry.isDirectory())
  118. .filter(entry => !localArtifactDirs.has(entry.name))
  119. .flatMap(group => packageDirs(`${base}/${group.name}`, depth - 1))
  120. }
  121. function workspaceManifests(): WorkspaceManifest[] {
  122. const manifests: WorkspaceManifest[] = [
  123. { dir: '.', manifest: rootManifest },
  124. ]
  125. for (const { dir: base, depth } of workspaceGlobs) {
  126. for (const dir of packageDirs(base, depth)) {
  127. manifests.push({ dir, manifest: readJson(join(root, dir, 'package.json')) })
  128. }
  129. }
  130. return manifests
  131. }
  132. const packageFileExtras: Readonly<Record<string, readonly string[]>> = {
  133. // Statically linked client libraries keep their stylesheets next to the emitted
  134. // JavaScript, which imports them by relative path: the compile shell runs
  135. // them through its own CSS pipeline, so the sheets are published artifacts.
  136. // The glob covers whichever sheets a package emits; sourcemaps stay
  137. // unpublished, as everywhere else in the repository.
  138. '@deepseek-ai/dsh-client-ui-primitives': ['lib/**/*.css'],
  139. '@deepseek-ai/dsh-client-web': ['lib/**/*.css'],
  140. '@deepseek-ai/dsh-client-ui-theme': ['lib/styles'],
  141. // The CPython side ships as source .py files, published as-is rather than built.
  142. '@deepseek-ai/dsh-experimental-code-runtime-python': ['py/**/*.py'],
  143. // The shipped preset compositions travel inside the roster package.
  144. '@deepseek-ai/dsh-agent-presets': ['presets'],
  145. // The Web Host mounts the default-off settings owner independently of each
  146. // Agent-scoped delegation-tool instance.
  147. '@deepseek-ai/dsh-tool-subagent': ['lib/model-selection-settings.js'],
  148. // The JSONL backend resolves its private verification Worker relative to
  149. // import.meta.url; it is shipped without a public package subpath.
  150. '@deepseek-ai/dsh-session-persistence-jsonl': ['lib/worker.cjs'],
  151. // The argv-prefix runner entry ships beside the lib as its own bundle;
  152. // sandbox-local resolves it through the package's ./runner export. tsdown
  153. // also shares its generated FFI code through a hashed runtime chunk.
  154. '@deepseek-ai/dsh-sandbox-windows-acl': ['lib/runner.js', 'lib/types-*.js'],
  155. '@deepseek-ai/dsh-skill-badge': ['assets'],
  156. // Ordinary native containment ships a path-loaded runner and its shared
  157. // runner chunk beside the existing node-pty permission repair.
  158. '@deepseek-ai/dsh-subprocess-local': [
  159. 'lib/runner.js',
  160. 'lib/runner-*.js',
  161. 'scripts/ensure-spawn-helper.mjs',
  162. ],
  163. // tsdown shares the repository/pack code between the lib entry and the bin
  164. // through a hashed chunk. The committed bin.js is the link target pnpm can
  165. // resolve at install time, before the build produces lib/bin.js.
  166. '@deepseek-ai/dsh-experimental-webworker-packer': ['bin.js', 'lib/repository-*.js'],
  167. }
  168. function sameStringList(actual: readonly string[] | undefined, expected: readonly string[]): boolean {
  169. return !!actual && actual.length === expected.length && actual.every((value, index) => value === expected[index])
  170. }
  171. export function expectedDshPackageFiles(manifest: PackageManifest): readonly string[] {
  172. const declaredPatch = manifest.dsh?.bundle?.patch
  173. const bundleFiles = declaredPatch === undefined ? [] : [declaredPatch.replace(/^\.\//, '')]
  174. const extras = [
  175. ...bundleFiles,
  176. ...(manifest.name ? packageFileExtras[manifest.name] ?? [] : []),
  177. ]
  178. return [
  179. 'lib/index.js',
  180. // Packages with an invariant export publish its runtime as a separate
  181. // bundle; the package-invariant gate validates the source/export pairing.
  182. ...manifest.exports?.['./invariant'] ? ['lib/invariant.js'] : [],
  183. ...manifest.bin ? ['lib/bin.js'] : [],
  184. // Worker-thread packages ship a CJS worker entry; the browser worker
  185. // bundle is an ES module a page loads with `new Worker(type: 'module')`.
  186. // Keyed on the artifact path, like ./client below.
  187. ...exportDefault(manifest, './worker') === './lib/worker.cjs' ? ['lib/worker.cjs'] : [],
  188. ...exportDefault(manifest, './worker') === './lib/worker.js' ? ['lib/worker.js'] : [],
  189. // UI plugin packages ship their browser bundle beside the node lib
  190. // (single-artifact ruling: dist/ retired, ./client resolves lib/client.js).
  191. // Keyed on the artifact path, not the subpath name: a package's ./client is
  192. // a browser-safe source channel, not a bundle.
  193. ...exportDefault(manifest, './client') === './lib/client.js' ? ['lib/client.js'] : [],
  194. // runtime's shell-held loader subpath ships as its own bundle beside the client half.
  195. ...exportDefault(manifest, './loader') === './lib/loader.js' ? ['lib/loader.js'] : [],
  196. // A store subpath ships its own bundle (single-entry builds; no shared chunk).
  197. ...exportDefault(manifest, './store') === './lib/store/index.js' ? ['lib/store/index.js'] : [],
  198. // A surface bundle's startup row is its own bundle: the Loader imports it
  199. // as a row module, so it cannot ride inside the package entry.
  200. ...exportDefault(manifest, './startup') === './lib/startup.js' ? ['lib/startup.js'] : [],
  201. ...extras,
  202. // Subpaths whose runtime default is the tsc-emitted tree (lib/types/*.js —
  203. // browser-safe source channels rehomed off src so plain Node can import
  204. // them without type stripping) publish the emitted JS alongside the
  205. // declarations.
  206. ...usesEmittedTreeDefaults(manifest) ? ['lib/types/**/*.js'] : [],
  207. 'lib/types/**/*.d.ts',
  208. ...hasExportPair(manifest, './typert', './lib/typert.host.d.ts', './lib/typert.host.js')
  209. ? ['lib/typert.host.js', 'lib/typert.host.d.ts']
  210. : [],
  211. ...hasExportPair(manifest, './client/typert', './lib/typert.client.d.ts', './lib/typert.client.js')
  212. ? ['lib/typert.client.js', 'lib/typert.client.d.ts']
  213. : [],
  214. ...hasTypertRemoteNavigation(manifest)
  215. ? ['lib/typert.remote-client.js', 'lib/typert.remote-client.d.ts']
  216. : [],
  217. ]
  218. }
  219. /** Whether one conditional export exactly names the generated runtime and declaration pair. */
  220. function hasExportPair(
  221. manifest: PackageManifest,
  222. subpath: string,
  223. types: string,
  224. runtime: string,
  225. ): boolean {
  226. const entry = manifest.exports?.[subpath]
  227. return typeof entry === 'object'
  228. && entry !== null
  229. && entry.types === types
  230. && entry.default === runtime
  231. }
  232. /** Runtime target of an export entry: conditional `default`, or the bare-string shorthand. */
  233. function exportDefault(manifest: PackageManifest, subpath: string): string | undefined {
  234. const entry = manifest.exports?.[subpath]
  235. if (typeof entry === 'string') return entry
  236. if (typeof entry === 'object' && entry !== null) return entry.default
  237. return undefined
  238. }
  239. /** Whether any export's runtime default points into the tsc-emitted lib/types tree. */
  240. function usesEmittedTreeDefaults(manifest: PackageManifest): boolean {
  241. return Object.keys(manifest.exports ?? {}).some(subpath =>
  242. exportDefault(manifest, subpath)?.startsWith('./lib/types/') === true)
  243. }
  244. /** Experimental manifest requirements enforced independently from release metadata. */
  245. export function checkExperimentalManifest({ dir, manifest }: WorkspaceManifest): string[] {
  246. if (!experimentalPackageDirectory.test(dir)) return []
  247. const label = manifest.name ?? dir
  248. const errors: string[] = []
  249. if (manifest.name?.startsWith(experimentalPackageNamePrefix) !== true) {
  250. errors.push(`${label}: experimental package name must start with ${JSON.stringify(experimentalPackageNamePrefix)}`)
  251. }
  252. if (manifest.private !== true) errors.push(`${label}: experimental package must set "private": true`)
  253. if (manifest.publishConfig !== undefined) errors.push(`${label}: experimental package must omit publishConfig`)
  254. return errors
  255. }
  256. /**
  257. * Require a dsh-family manifest to carry the workspace version.
  258. *
  259. * The dsh release sequence publishes packages/ and apps/ members and every
  260. * private dsh package on one shared version, written by `release:dsh` and
  261. * shared with the workspace root. This name test is that boundary: it covers
  262. * the family wherever the manifest lives, so apps/ members cannot drift with
  263. * only the release lane noticing.
  264. * @param manifest - the workspace package manifest.
  265. * @param expected - the version every dsh-family manifest must carry (the root's).
  266. * @returns one violation naming the manifest and the expected version, or
  267. * undefined when the manifest is compliant or not in the family.
  268. */
  269. export function checkDshFamilyVersion(manifest: PackageManifest, expected: string | undefined): string | undefined {
  270. const name = manifest.name
  271. if (name !== '@deepseek-ai/dsh' && name?.startsWith('@deepseek-ai/dsh-') !== true) return undefined
  272. if (manifest.version !== expected) {
  273. return `${name}: package.json version must match root version ${expected ?? '(missing)'}`
  274. }
  275. return undefined
  276. }
  277. /**
  278. * Check one workspace manifest against publication and dsh-package policy.
  279. * @param workspace - package directory and parsed manifest.
  280. * @returns path-qualified policy violations.
  281. */
  282. export function checkWorkspaceManifest({ dir, manifest }: WorkspaceManifest): string[] {
  283. const errors = checkExperimentalManifest({ dir, manifest })
  284. const label = manifest.name ?? dir
  285. const familyVersionError = checkDshFamilyVersion(manifest, repositoryVersion)
  286. if (familyVersionError !== undefined) errors.push(familyVersionError)
  287. const isLandlockPackageDir = dir.startsWith('native/landlock-run/packages/')
  288. const isPublicLandlockPackage = isLandlockPackageDir
  289. && manifest.name !== undefined
  290. && publicLandlockPackages.has(manifest.name)
  291. if (isPublicLandlockPackage) {
  292. if (manifest.private === true) {
  293. errors.push(`${label}: published Landlock package must not set "private": true`)
  294. }
  295. if (manifest.publishConfig?.access !== 'public') {
  296. errors.push(`${label}: published Landlock package must set publishConfig.access to "public"`)
  297. }
  298. const expectedDirectory = dir
  299. if (manifest.repository?.type !== 'git'
  300. || manifest.repository.url !== repositoryUrl
  301. || manifest.repository.directory !== expectedDirectory) {
  302. errors.push(`${label}: published Landlock package repository must use ${repositoryUrl} with directory ${expectedDirectory} for trusted publishing`)
  303. }
  304. } else if (releaseMemberDirectory.test(dir)) {
  305. // Release members state that they are publishable: npm refuses a private
  306. // package, and the repository field is how a consumer finds the source of
  307. // the package it installed.
  308. //
  309. // Access is per release sequence, not per scope: the vendored framework and
  310. // the Landlock packages publish publicly because outside consumers install
  311. // them, and the dsh family published publicly with its own sequence on
  312. // 2026-08-13. No publish path passes `--access`; each packed manifest declares
  313. // it, and this gate requires every release member to be public.
  314. if (manifest.private === true) {
  315. errors.push(`${label}: release member must not set "private": true`)
  316. }
  317. if (manifest.publishConfig?.access !== 'public') {
  318. errors.push(`${label}: release member must set publishConfig.access to "public"`)
  319. }
  320. if (manifest.repository?.type !== 'git'
  321. || manifest.repository.url !== publishedRepositoryUrl
  322. || manifest.repository.directory !== dir) {
  323. errors.push(`${label}: release member repository must use ${publishedRepositoryUrl} with directory ${dir}`)
  324. }
  325. } else if (!experimentalPackageDirectory.test(dir) && manifest.private !== true) {
  326. errors.push(`${label}: package.json must set "private": true`)
  327. }
  328. if (manifest.name && vendoredPackages.has(manifest.name)) {
  329. return errors
  330. }
  331. if (manifest.name?.startsWith('@deepseek-ai/')) {
  332. const allowedSources = publicationSourceAllowlist[manifest.name] ?? []
  333. for (const file of manifest.files ?? []) {
  334. if (isForbiddenPublicationFile(file) && !allowedSources.includes(file)) {
  335. errors.push(`${label}: package.json files must not publish ${JSON.stringify(file)}`)
  336. }
  337. }
  338. }
  339. if (dir.startsWith('apps/') && manifest.name?.startsWith('@deepseek-ai/')) {
  340. const expectedFiles = appPackageFiles[manifest.name]
  341. if (expectedFiles === undefined) {
  342. errors.push(`${label}: app package has no publication files policy`)
  343. } else if (!sameStringList(manifest.files, expectedFiles)) {
  344. errors.push(`${label}: package.json files must be ${JSON.stringify(expectedFiles)}`)
  345. }
  346. }
  347. if (isLandlockPackageDir) {
  348. if (!isPublicLandlockPackage) {
  349. errors.push(`${label}: unexpected package in the public Landlock package family`)
  350. }
  351. if (manifest.version !== landlockVersion) {
  352. errors.push(`${label}: package.json version must match Landlock workspace version ${landlockVersion ?? '(missing)'}`)
  353. }
  354. }
  355. if (dir.startsWith('packages/') && manifest.name?.startsWith('@deepseek-ai/dsh-')) {
  356. const peer = manifest.peerDependencies?.['@deepseek-ai/cordis']
  357. const dev = manifest.devDependencies?.['@deepseek-ai/cordis']
  358. if (!peer) errors.push(`${label}: @deepseek-ai/cordis must be a peerDependency`)
  359. if (!dev) errors.push(`${label}: @deepseek-ai/cordis must also be a devDependency`)
  360. if (peer && dev && peer !== dev) {
  361. errors.push(`${label}: @deepseek-ai/cordis peer (${peer}) and dev (${dev}) ranges must match`)
  362. }
  363. if (manifest.type !== 'module') {
  364. errors.push(`${label}: package.json must set "type": "module"`)
  365. }
  366. if (manifest.main !== 'lib/index.js') {
  367. errors.push(`${label}: package.json must set "main": "lib/index.js"`)
  368. }
  369. if (manifest.types !== 'lib/types/index.d.ts') {
  370. errors.push(`${label}: package.json must set "types": "lib/types/index.d.ts"`)
  371. }
  372. const rootExport = manifest.exports?.['.']
  373. const rootEntry = typeof rootExport === 'object' && rootExport !== null ? rootExport : undefined
  374. if (rootEntry?.types !== './lib/types/index.d.ts') {
  375. errors.push(`${label}: package.json exports["."].types must be "./lib/types/index.d.ts"`)
  376. }
  377. if (rootEntry?.default !== './lib/index.js') {
  378. errors.push(`${label}: package.json exports["."].default must be "./lib/index.js"`)
  379. }
  380. const invariantRaw = manifest.exports?.['./invariant']
  381. const invariantExport = typeof invariantRaw === 'object' && invariantRaw !== null ? invariantRaw : undefined
  382. if (invariantExport?.types !== undefined && invariantExport.types !== './lib/types/invariant.d.ts') {
  383. errors.push(`${label}: package.json exports["./invariant"].types must be "./lib/types/invariant.d.ts"`)
  384. }
  385. if (invariantExport?.default !== undefined && invariantExport.default !== './lib/invariant.js') {
  386. errors.push(`${label}: package.json exports["./invariant"].default must be "./lib/invariant.js"`)
  387. }
  388. if (invariantExport && (invariantExport.types === undefined || invariantExport.default === undefined)) {
  389. errors.push(`${label}: package.json exports["./invariant"] must declare both types and default targets`)
  390. }
  391. const expectedFiles = expectedDshPackageFiles(manifest)
  392. if (!sameStringList(manifest.files, expectedFiles)) {
  393. errors.push(`${label}: package.json files must be ${JSON.stringify(expectedFiles)}`)
  394. }
  395. }
  396. return errors.map(error => `${relative(root, join(root, dir, 'package.json'))}: ${error}`)
  397. }
  398. /**
  399. * Enforce `packages/<group>/<pkg>`: groups are open-named containers without a
  400. * package.json, and packages may be neither flat nor more deeply nested.
  401. */
  402. function checkHierarchyShape(): string[] {
  403. const errors: string[] = []
  404. const packagesRoot = join(root, 'packages')
  405. for (const group of readdirSync(packagesRoot, { withFileTypes: true })) {
  406. if (!group.isDirectory()) continue
  407. const groupRel = join('packages', group.name)
  408. if (existsSync(join(packagesRoot, group.name, 'package.json'))) {
  409. errors.push(`${groupRel}: a group dir must not contain a package.json — packages live at packages/<group>/<pkg>, not directly under packages/`)
  410. continue
  411. }
  412. for (const pkg of readdirSync(join(packagesRoot, group.name), { withFileTypes: true })) {
  413. if (!pkg.isDirectory()) continue
  414. if (localArtifactDirs.has(pkg.name)) continue
  415. const pkgRel = join(groupRel, pkg.name)
  416. if (!existsSync(join(packagesRoot, group.name, pkg.name, 'package.json'))) {
  417. errors.push(`${pkgRel}: expected a package here (no package.json found) — the hierarchy is exactly packages/<group>/<pkg>, no deeper nesting`)
  418. }
  419. }
  420. }
  421. return errors
  422. }
  423. function checkRepositoryVersion(): string[] {
  424. // The root carries the dsh release family's version, so a prerelease such as
  425. // 0.0.1-rc.1 is a valid state between `release:dsh` and its publication.
  426. if (repositoryVersion && /^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(repositoryVersion)) return []
  427. return ['package.json: version must be X.Y.Z with an optional prerelease segment']
  428. }
  429. /** Dependency sections whose ranges reach a published tarball or a local install. */
  430. const dependencySections = ['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'] as const
  431. /** Dependency sections present in an installed runtime. */
  432. const runtimeDependencySections = ['dependencies', 'optionalDependencies', 'peerDependencies'] as const
  433. /**
  434. * Prevent an official runtime from requiring a package its release omits.
  435. * @param manifests - release, private experimental, and deployment-root manifests.
  436. * @returns One error for each forbidden runtime dependency.
  437. */
  438. export function checkExperimentalDependencyIsolation(manifests: readonly WorkspaceManifest[]): string[] {
  439. const experimentalNames = new Set(manifests
  440. .filter(entry => experimentalPackageDirectory.test(entry.dir))
  441. .map(entry => entry.manifest.name)
  442. .filter(name => name !== undefined))
  443. const errors: string[] = []
  444. for (const { dir, manifest } of manifests) {
  445. if (!releaseMemberDirectory.test(dir) && dir !== 'python/sdk-runtime') continue
  446. for (const section of runtimeDependencySections) {
  447. for (const name of Object.keys(manifest[section] ?? {})) {
  448. if (!experimentalNames.has(name)) continue
  449. errors.push(`${manifest.name ?? dir}: ${section}.${name} must not reference an experimental package`)
  450. }
  451. }
  452. }
  453. return errors
  454. }
  455. /**
  456. * Require the `workspace:` protocol for every reference to a workspace member.
  457. *
  458. * A hand-written range says nothing about the version the workspace actually
  459. * carries, and `pnpm pack` leaves it alone: `^0.0.1` published from version
  460. * `0.0.2` names a version that does not exist. The protocol makes pack
  461. * substitute the member's real version, so no release step rewrites ranges.
  462. * @param manifests - every workspace manifest.
  463. * @returns One error per reference that names a workspace member without the protocol.
  464. */
  465. function checkWorkspaceProtocol(manifests: readonly WorkspaceManifest[]): string[] {
  466. const members = new Set(manifests.map(entry => entry.manifest.name).filter(name => name !== undefined))
  467. const errors: string[] = []
  468. for (const { dir, manifest } of manifests) {
  469. for (const section of dependencySections) {
  470. for (const [name, range] of Object.entries(manifest[section] ?? {})) {
  471. if (!members.has(name) || range.startsWith('workspace:')) continue
  472. errors.push(`${manifest.name ?? dir}: ${section}.${name} must use the workspace: protocol, got ${range}`)
  473. }
  474. }
  475. }
  476. return errors
  477. }
  478. /** Run the repository constraint gate. */
  479. export function main(): void {
  480. const manifests = workspaceManifests()
  481. const dependencyManifests = [
  482. ...manifests,
  483. { dir: 'python/sdk-runtime', manifest: readJson(join(root, 'python/sdk-runtime/package.json')) },
  484. ]
  485. const errors = [
  486. ...checkRepositoryVersion(),
  487. ...manifests.flatMap(checkWorkspaceManifest),
  488. ...checkWorkspaceProtocol(manifests),
  489. ...checkExperimentalDependencyIsolation(dependencyManifests),
  490. ...checkHierarchyShape(),
  491. ...collectProjectReferenceFaceViolations(root),
  492. ]
  493. if (errors.length > 0) {
  494. console.error(errors.join('\n'))
  495. process.exitCode = 1
  496. }
  497. }
  498. if (process.argv[1] !== undefined && import.meta.url === pathToFileURL(resolve(process.argv[1])).href) main()