@kysera/dialects 0.8.1 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -14
- package/dist/index.d.ts +787 -71
- package/dist/index.js +62 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/adapters/mssql.ts +203 -57
- package/src/adapters/mysql.ts +105 -36
- package/src/adapters/postgres.ts +619 -28
- package/src/adapters/sqlite.ts +126 -36
- package/src/factory.ts +71 -17
- package/src/helpers.ts +405 -18
- package/src/index.ts +85 -9
- package/src/types.ts +103 -9
package/README.md
CHANGED
|
@@ -1005,20 +1005,6 @@ for (const table of tables) {
|
|
|
1005
1005
|
|
|
1006
1006
|
---
|
|
1007
1007
|
|
|
1008
|
-
## 🤝 Contributing
|
|
1009
|
-
|
|
1010
|
-
Contributions are welcome! This package follows strict development principles:
|
|
1011
|
-
|
|
1012
|
-
- ✅ **Zero runtime dependencies** (peer deps only)
|
|
1013
|
-
- ✅ **100% type safe** (TypeScript strict mode)
|
|
1014
|
-
- ✅ **Comprehensive test coverage** (95%+ coverage)
|
|
1015
|
-
- ✅ **Cross-database compatible** (PostgreSQL, MySQL, SQLite)
|
|
1016
|
-
- ✅ **ESM only** (no CommonJS)
|
|
1017
|
-
|
|
1018
|
-
See [CLAUDE.md](../../CLAUDE.md) for development guidelines.
|
|
1019
|
-
|
|
1020
|
-
---
|
|
1021
|
-
|
|
1022
1008
|
## 📄 License
|
|
1023
1009
|
|
|
1024
1010
|
MIT © Kysera
|