[READ-ONLY] Mirror of https://github.com/FoxxMD/logging. A typed, opinionated, batteries-included, Pino-based logging solution for backend TS/JS projects foxxmd.github.io/logging
child-logger logging logging-library nodejs pinojs typescript-library
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: Update with-local-tmp-dir to version with typings included

FoxxMD (Mar 12, 2024, 11:12 PM EDT) 0dda5208 1ac3baaa

+6 -20
+4 -4
package-lock.json
··· 34 34 "typedoc-plugin-missing-exports": "^2.2.0", 35 35 "typedoc-plugin-replace-text": "^3.3.0", 36 36 "typescript": "^5.3.3", 37 - "with-local-tmp-dir": "^5.0.1" 37 + "with-local-tmp-dir": "^5.1.1" 38 38 }, 39 39 "engines": { 40 40 "node": ">=18.0.0", ··· 2637 2637 } 2638 2638 }, 2639 2639 "node_modules/with-local-tmp-dir": { 2640 - "version": "5.1.0", 2641 - "resolved": "https://registry.npmjs.org/with-local-tmp-dir/-/with-local-tmp-dir-5.1.0.tgz", 2642 - "integrity": "sha512-hjOdNpgPyO1mX880ojVlO0mCqNYghnzyn7TRUN1llHVX9N6uEBOzJteEz16v0HRmdP+AWZMPn+NtIRy9lMPUxg==", 2640 + "version": "5.1.1", 2641 + "resolved": "https://registry.npmjs.org/with-local-tmp-dir/-/with-local-tmp-dir-5.1.1.tgz", 2642 + "integrity": "sha512-7HZx3lC2BNMqrkob/29+GxBZtt0J2j5qyYn77/FivEAKS2Q90Tlc6KaqjBAPnVo0B3OfHDtCBZG3i8S6kD8N8A==", 2643 2643 "dev": true, 2644 2644 "dependencies": { 2645 2645 "@dword-design/chdir": "^2.0.0",
+1 -1
package.json
··· 64 64 "typedoc-plugin-missing-exports": "^2.2.0", 65 65 "typedoc-plugin-replace-text": "^3.3.0", 66 66 "typescript": "^5.3.3", 67 - "with-local-tmp-dir": "^5.0.1" 67 + "with-local-tmp-dir": "^5.1.1" 68 68 }, 69 69 "dependencies": { 70 70 "pino": "^8.19.0",
-1
tests/index.test.ts
··· 5 5 childLogger, 6 6 LogOptions, 7 7 LoggerAppExtras, 8 - FileLogOptions, 9 8 LogLevelStreamEntry, loggerAppRolling, loggerApp 10 9 } from '../src/index.js'; 11 10 import {PassThrough, Transform} from "node:stream";
-10
tests/types/with-local-tmp-dir.d.ts
··· 1 - declare module 'with-local-tmp-dir' { 2 - 3 - interface withLocalTmpDirOptions { 4 - unsafeCleanup?: boolean 5 - dir?: string 6 - prefix?: string 7 - } 8 - function withLocalTmpDirFunc(func: () => Promise<void>, args?: withLocalTmpDirOptions): Promise<string> 9 - export default withLocalTmpDirFunc 10 - }
+1 -4
tsconfig.json
··· 12 12 "allowSyntheticDefaultImports": true, 13 13 "useDefineForClassFields": true, 14 14 "isolatedModules": true, 15 - "noEmit": true, 16 - "typeRoots": [ 17 - "tests/types" 18 - ] 15 + "noEmit": true 19 16 }, 20 17 "ts-node": { 21 18 "esm": true