appos 0.1.6-0 → 0.1.7-0
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/build/exports/server.d.mts +5719 -5719
- package/build/main.js +7 -1
- package/package.json +1 -1
package/build/main.js
CHANGED
|
@@ -378507,7 +378507,13 @@ async function defineI18n(opts) {
|
|
|
378507
378507
|
// app/.server/primitives/logger.ts
|
|
378508
378508
|
var import_pino = __toESM(require_pino(), 1);
|
|
378509
378509
|
async function defineLogger(opts) {
|
|
378510
|
-
const transports = [
|
|
378510
|
+
const transports = [
|
|
378511
|
+
...process.env.NODE_ENV !== "production" ? [
|
|
378512
|
+
{
|
|
378513
|
+
target: "pino-pretty"
|
|
378514
|
+
}
|
|
378515
|
+
] : []
|
|
378516
|
+
];
|
|
378511
378517
|
const commonOpts = {
|
|
378512
378518
|
level: opts.level || "info",
|
|
378513
378519
|
redact: opts.redact || [],
|