chore: align repo scaffolding with the package standard - #35
Merged
Conversation
TheGreatAxios
added this pull request to stack #32
September 26, 2026 03:15
TheGreatAxios
force-pushed
the
cl-9400-artifacts-align-repo-scaffolding-with-the-package-standard
branch
from
September 26, 2026 04:12
e8b2ade to
163a889
Compare
TheGreatAxios
force-pushed
the
cl-9400-artifacts-align-repo-scaffolding-with-the-package-standard
branch
from
September 27, 2026 00:33
163a889 to
2a5fc43
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes CL-9400
Summary
CLA.mdand the CLA Assistant workflow (cla.yml, signatures on acla-signaturesbranch) added; CONTRIBUTING links the CLA.package.json: droppedmain/types(exportscovers Node and Bun), the customcorbitsfield and theoverridesblock (every dependency already resolves onedrizzle-orm@0.45.2, and consumers never see a dependency's overrides); added enginesbun >=1.2.0alongsidenode >=24;testrunsbun test src --pass-with-no-tests; added acheckscript;test:coveragestays as the coverage gate.@types/bunmoves to 1.3.9 and@types/nodeis removed: the standardtypes: ["bun"]with the old 1.1.14 types clashed with Node 22'sFile/URLglobals. Key order is oxfmt'ssortPackageJsonorder.tsconfig.jsonandtsconfig.build.jsonuse the shared templates. Thepathsalias for@corbits/artifactsis gone, soe2e/reference-host.test.tsandexamples/reference-hostimportsrc/index.jsby relative path.noUncheckedIndexedAccessneededids[n]!in sixe2e/list.test.tsassertions..gitignorereplaced with the shared template.test.ymlreplaced by the standardci.yml: checkout v5, Node 24, Postgres 16 on port 5432,bun run check, thenbun run test:coverage(src and e2e under thebunfig.toml80% floor, which is kept) instead oftest:e2e, then packs the tarball and importscreateArtifactRoutesandrunArtifactMigrationsunder Node. Thee2e/helpers.tsdefaultARTIFACT_DATABASE_URLmoves from port 5457 to 5432 to match..github/SECURITY.mdand README badges removed.Releasingsection: releases are manual, as in Interchange (npm version, push tags,gh release create --generate-notes,npm publish).CHANGELOG.mdremoved; GitHub Releases track changes. The README changelog link goes with it.Commits
chore: use the Interchange LICENSE text and add the CLAbuild: align package.json and tsconfig with the package standardci: run check and a Node pack smokedocs: trim CONTRIBUTING, add AGENTS.md, drop SECURITY.mdChecks
bun run build,check,test:e2e(274 tests),test:coverage(292 tests, above the floor) on local Postgres, and the Node pack-and-import smoke pass locally.