esbuild-plugin-pino
Advanced tools
Comparing version 1.2.7 to 1.2.8
type Platform = 'browser' | 'node' | 'neutral'; | ||
type Format = 'iife' | 'cjs' | 'esm'; | ||
type Loader = 'js' | 'jsx' | 'ts' | 'tsx' | 'css' | 'json' | 'text' | 'base64' | 'file' | 'dataurl' | 'binary' | 'copy' | 'default'; | ||
type Loader = 'base64' | 'binary' | 'copy' | 'css' | 'dataurl' | 'default' | 'empty' | 'file' | 'js' | 'json' | 'jsx' | 'text' | 'ts' | 'tsx'; | ||
type LogLevel = 'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'silent'; | ||
@@ -101,2 +101,4 @@ type Charset = 'ascii' | 'utf8'; | ||
external?: string[]; | ||
/** Documentation: https://esbuild.github.io/api/#packages */ | ||
packages?: 'external'; | ||
/** Documentation: https://esbuild.github.io/api/#alias */ | ||
@@ -197,4 +199,4 @@ alias?: Record<string, string>; | ||
contents: Uint8Array; | ||
/** "contents" as text */ | ||
text: string; | ||
/** "contents" as text (changes automatically with "contents") */ | ||
get text(): string; | ||
} | ||
@@ -283,2 +285,4 @@ | ||
mangleCache?: Record<string, string | false>; | ||
/** Only when "legalComments" is "external" */ | ||
legalComments?: string; | ||
} | ||
@@ -438,2 +442,3 @@ | ||
kind: ImportKind | ||
external?: boolean | ||
}[] | ||
@@ -452,3 +457,4 @@ } | ||
path: string | ||
kind: ImportKind | ||
kind: ImportKind | 'file-loader' | ||
external?: boolean | ||
}[] | ||
@@ -455,0 +461,0 @@ exports: string[] |
{ | ||
"name": "esbuild-plugin-pino", | ||
"version": "1.2.7", | ||
"version": "1.2.8", | ||
"description": "An esbuild plugin to generate extra pino files for bundling", | ||
@@ -28,7 +28,7 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/node": "18.11.10", | ||
"@typescript-eslint/eslint-plugin": "5.45.0", | ||
"@typescript-eslint/parser": "5.45.0", | ||
"esbuild": "0.15.17", | ||
"eslint": "8.29.0", | ||
"@types/node": "18.11.17", | ||
"@typescript-eslint/eslint-plugin": "5.47.0", | ||
"@typescript-eslint/parser": "5.47.0", | ||
"esbuild": "0.16.10", | ||
"eslint": "8.30.0", | ||
"eslint-config-prettier": "8.5.0", | ||
@@ -38,12 +38,12 @@ "eslint-plugin-prettier": "4.2.1", | ||
"nodemon": "2.0.20", | ||
"pino": "8.7.0", | ||
"pino": "8.8.0", | ||
"pino-loki": "2.0.3", | ||
"pino-pretty": "9.1.1", | ||
"pkgroll": "1.6.0", | ||
"prettier": "2.8.0", | ||
"pkgroll": "1.8.0", | ||
"prettier": "2.8.1", | ||
"standard-version": "9.5.0", | ||
"thread-stream": "2.2.0", | ||
"tsx": "3.12.1", | ||
"typescript": "4.9.3", | ||
"vitest": "0.25.3" | ||
"typescript": "4.9.4", | ||
"vitest": "0.26.0" | ||
}, | ||
@@ -50,0 +50,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32659
764