check-workspace-constraints.ts 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524
  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 argv-prefix runner entry ships beside the lib as its own bundle;
  149. // sandbox-local resolves it through the package's ./runner export. tsdown
  150. // also shares its generated FFI code through a hashed runtime chunk.
  151. '@deepseek-ai/dsh-sandbox-windows-acl': ['lib/runner.js', 'lib/types-*.js'],
  152. '@deepseek-ai/dsh-skill-badge': ['assets'],
  153. // tsdown shares the repository/pack code between the lib entry and the bin
  154. // through a hashed chunk. The committed bin.js is the link target pnpm can
  155. // resolve at install time, before the build produces lib/bin.js.
  156. '@deepseek-ai/dsh-experimental-webworker-packer': ['bin.js', 'lib/repository-*.js'],
  157. '@deepseek-ai/dsh-subprocess-local': ['scripts/ensure-spawn-helper.mjs'],
  158. }
  159. function sameStringList(actual: readonly string[] | undefined, expected: readonly string[]): boolean {
  160. return !!actual && actual.length === expected.length && actual.every((value, index) => value === expected[index])
  161. }
  162. export function expectedDshPackageFiles(manifest: PackageManifest): readonly string[] {
  163. const declaredPatch = manifest.dsh?.bundle?.patch
  164. const bundleFiles = declaredPatch === undefined ? [] : [declaredPatch.replace(/^\.\//, '')]
  165. const extras = [
  166. ...bundleFiles,
  167. ...(manifest.name ? packageFileExtras[manifest.name] ?? [] : []),
  168. ]
  169. return [
  170. 'lib/index.js',
  171. // Packages with an invariant export publish its runtime as a separate
  172. // bundle; the package-invariant gate validates the source/export pairing.
  173. ...manifest.exports?.['./invariant'] ? ['lib/invariant.js'] : [],
  174. ...manifest.bin ? ['lib/bin.js'] : [],
  175. // Worker-thread packages ship a CJS worker entry; the browser worker
  176. // bundle is an ES module a page loads with `new Worker(type: 'module')`.
  177. // Keyed on the artifact path, like ./client below.
  178. ...exportDefault(manifest, './worker') === './lib/worker.cjs' ? ['lib/worker.cjs'] : [],
  179. ...exportDefault(manifest, './worker') === './lib/worker.js' ? ['lib/worker.js'] : [],
  180. // UI plugin packages ship their browser bundle beside the node lib
  181. // (single-artifact ruling: dist/ retired, ./client resolves lib/client.js).
  182. // Keyed on the artifact path, not the subpath name: a package's ./client is
  183. // a browser-safe source channel, not a bundle.
  184. ...exportDefault(manifest, './client') === './lib/client.js' ? ['lib/client.js'] : [],
  185. // runtime's shell-held loader subpath ships as its own bundle beside the client half.
  186. ...exportDefault(manifest, './loader') === './lib/loader.js' ? ['lib/loader.js'] : [],
  187. // A store subpath ships its own bundle (single-entry builds; no shared chunk).
  188. ...exportDefault(manifest, './store') === './lib/store/index.js' ? ['lib/store/index.js'] : [],
  189. // A surface bundle's startup row is its own bundle: the Loader imports it
  190. // as a row module, so it cannot ride inside the package entry.
  191. ...exportDefault(manifest, './startup') === './lib/startup.js' ? ['lib/startup.js'] : [],
  192. ...extras,
  193. // Subpaths whose runtime default is the tsc-emitted tree (lib/types/*.js —
  194. // browser-safe source channels rehomed off src so plain Node can import
  195. // them without type stripping) publish the emitted JS alongside the
  196. // declarations.
  197. ...usesEmittedTreeDefaults(manifest) ? ['lib/types/**/*.js'] : [],
  198. 'lib/types/**/*.d.ts',
  199. ...hasExportPair(manifest, './typert', './lib/typert.host.d.ts', './lib/typert.host.js')
  200. ? ['lib/typert.host.js', 'lib/typert.host.d.ts']
  201. : [],
  202. ...hasExportPair(manifest, './client/typert', './lib/typert.client.d.ts', './lib/typert.client.js')
  203. ? ['lib/typert.client.js', 'lib/typert.client.d.ts']
  204. : [],
  205. ...hasTypertRemoteNavigation(manifest)
  206. ? ['lib/typert.remote-client.js', 'lib/typert.remote-client.d.ts']
  207. : [],
  208. ]
  209. }
  210. /** Whether one conditional export exactly names the generated runtime and declaration pair. */
  211. function hasExportPair(
  212. manifest: PackageManifest,
  213. subpath: string,
  214. types: string,
  215. runtime: string,
  216. ): boolean {
  217. const entry = manifest.exports?.[subpath]
  218. return typeof entry === 'object'
  219. && entry !== null
  220. && entry.types === types
  221. && entry.default === runtime
  222. }
  223. /** Runtime target of an export entry: conditional `default`, or the bare-string shorthand. */
  224. function exportDefault(manifest: PackageManifest, subpath: string): string | undefined {
  225. const entry = manifest.exports?.[subpath]
  226. if (typeof entry === 'string') return entry
  227. if (typeof entry === 'object' && entry !== null) return entry.default
  228. return undefined
  229. }
  230. /** Whether any export's runtime default points into the tsc-emitted lib/types tree. */
  231. function usesEmittedTreeDefaults(manifest: PackageManifest): boolean {
  232. return Object.keys(manifest.exports ?? {}).some(subpath =>
  233. exportDefault(manifest, subpath)?.startsWith('./lib/types/') === true)
  234. }
  235. /** Experimental manifest requirements enforced independently from release metadata. */
  236. export function checkExperimentalManifest({ dir, manifest }: WorkspaceManifest): string[] {
  237. if (!experimentalPackageDirectory.test(dir)) return []
  238. const label = manifest.name ?? dir
  239. const errors: string[] = []
  240. if (manifest.name?.startsWith(experimentalPackageNamePrefix) !== true) {
  241. errors.push(`${label}: experimental package name must start with ${JSON.stringify(experimentalPackageNamePrefix)}`)
  242. }
  243. if (manifest.private !== true) errors.push(`${label}: experimental package must set "private": true`)
  244. if (manifest.publishConfig !== undefined) errors.push(`${label}: experimental package must omit publishConfig`)
  245. return errors
  246. }
  247. /**
  248. * Require a dsh-family manifest to carry the workspace version.
  249. *
  250. * The dsh release sequence publishes packages/ and apps/ members and every
  251. * private dsh package on one shared version, written by `release:dsh` and
  252. * shared with the workspace root. This name test is that boundary: it covers
  253. * the family wherever the manifest lives, so apps/ members cannot drift with
  254. * only the release lane noticing.
  255. * @param manifest - the workspace package manifest.
  256. * @param expected - the version every dsh-family manifest must carry (the root's).
  257. * @returns one violation naming the manifest and the expected version, or
  258. * undefined when the manifest is compliant or not in the family.
  259. */
  260. export function checkDshFamilyVersion(manifest: PackageManifest, expected: string | undefined): string | undefined {
  261. const name = manifest.name
  262. if (name !== '@deepseek-ai/dsh' && name?.startsWith('@deepseek-ai/dsh-') !== true) return undefined
  263. if (manifest.version !== expected) {
  264. return `${name}: package.json version must match root version ${expected ?? '(missing)'}`
  265. }
  266. return undefined
  267. }
  268. /**
  269. * Check one workspace manifest against publication and dsh-package policy.
  270. * @param workspace - package directory and parsed manifest.
  271. * @returns path-qualified policy violations.
  272. */
  273. export function checkWorkspaceManifest({ dir, manifest }: WorkspaceManifest): string[] {
  274. const errors = checkExperimentalManifest({ dir, manifest })
  275. const label = manifest.name ?? dir
  276. const familyVersionError = checkDshFamilyVersion(manifest, repositoryVersion)
  277. if (familyVersionError !== undefined) errors.push(familyVersionError)
  278. const isLandlockPackageDir = dir.startsWith('native/landlock-run/packages/')
  279. const isPublicLandlockPackage = isLandlockPackageDir
  280. && manifest.name !== undefined
  281. && publicLandlockPackages.has(manifest.name)
  282. if (isPublicLandlockPackage) {
  283. if (manifest.private === true) {
  284. errors.push(`${label}: published Landlock package must not set "private": true`)
  285. }
  286. if (manifest.publishConfig?.access !== 'public') {
  287. errors.push(`${label}: published Landlock package must set publishConfig.access to "public"`)
  288. }
  289. const expectedDirectory = dir
  290. if (manifest.repository?.type !== 'git'
  291. || manifest.repository.url !== repositoryUrl
  292. || manifest.repository.directory !== expectedDirectory) {
  293. errors.push(`${label}: published Landlock package repository must use ${repositoryUrl} with directory ${expectedDirectory} for trusted publishing`)
  294. }
  295. } else if (releaseMemberDirectory.test(dir)) {
  296. // Release members state that they are publishable: npm refuses a private
  297. // package, and the repository field is how a consumer finds the source of
  298. // the package it installed.
  299. //
  300. // Access is per release sequence, not per scope: the vendored framework and
  301. // the Landlock packages publish publicly because outside consumers install
  302. // them, while the dsh family stays restricted until its own sequence goes
  303. // public. A mixed scope is why no publish path passes `--access` — one flag
  304. // cannot serve both, so each packed manifest decides
  305. // ([rationale](../.agents/notes/implemented/process/2026-08-13-public-vendor-and-native-sequences.md)).
  306. if (manifest.private === true) {
  307. errors.push(`${label}: release member must not set "private": true`)
  308. }
  309. if (manifest.publishConfig?.access !== 'public') {
  310. errors.push(`${label}: release member must set publishConfig.access to "public"`)
  311. }
  312. if (manifest.repository?.type !== 'git'
  313. || manifest.repository.url !== publishedRepositoryUrl
  314. || manifest.repository.directory !== dir) {
  315. errors.push(`${label}: release member repository must use ${publishedRepositoryUrl} with directory ${dir}`)
  316. }
  317. } else if (!experimentalPackageDirectory.test(dir) && manifest.private !== true) {
  318. errors.push(`${label}: package.json must set "private": true`)
  319. }
  320. if (manifest.name && vendoredPackages.has(manifest.name)) {
  321. return errors
  322. }
  323. if (manifest.name?.startsWith('@deepseek-ai/')) {
  324. const allowedSources = publicationSourceAllowlist[manifest.name] ?? []
  325. for (const file of manifest.files ?? []) {
  326. if (isForbiddenPublicationFile(file) && !allowedSources.includes(file)) {
  327. errors.push(`${label}: package.json files must not publish ${JSON.stringify(file)}`)
  328. }
  329. }
  330. }
  331. if (dir.startsWith('apps/') && manifest.name?.startsWith('@deepseek-ai/')) {
  332. const expectedFiles = appPackageFiles[manifest.name]
  333. if (expectedFiles === undefined) {
  334. errors.push(`${label}: app package has no publication files policy`)
  335. } else if (!sameStringList(manifest.files, expectedFiles)) {
  336. errors.push(`${label}: package.json files must be ${JSON.stringify(expectedFiles)}`)
  337. }
  338. }
  339. if (isLandlockPackageDir) {
  340. if (!isPublicLandlockPackage) {
  341. errors.push(`${label}: unexpected package in the public Landlock package family`)
  342. }
  343. if (manifest.version !== landlockVersion) {
  344. errors.push(`${label}: package.json version must match Landlock workspace version ${landlockVersion ?? '(missing)'}`)
  345. }
  346. }
  347. if (dir.startsWith('packages/') && manifest.name?.startsWith('@deepseek-ai/dsh-')) {
  348. const peer = manifest.peerDependencies?.['@deepseek-ai/cordis']
  349. const dev = manifest.devDependencies?.['@deepseek-ai/cordis']
  350. if (!peer) errors.push(`${label}: @deepseek-ai/cordis must be a peerDependency`)
  351. if (!dev) errors.push(`${label}: @deepseek-ai/cordis must also be a devDependency`)
  352. if (peer && dev && peer !== dev) {
  353. errors.push(`${label}: @deepseek-ai/cordis peer (${peer}) and dev (${dev}) ranges must match`)
  354. }
  355. if (manifest.type !== 'module') {
  356. errors.push(`${label}: package.json must set "type": "module"`)
  357. }
  358. if (manifest.main !== 'lib/index.js') {
  359. errors.push(`${label}: package.json must set "main": "lib/index.js"`)
  360. }
  361. if (manifest.types !== 'lib/types/index.d.ts') {
  362. errors.push(`${label}: package.json must set "types": "lib/types/index.d.ts"`)
  363. }
  364. const rootExport = manifest.exports?.['.']
  365. const rootEntry = typeof rootExport === 'object' && rootExport !== null ? rootExport : undefined
  366. if (rootEntry?.types !== './lib/types/index.d.ts') {
  367. errors.push(`${label}: package.json exports["."].types must be "./lib/types/index.d.ts"`)
  368. }
  369. if (rootEntry?.default !== './lib/index.js') {
  370. errors.push(`${label}: package.json exports["."].default must be "./lib/index.js"`)
  371. }
  372. const invariantRaw = manifest.exports?.['./invariant']
  373. const invariantExport = typeof invariantRaw === 'object' && invariantRaw !== null ? invariantRaw : undefined
  374. if (invariantExport?.types !== undefined && invariantExport.types !== './lib/types/invariant.d.ts') {
  375. errors.push(`${label}: package.json exports["./invariant"].types must be "./lib/types/invariant.d.ts"`)
  376. }
  377. if (invariantExport?.default !== undefined && invariantExport.default !== './lib/invariant.js') {
  378. errors.push(`${label}: package.json exports["./invariant"].default must be "./lib/invariant.js"`)
  379. }
  380. if (invariantExport && (invariantExport.types === undefined || invariantExport.default === undefined)) {
  381. errors.push(`${label}: package.json exports["./invariant"] must declare both types and default targets`)
  382. }
  383. const expectedFiles = expectedDshPackageFiles(manifest)
  384. if (!sameStringList(manifest.files, expectedFiles)) {
  385. errors.push(`${label}: package.json files must be ${JSON.stringify(expectedFiles)}`)
  386. }
  387. }
  388. return errors.map(error => `${relative(root, join(root, dir, 'package.json'))}: ${error}`)
  389. }
  390. /**
  391. * Enforce `packages/<group>/<pkg>`: groups are open-named containers without a
  392. * package.json, and packages may be neither flat nor more deeply nested.
  393. */
  394. function checkHierarchyShape(): string[] {
  395. const errors: string[] = []
  396. const packagesRoot = join(root, 'packages')
  397. for (const group of readdirSync(packagesRoot, { withFileTypes: true })) {
  398. if (!group.isDirectory()) continue
  399. const groupRel = join('packages', group.name)
  400. if (existsSync(join(packagesRoot, group.name, 'package.json'))) {
  401. errors.push(`${groupRel}: a group dir must not contain a package.json — packages live at packages/<group>/<pkg>, not directly under packages/`)
  402. continue
  403. }
  404. for (const pkg of readdirSync(join(packagesRoot, group.name), { withFileTypes: true })) {
  405. if (!pkg.isDirectory()) continue
  406. if (localArtifactDirs.has(pkg.name)) continue
  407. const pkgRel = join(groupRel, pkg.name)
  408. if (!existsSync(join(packagesRoot, group.name, pkg.name, 'package.json'))) {
  409. errors.push(`${pkgRel}: expected a package here (no package.json found) — the hierarchy is exactly packages/<group>/<pkg>, no deeper nesting`)
  410. }
  411. }
  412. }
  413. return errors
  414. }
  415. function checkRepositoryVersion(): string[] {
  416. // The root carries the dsh release family's version, so a prerelease such as
  417. // 0.0.1-rc.1 is a valid state between `release:dsh` and its publication.
  418. if (repositoryVersion && /^\d+\.\d+\.\d+(?:-[0-9A-Za-z.-]+)?$/.test(repositoryVersion)) return []
  419. return ['package.json: version must be X.Y.Z with an optional prerelease segment']
  420. }
  421. /** Dependency sections whose ranges reach a published tarball or a local install. */
  422. const dependencySections = ['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'] as const
  423. /** Dependency sections present in an installed runtime. */
  424. const runtimeDependencySections = ['dependencies', 'optionalDependencies', 'peerDependencies'] as const
  425. /**
  426. * Prevent an official runtime from requiring a package its release omits.
  427. * @param manifests - release, private experimental, and deployment-root manifests.
  428. * @returns One error for each forbidden runtime dependency.
  429. */
  430. export function checkExperimentalDependencyIsolation(manifests: readonly WorkspaceManifest[]): string[] {
  431. const experimentalNames = new Set(manifests
  432. .filter(entry => experimentalPackageDirectory.test(entry.dir))
  433. .map(entry => entry.manifest.name)
  434. .filter(name => name !== undefined))
  435. const errors: string[] = []
  436. for (const { dir, manifest } of manifests) {
  437. if (!releaseMemberDirectory.test(dir) && dir !== 'python/sdk-runtime') continue
  438. for (const section of runtimeDependencySections) {
  439. for (const name of Object.keys(manifest[section] ?? {})) {
  440. if (!experimentalNames.has(name)) continue
  441. errors.push(`${manifest.name ?? dir}: ${section}.${name} must not reference an experimental package`)
  442. }
  443. }
  444. }
  445. return errors
  446. }
  447. /**
  448. * Require the `workspace:` protocol for every reference to a workspace member.
  449. *
  450. * A hand-written range says nothing about the version the workspace actually
  451. * carries, and `pnpm pack` leaves it alone: `^0.0.1` published from version
  452. * `0.0.2` names a version that does not exist. The protocol makes pack
  453. * substitute the member's real version, so no release step rewrites ranges.
  454. * @param manifests - every workspace manifest.
  455. * @returns One error per reference that names a workspace member without the protocol.
  456. */
  457. function checkWorkspaceProtocol(manifests: readonly WorkspaceManifest[]): string[] {
  458. const members = new Set(manifests.map(entry => entry.manifest.name).filter(name => name !== undefined))
  459. const errors: string[] = []
  460. for (const { dir, manifest } of manifests) {
  461. for (const section of dependencySections) {
  462. for (const [name, range] of Object.entries(manifest[section] ?? {})) {
  463. if (!members.has(name) || range.startsWith('workspace:')) continue
  464. errors.push(`${manifest.name ?? dir}: ${section}.${name} must use the workspace: protocol, got ${range}`)
  465. }
  466. }
  467. }
  468. return errors
  469. }
  470. /** Run the repository constraint gate. */
  471. export function main(): void {
  472. const manifests = workspaceManifests()
  473. const dependencyManifests = [
  474. ...manifests,
  475. { dir: 'python/sdk-runtime', manifest: readJson(join(root, 'python/sdk-runtime/package.json')) },
  476. ]
  477. const errors = [
  478. ...checkRepositoryVersion(),
  479. ...manifests.flatMap(checkWorkspaceManifest),
  480. ...checkWorkspaceProtocol(manifests),
  481. ...checkExperimentalDependencyIsolation(dependencyManifests),
  482. ...checkHierarchyShape(),
  483. ...collectProjectReferenceFaceViolations(root),
  484. ]
  485. if (errors.length > 0) {
  486. console.error(errors.join('\n'))
  487. process.exitCode = 1
  488. }
  489. }
  490. if (process.argv[1] !== undefined && import.meta.url === pathToFileURL(resolve(process.argv[1])).href) main()