@jmlq/logger 0.1.0-alpha.4 → 0.1.0-alpha.5

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,7 +14,7 @@ npm i @jmlq/logger
14
14
  # Instalar plugins opcionales según el backend de persistencia
15
15
  npm i @jmlq/logger-plugin-fs
16
16
  npm i @jmlq/logger-plugin-mongo
17
- npm i @jmlq/logger-plugin-postgres
17
+ npm i @jmlq/logger-plugin-postgresql
18
18
 
19
19
  ```
20
20
 
@@ -30,7 +30,7 @@ npm i pg@^8.16.3
30
30
 
31
31
  > - [`@jmlq/logger-plugin-fs`](https://www.npmjs.com/package/@jmlq/logger-plugin-fs)
32
32
  > - [`@jmlq/logger-plugin-mongo`](https://www.npmjs.com/package/@jmlq/logger-plugin-mongo)
33
- > - [`@jmlq/logger-plugin-postgres`](https://www.npmjs.com/package/@jmlq/logger-plugin-postgres)
33
+ > - [`@jmlq/logger-plugin-postgresql`](https://www.npmjs.com/package/@jmlq/logger-plugin-postgresql)
34
34
 
35
35
  ---
36
36
 
@@ -67,7 +67,7 @@ npm i pg@^8.16.3
67
67
  > - **`src/index.ts`** — Barrel.
68
68
  > > - Re-exporta lo público: `createLogger`, `LogLevel`, tipos/contratos y `CompositeDatasource`.
69
69
 
70
- ### [](./ARQUITECTURA.md)
70
+ ### [LEER MAS](./ARQUITECTURA.md)
71
71
 
72
72
  ---
73
73
 
@@ -160,7 +160,7 @@ import {
160
160
  connectPostgres,
161
161
  ensurePostgresSchema,
162
162
  PostgresDatasource,
163
- } from "@jmlq/logger-plugin-postgres";
163
+ } from "@jmlq/logger-plugin-postgresql";
164
164
 
165
165
  // Configuración cargada desde variables de entorno (env-var + dotenv)
166
166
  import { envs } from "../plugins/envs.plugin";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jmlq/logger",
3
- "version": "0.1.0-alpha.4",
3
+ "version": "0.1.0-alpha.5",
4
4
  "author": "MLahuasi",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",