[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: Bump typedoc inline sources to fix dependency conflict

FoxxMD (Sep 11, 2024, 1:12 PM EDT) 857c3470 89e2cf65

+9 -9
+1 -2
.github/workflows/typedoc_deploy.yml
··· 16 16 node-version: 18.x 17 17 cache: 'npm' 18 18 19 - # until typedoc-inline-sources is updated we need to force install 20 - - run: npm ci --force 19 + - run: npm ci 21 20 - run: npm run build 22 21 23 22 - name: Create the docs directory locally in CI
+5 -5
package-lock.json
··· 34 34 "tshy": "^1.7.0", 35 35 "tsx": "^4.7.1", 36 36 "typedoc": "^0.26.2", 37 - "typedoc-plugin-inline-sources": "^1.0.2", 37 + "typedoc-plugin-inline-sources": "^1.0.3", 38 38 "typedoc-plugin-missing-exports": "^3.0.0", 39 39 "typedoc-plugin-replace-text": "^4.0.0", 40 40 "typescript": "^5.3.3", ··· 2992 2992 } 2993 2993 }, 2994 2994 "node_modules/typedoc-plugin-inline-sources": { 2995 - "version": "1.0.2", 2996 - "resolved": "https://registry.npmjs.org/typedoc-plugin-inline-sources/-/typedoc-plugin-inline-sources-1.0.2.tgz", 2997 - "integrity": "sha512-J1L2Ky6t5EeAI2fTqhcRii/ntxYN6lSPyKiaTKc/MIHgMTDh81elRvXPZFmvy+xMY9EEE9nlkUujfLGNo5c5Tw==", 2995 + "version": "1.0.3", 2996 + "resolved": "https://registry.npmjs.org/typedoc-plugin-inline-sources/-/typedoc-plugin-inline-sources-1.0.3.tgz", 2997 + "integrity": "sha512-ht1Yvu+pO+F4N81+OzMj+d26d5Ye2gdckIzw22MY53vHb+MKlYXjIFz4DsYfZbnf5J+EphQZI9cy0dGVwGT6qA==", 2998 2998 "dev": true, 2999 2999 "engines": { 3000 3000 "node": ">= 10.8.0" 3001 3001 }, 3002 3002 "peerDependencies": { 3003 - "typedoc": "^0.25.7" 3003 + "typedoc": "0.25.x || 0.26.x" 3004 3004 } 3005 3005 }, 3006 3006 "node_modules/typedoc-plugin-missing-exports": {
+3 -2
package.json
··· 64 64 "tshy": "^1.7.0", 65 65 "tsx": "^4.7.1", 66 66 "typedoc": "^0.26.2", 67 - "typedoc-plugin-inline-sources": "^1.0.2", 67 + "typedoc-plugin-inline-sources": "^1.0.3", 68 68 "typedoc-plugin-missing-exports": "^3.0.0", 69 69 "typedoc-plugin-replace-text": "^4.0.0", 70 70 "typescript": "^5.3.3", ··· 112 112 } 113 113 }, 114 114 "main": "./dist/commonjs/index.js", 115 - "types": "./dist/commonjs/index.d.ts" 115 + "types": "./dist/commonjs/index.d.ts", 116 + "module": "./dist/esm/index.js" 116 117 }