npm link
npm exec tsdown -- -w
# In an other repo:
npm link pg-typesafeYou need a postgresql instance running on localhost:5432. The test suite will not modify the databases. You can run one with docker:
docker run --rm -e POSTGRES_PASSWORD=example -d postgresFor getting information on OIDs, such as going from their name to their number, query the pg_type table:
select oid,typname from pg_type;
check/update CHANGELOG.md
npm version minor
npm publish --dry-run
npm publish
git push --follow-tags