├── .changeset ├── README.md └── config.json ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── index.ts ├── mysql-core │ ├── builder.ts │ └── index.ts ├── pg-core │ ├── builder.ts │ └── index.ts └── sqlite-core │ ├── builder.ts │ └── index.ts ├── tests ├── mysql.spec.ts ├── pg.spec.ts └── sqlite.spec.ts ├── tsconfig.json └── tsup.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mysql-core/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/mysql-core/builder.ts -------------------------------------------------------------------------------- /src/mysql-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/mysql-core/index.ts -------------------------------------------------------------------------------- /src/pg-core/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/pg-core/builder.ts -------------------------------------------------------------------------------- /src/pg-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/pg-core/index.ts -------------------------------------------------------------------------------- /src/sqlite-core/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/sqlite-core/builder.ts -------------------------------------------------------------------------------- /src/sqlite-core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/src/sqlite-core/index.ts -------------------------------------------------------------------------------- /tests/mysql.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/tests/mysql.spec.ts -------------------------------------------------------------------------------- /tests/pg.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/tests/pg.spec.ts -------------------------------------------------------------------------------- /tests/sqlite.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/tests/sqlite.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coeeter/drizzle-cuid2/HEAD/tsup.config.ts --------------------------------------------------------------------------------