@treatwell/moleculer-essentials 1.0.2-beta.1 → 1.0.2-beta.2
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 +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1141,7 +1141,9 @@ const FILTER_SERVICE_LOGS_REGEX = /('[^']*' service is registered\.)|(Service '[
|
|
|
1141
1141
|
let transport;
|
|
1142
1142
|
if (process.env.NODE_ENV !== "production") {
|
|
1143
1143
|
transport = {
|
|
1144
|
-
|
|
1144
|
+
// Building with pkgroll (rollup) will bundle the file into the root index.js so we keep
|
|
1145
|
+
// `logger/` in the path.
|
|
1146
|
+
target: "./logger/pino-pretty-transport.cjs",
|
|
1145
1147
|
options: {
|
|
1146
1148
|
colorize: true,
|
|
1147
1149
|
singleLine: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1141,7 +1141,9 @@ const FILTER_SERVICE_LOGS_REGEX = /('[^']*' service is registered\.)|(Service '[
|
|
|
1141
1141
|
let transport;
|
|
1142
1142
|
if (process.env.NODE_ENV !== "production") {
|
|
1143
1143
|
transport = {
|
|
1144
|
-
|
|
1144
|
+
// Building with pkgroll (rollup) will bundle the file into the root index.js so we keep
|
|
1145
|
+
// `logger/` in the path.
|
|
1146
|
+
target: "./logger/pino-pretty-transport.cjs",
|
|
1145
1147
|
options: {
|
|
1146
1148
|
colorize: true,
|
|
1147
1149
|
singleLine: true,
|
package/package.json
CHANGED