@dbcube/schema-builder 5.1.6 → 5.2.1
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/dist/index.cjs +40 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +38 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
- package/.npmignore +0 -51
- package/CONTRIBUTING.md +0 -9
- package/bun.lockb +0 -0
- package/pnpm-workspace.yaml +0 -2
- package/tsup.config.ts +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbcube/schema-builder",
|
|
3
|
-
"version": "5.1
|
|
3
|
+
"version": "5.2.1",
|
|
4
4
|
"description": "The Dbcube Query Builder is a lightweight, flexible, and fluent library for building queries across multiple database engines, including MySQL, PostgreSQL, SQLite, and MongoDB, using JavaScript/Node.js. \nIts agnostic design allows you to generate data manipulation (DML) and data definition (DDL) operations with a clean, chainable syntax—without sacrificing power or expressiveness.\nIt’s designed to work seamlessly in both SQL and NoSQL environments, providing a consistent abstraction layer across different storage technologies while still leveraging the native capabilities of each engine.",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -54,18 +54,21 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@dbcube/core": "^5.1
|
|
57
|
+
"@dbcube/core": "^5.2.1",
|
|
58
58
|
"chalk": "^5.6.2",
|
|
59
59
|
"ora": "^9.4.0"
|
|
60
60
|
},
|
|
61
|
+
"files": [
|
|
62
|
+
"dist/**/*"
|
|
63
|
+
],
|
|
61
64
|
"repository": {
|
|
62
65
|
"type": "git",
|
|
63
66
|
"url": "https://github.com/Dbcube/query-builder"
|
|
64
67
|
},
|
|
65
68
|
"devDependencies": {
|
|
66
|
-
"@types/node": "^25.
|
|
69
|
+
"@types/node": "^25.9.3",
|
|
67
70
|
"dts-bundle-generator": "^9.5.1",
|
|
68
|
-
"rollup": "^4.
|
|
71
|
+
"rollup": "^4.61.1",
|
|
69
72
|
"tsup": "^8.5.1",
|
|
70
73
|
"typescript": "^6.0.3"
|
|
71
74
|
}
|
package/.npmignore
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
# Directories
|
|
2
|
-
examples
|
|
3
|
-
|
|
4
|
-
# Ignorar dependencias y configuraciones de desarrollo
|
|
5
|
-
node_modules/
|
|
6
|
-
npm-debug.log*
|
|
7
|
-
yarn-debug.log*
|
|
8
|
-
yarn-error.log*
|
|
9
|
-
|
|
10
|
-
# Ignorar carpetas y archivos irrelevantes
|
|
11
|
-
.vscode/
|
|
12
|
-
.lh
|
|
13
|
-
.idea/
|
|
14
|
-
.DS_Store
|
|
15
|
-
Thumbs.db
|
|
16
|
-
*.log
|
|
17
|
-
|
|
18
|
-
# Ignorar configuraciones del proyecto
|
|
19
|
-
.env
|
|
20
|
-
.env.*.local
|
|
21
|
-
package-lock.json
|
|
22
|
-
|
|
23
|
-
# Ignorar archivos del sistema
|
|
24
|
-
*.swp
|
|
25
|
-
*.swo
|
|
26
|
-
*.tmp
|
|
27
|
-
*.temp
|
|
28
|
-
|
|
29
|
-
# Ignorar carpetas de trabajo
|
|
30
|
-
temp/
|
|
31
|
-
logs/
|
|
32
|
-
debug/
|
|
33
|
-
|
|
34
|
-
# Ignorar archivos de compilación
|
|
35
|
-
src/
|
|
36
|
-
tsconfig.json
|
|
37
|
-
tsconfig.tsbuildinfo
|
|
38
|
-
|
|
39
|
-
# Ignorar pruebas y configuraciones
|
|
40
|
-
tests/
|
|
41
|
-
__tests__/
|
|
42
|
-
__mocks__/
|
|
43
|
-
coverage/
|
|
44
|
-
jest.config.js
|
|
45
|
-
|
|
46
|
-
# Ignorar documentación o ejemplos no necesarios
|
|
47
|
-
docs/
|
|
48
|
-
examples/
|
|
49
|
-
|
|
50
|
-
# Asegurarse de incluir solo lo esencial
|
|
51
|
-
!.npmignore
|
package/CONTRIBUTING.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
## Colaboración
|
|
2
|
-
|
|
3
|
-
Si deseas contribuir a este proyecto, sigue estos pasos:
|
|
4
|
-
|
|
5
|
-
1. Haz un fork del repositorio.
|
|
6
|
-
2. Crea una nueva rama (`git checkout -b feature/nueva-caracteristica`).
|
|
7
|
-
3. Realiza tus cambios y haz commit de ellos (`git commit -am 'Añadir nueva característica'`).
|
|
8
|
-
4. Sube tu rama (`git push origin feature/nueva-caracteristica`).
|
|
9
|
-
5. Abre un Pull Request.
|
package/bun.lockb
DELETED
|
Binary file
|
package/pnpm-workspace.yaml
DELETED
package/tsup.config.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from 'tsup';
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
entry: ['src/index.ts'], // Punto de entrada
|
|
5
|
-
format: ['cjs', 'esm'], // Genera CommonJS y ES Modules
|
|
6
|
-
dts: false,
|
|
7
|
-
clean: true, // Limpia el directorio de salida
|
|
8
|
-
outDir: 'dist', // Directorio de salida
|
|
9
|
-
splitting: false, // Desactiva la división de código
|
|
10
|
-
sourcemap: true, // Genera sourcemaps
|
|
11
|
-
outExtension: ({ format }) => ({ // Forzar extensiones personalizadas
|
|
12
|
-
js: format === 'cjs' ? '.cjs' : '.js',
|
|
13
|
-
}),
|
|
14
|
-
});
|