koatty_logger
Advanced tools
Comparing version 1.3.13 to 1.3.14
@@ -5,2 +5,4 @@ # Changelog | ||
### [1.3.14](https://github.com/thinkkoa/koatty_logger/compare/v1.3.12...v1.3.14) (2022-05-26) | ||
### [1.3.12](https://github.com/thinkkoa/koatty_logger/compare/v1.3.10...v1.3.12) (2021-12-21) | ||
@@ -7,0 +9,0 @@ |
/*! | ||
* @Author: richen | ||
* @Date: 2022-05-26 10:06:23 | ||
* @Date: 2022-05-26 13:02:49 | ||
* @License: BSD (3-Clause) | ||
@@ -5,0 +5,0 @@ * @Copyright (c) - <richenlin(at)gmail.com> |
/*! | ||
* @Author: richen | ||
* @Date: 2022-05-26 10:06:07 | ||
* @Date: 2022-05-26 13:02:36 | ||
* @License: BSD (3-Clause) | ||
@@ -19,17 +19,17 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
function _interopNamespace(e) { | ||
if (e && e.__esModule) return e; | ||
var n = Object.create(null); | ||
if (e) { | ||
Object.keys(e).forEach(function (k) { | ||
if (k !== 'default') { | ||
var d = Object.getOwnPropertyDescriptor(e, k); | ||
Object.defineProperty(n, k, d.get ? d : { | ||
enumerable: true, | ||
get: function () { return e[k]; } | ||
}); | ||
} | ||
if (e && e.__esModule) return e; | ||
var n = Object.create(null); | ||
if (e) { | ||
Object.keys(e).forEach(function (k) { | ||
if (k !== 'default') { | ||
var d = Object.getOwnPropertyDescriptor(e, k); | ||
Object.defineProperty(n, k, d.get ? d : { | ||
enumerable: true, | ||
get: function () { return e[k]; } | ||
}); | ||
} | ||
n["default"] = e; | ||
return Object.freeze(n); | ||
} | ||
}); | ||
} | ||
n["default"] = e; | ||
return Object.freeze(n); | ||
} | ||
@@ -46,3 +46,3 @@ | ||
* @Date: 2021-11-04 20:31:43 | ||
* @LastEditTime: 2021-11-22 18:35:50 | ||
* @LastEditTime: 2022-05-26 12:47:26 | ||
*/ | ||
@@ -137,3 +137,3 @@ /** | ||
* @LastEditors: Please set LastEditors | ||
* @LastEditTime: 2021-12-21 11:40:42 | ||
* @LastEditTime: 2022-05-26 12:47:17 | ||
* @License: BSD (3-Clause) | ||
@@ -489,3 +489,3 @@ * @Copyright (c) - <richenlin(at)gmail.com> | ||
* @Date: 2021-12-18 20:03:31 | ||
* @LastEditTime: 2021-12-21 11:19:20 | ||
* @LastEditTime: 2022-05-26 12:47:09 | ||
*/ | ||
@@ -492,0 +492,0 @@ //DefaultLogger |
{ | ||
"name": "koatty_logger", | ||
"version": "1.3.13", | ||
"description": "Logger for koatty.", | ||
"scripts": { | ||
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp", | ||
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/", | ||
"build:js": "del-cli --force dist && npx rollup -c", | ||
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api", | ||
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose", | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prerelease": "npm test && npm run build", | ||
"release": "standard-version", | ||
"release:pre": "npm run release -- --prerelease", | ||
"release:major": "npm run release -- --release-as major", | ||
"release:minor": "npm run release -- --release-as minor", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"test": "npm run eslint && jest --passWithNoTests", | ||
"test:cov": "jest --collectCoverage --detectOpenHandles", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s" | ||
}, | ||
"main": "./dist/index.js", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/thinkkoa/koatty_logger.git" | ||
}, | ||
"keywords": [ | ||
"web", | ||
"typescript", | ||
"framework", | ||
"mvc", | ||
"koa2", | ||
"restful", | ||
"agile", | ||
"koatty_logger", | ||
"thinkkoa" | ||
], | ||
"engines": { | ||
"node": ">10.0.0" | ||
}, | ||
"author": { | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/thinkkoa/koatty_logger/issues" | ||
}, | ||
"homepage": "https://github.com/thinkkoa/koatty_logger", | ||
"maintainers": [ | ||
{ | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
} | ||
], | ||
"devDependencies": { | ||
"@commitlint/cli": "^16.x.x", | ||
"@commitlint/config-conventional": "^16.x.x", | ||
"@microsoft/api-documenter": "^7.x.x", | ||
"@microsoft/api-extractor": "^7.x.x", | ||
"@rollup/plugin-json": "^4.x.x", | ||
"@types/jest": "^27.x.x", | ||
"@types/koa": "^2.x.x", | ||
"@types/node": "^16.x.x", | ||
"@typescript-eslint/eslint-plugin": "^5.x.x", | ||
"@typescript-eslint/parser": "^5.x.x", | ||
"conventional-changelog-cli": "^2.x.x", | ||
"copyfiles": "^2.x.x", | ||
"del-cli": "^4.x.x", | ||
"eslint": "^8.x.x", | ||
"eslint-plugin-jest": "^25.x.x", | ||
"husky": "^7.x.x", | ||
"jest": "^27.x.x", | ||
"jest-html-reporters": "^2.x.x", | ||
"rollup": "^2.x.x", | ||
"rollup-plugin-typescript2": "^0.x.x", | ||
"standard-version": "^9.x.x", | ||
"ts-jest": "^27.x.x", | ||
"ts-node": "^10.x.x", | ||
"typescript": "^4.x.x" | ||
}, | ||
"dependencies": { | ||
"koatty_lib": "^1.x.x" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
"name": "koatty_logger", | ||
"version": "1.3.14", | ||
"description": "Logger for koatty.", | ||
"scripts": { | ||
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp", | ||
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/", | ||
"build:js": "del-cli --force dist && npx rollup -c", | ||
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api", | ||
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose", | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prerelease": "npm test && npm run build", | ||
"release": "standard-version", | ||
"release:pre": "npm run release -- --prerelease", | ||
"release:major": "npm run release -- --release-as major", | ||
"release:minor": "npm run release -- --release-as minor", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"test": "npm run eslint && jest --passWithNoTests", | ||
"test:cov": "jest --collectCoverage --detectOpenHandles", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s" | ||
}, | ||
"main": "./dist/index.js", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/thinkkoa/koatty_logger.git" | ||
}, | ||
"keywords": [ | ||
"web", | ||
"typescript", | ||
"framework", | ||
"mvc", | ||
"koa2", | ||
"restful", | ||
"agile", | ||
"koatty_logger", | ||
"thinkkoa" | ||
], | ||
"engines": { | ||
"node": ">10.0.0" | ||
}, | ||
"author": { | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/thinkkoa/koatty_logger/issues" | ||
}, | ||
"homepage": "https://github.com/thinkkoa/koatty_logger", | ||
"maintainers": [ | ||
{ | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
} | ||
} | ||
], | ||
"devDependencies": { | ||
"@commitlint/cli": "^17.x.x", | ||
"@commitlint/config-conventional": "^17.x.x", | ||
"@microsoft/api-documenter": "^7.x.x", | ||
"@microsoft/api-extractor": "^7.x.x", | ||
"@rollup/plugin-json": "^4.x.x", | ||
"@types/jest": "^27.x.x", | ||
"@types/koa": "^2.x.x", | ||
"@types/node": "^16.x.x", | ||
"@typescript-eslint/eslint-plugin": "^5.x.x", | ||
"@typescript-eslint/parser": "^5.x.x", | ||
"conventional-changelog-cli": "^2.x.x", | ||
"copyfiles": "^2.x.x", | ||
"del-cli": "^4.x.x", | ||
"eslint": "^8.x.x", | ||
"eslint-plugin-jest": "^26.x.x", | ||
"husky": "^4.x.x", | ||
"jest": "^28.x.x", | ||
"jest-html-reporters": "^3.x.x", | ||
"rollup": "^2.x.x", | ||
"rollup-plugin-typescript2": "^0.x.x", | ||
"standard-version": "^9.x.x", | ||
"ts-jest": "^28.x.x", | ||
"ts-node": "^10.x.x", | ||
"typescript": "^4.x.x" | ||
}, | ||
"dependencies": { | ||
"koatty_lib": "^1.x.x" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} | ||
} |
186
package.json
{ | ||
"name": "koatty_logger", | ||
"version": "1.3.13", | ||
"description": "Logger for koatty.", | ||
"scripts": { | ||
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp", | ||
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/", | ||
"build:js": "del-cli --force dist && npx rollup -c", | ||
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api", | ||
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose", | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prerelease": "npm test && npm run build", | ||
"release": "standard-version", | ||
"release:pre": "npm run release -- --prerelease", | ||
"release:major": "npm run release -- --release-as major", | ||
"release:minor": "npm run release -- --release-as minor", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"test": "npm run eslint && jest --passWithNoTests", | ||
"test:cov": "jest --collectCoverage --detectOpenHandles", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s" | ||
}, | ||
"main": "./dist/index.js", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/thinkkoa/koatty_logger.git" | ||
}, | ||
"keywords": [ | ||
"web", | ||
"typescript", | ||
"framework", | ||
"mvc", | ||
"koa2", | ||
"restful", | ||
"agile", | ||
"koatty_logger", | ||
"thinkkoa" | ||
], | ||
"engines": { | ||
"node": ">10.0.0" | ||
}, | ||
"author": { | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/thinkkoa/koatty_logger/issues" | ||
}, | ||
"homepage": "https://github.com/thinkkoa/koatty_logger", | ||
"maintainers": [ | ||
{ | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
} | ||
], | ||
"devDependencies": { | ||
"@commitlint/cli": "^16.x.x", | ||
"@commitlint/config-conventional": "^16.x.x", | ||
"@microsoft/api-documenter": "^7.x.x", | ||
"@microsoft/api-extractor": "^7.x.x", | ||
"@rollup/plugin-json": "^4.x.x", | ||
"@types/jest": "^27.x.x", | ||
"@types/koa": "^2.x.x", | ||
"@types/node": "^16.x.x", | ||
"@typescript-eslint/eslint-plugin": "^5.x.x", | ||
"@typescript-eslint/parser": "^5.x.x", | ||
"conventional-changelog-cli": "^2.x.x", | ||
"copyfiles": "^2.x.x", | ||
"del-cli": "^4.x.x", | ||
"eslint": "^8.x.x", | ||
"eslint-plugin-jest": "^25.x.x", | ||
"husky": "^7.x.x", | ||
"jest": "^27.x.x", | ||
"jest-html-reporters": "^2.x.x", | ||
"rollup": "^2.x.x", | ||
"rollup-plugin-typescript2": "^0.x.x", | ||
"standard-version": "^9.x.x", | ||
"ts-jest": "^27.x.x", | ||
"ts-node": "^10.x.x", | ||
"typescript": "^4.x.x" | ||
}, | ||
"dependencies": { | ||
"koatty_lib": "^1.x.x" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
"name": "koatty_logger", | ||
"version": "1.3.14", | ||
"description": "Logger for koatty.", | ||
"scripts": { | ||
"build": "npm run build:js && npm run build:dts && npm run build:doc && npm run build:cp", | ||
"build:cp": "node scripts/postBuild && copyfiles package.json LICENSE README.md dist/", | ||
"build:js": "del-cli --force dist && npx rollup -c", | ||
"build:doc": "del-cli --force docs/api && npx api-documenter markdown --input temp --output docs/api", | ||
"build:dts": "del-cli --force temp && npx tsc && npx api-extractor run --local --verbose", | ||
"eslint": "eslint --ext .ts,.js ./", | ||
"prepublishOnly": "npm test && npm run build", | ||
"prerelease": "npm test && npm run build", | ||
"release": "standard-version", | ||
"release:pre": "npm run release -- --prerelease", | ||
"release:major": "npm run release -- --release-as major", | ||
"release:minor": "npm run release -- --release-as minor", | ||
"pub": "git push --follow-tags origin && npm publish", | ||
"test": "npm run eslint && jest --passWithNoTests", | ||
"test:cov": "jest --collectCoverage --detectOpenHandles", | ||
"version": "conventional-changelog -p angular -i CHANGELOG.md -s" | ||
}, | ||
"main": "./dist/index.js", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/thinkkoa/koatty_logger.git" | ||
}, | ||
"keywords": [ | ||
"web", | ||
"typescript", | ||
"framework", | ||
"mvc", | ||
"koa2", | ||
"restful", | ||
"agile", | ||
"koatty_logger", | ||
"thinkkoa" | ||
], | ||
"engines": { | ||
"node": ">10.0.0" | ||
}, | ||
"author": { | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"bugs": { | ||
"url": "https://github.com/thinkkoa/koatty_logger/issues" | ||
}, | ||
"homepage": "https://github.com/thinkkoa/koatty_logger", | ||
"maintainers": [ | ||
{ | ||
"name": "richenlin", | ||
"email": "richenlin@gmail.com" | ||
} | ||
} | ||
], | ||
"devDependencies": { | ||
"@commitlint/cli": "^17.x.x", | ||
"@commitlint/config-conventional": "^17.x.x", | ||
"@microsoft/api-documenter": "^7.x.x", | ||
"@microsoft/api-extractor": "^7.x.x", | ||
"@rollup/plugin-json": "^4.x.x", | ||
"@types/jest": "^27.x.x", | ||
"@types/koa": "^2.x.x", | ||
"@types/node": "^16.x.x", | ||
"@typescript-eslint/eslint-plugin": "^5.x.x", | ||
"@typescript-eslint/parser": "^5.x.x", | ||
"conventional-changelog-cli": "^2.x.x", | ||
"copyfiles": "^2.x.x", | ||
"del-cli": "^4.x.x", | ||
"eslint": "^8.x.x", | ||
"eslint-plugin-jest": "^26.x.x", | ||
"husky": "^4.x.x", | ||
"jest": "^28.x.x", | ||
"jest-html-reporters": "^3.x.x", | ||
"rollup": "^2.x.x", | ||
"rollup-plugin-typescript2": "^0.x.x", | ||
"standard-version": "^9.x.x", | ||
"ts-jest": "^28.x.x", | ||
"ts-node": "^10.x.x", | ||
"typescript": "^4.x.x" | ||
}, | ||
"dependencies": { | ||
"koatty_lib": "^1.x.x" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
40360
10
1171