@dbcube/core 1.0.21 → 1.0.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbcube/core",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -51,6 +51,10 @@
51
51
  ],
52
52
  "author": "Albert Araya",
53
53
  "license": "MIT",
54
+ "files": [
55
+ "dist/**/*",
56
+ ".npmrc"
57
+ ],
54
58
  "publishConfig": {
55
59
  "access": "public"
56
60
  },
package/.npmignore DELETED
@@ -1,52 +0,0 @@
1
- # Directories
2
- examples
3
- bin
4
-
5
- # Ignorar dependencias y configuraciones de desarrollo
6
- node_modules/
7
- npm-debug.log*
8
- yarn-debug.log*
9
- yarn-error.log*
10
-
11
- # Ignorar carpetas y archivos irrelevantes
12
- .vscode/
13
- .lh
14
- .idea/
15
- .DS_Store
16
- Thumbs.db
17
- *.log
18
-
19
- # Ignorar configuraciones del proyecto
20
- .env
21
- .env.*.local
22
- package-lock.json
23
-
24
- # Ignorar archivos del sistema
25
- *.swp
26
- *.swo
27
- *.tmp
28
- *.temp
29
-
30
- # Ignorar carpetas de trabajo
31
- temp/
32
- logs/
33
- debug/
34
-
35
- # Ignorar archivos de compilación
36
- src/
37
- tsconfig.json
38
- tsconfig.tsbuildinfo
39
-
40
- # Ignorar pruebas y configuraciones
41
- tests/
42
- __tests__/
43
- __mocks__/
44
- coverage/
45
- jest.config.js
46
-
47
- # Ignorar documentación o ejemplos no necesarios
48
- docs/
49
- examples/
50
-
51
- # Asegurarse de incluir solo lo esencial
52
- !.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.
@@ -1,3 +0,0 @@
1
- onlyBuiltDependencies:
2
- - better-sqlite3
3
- - esbuild
package/tsup.config.ts DELETED
@@ -1,14 +0,0 @@
1
- import { defineConfig } from 'tsup';
2
-
3
- export default defineConfig({
4
- entry: ['src/index.ts', 'src/install.ts'], // Punto de entrada
5
- format: ['cjs', 'esm'], // Genera CommonJS y ES Modules
6
- dts: true, // Genera archivos de tipos
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
- });