Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/logger

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/logger - npm Package Compare versions

Comparing version 1.0.6 to 1.1.0

doc/assets/main.js

66

CHANGELOG.md
# Change Log
Last updated: 2021-11-17T23:24:59Z
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
## [1.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@1.0.5...@thi.ng/logger@1.0.6) (2021-10-28)
**Note:** Unlisted _patch_ versions only involve non-code changes and/or
version bumps of transitive dependencies.
**Note:** Version bump only for package @thi.ng/logger
## [1.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/logger@1.1.0) (2021-11-17)
#### 🚀 Features
- Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
Improving the overall build ergonomics
- introduced a tools workspaces
- imported it in all needed packages/examples
- inclusive project root
### [1.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/logger@1.0.1) (2021-10-13)
#### ♻️ Refactoring
## [1.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@1.0.4...@thi.ng/logger@1.0.5) (2021-10-28)
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
- add .js suffix for all relative imports
**Note:** Version bump only for package @thi.ng/logger
## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/logger@0.1.0) (2021-10-12)
#### 🚀 Features
## [1.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@1.0.3...@thi.ng/logger@1.0.4) (2021-10-25)
**Note:** Version bump only for package @thi.ng/logger
## [1.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@1.0.2...@thi.ng/logger@1.0.3) (2021-10-15)
**Note:** Version bump only for package @thi.ng/logger
## [1.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@1.0.1...@thi.ng/logger@1.0.2) (2021-10-15)
**Note:** Version bump only for package @thi.ng/logger
## [1.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/logger@0.1.0...@thi.ng/logger@1.0.1) (2021-10-13)
**Note:** Version bump only for package @thi.ng/logger
# 0.1.0 (2021-10-12)
### Features
* **logger:** extract as new pkg ([e0399a8](https://github.com/thi-ng/umbrella/commit/e0399a8f64af514e910719a3348d3e10261949df))
- extract as new pkg ([e0399a8](https://github.com/thi-ng/umbrella/commit/e0399a8))
- migrate logging related types & classes from [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api)
{
"name": "@thi.ng/logger",
"version": "1.0.6",
"description": "Types & basis infrastructure for arbitrary logging (w/ default impls)",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
"name": "@thi.ng/logger",
"version": "1.1.0",
"description": "Types & basis infrastructure for arbitrary logging (w/ default impls)",
"type": "module",
"module": "./index.js",
"typings": "./index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/master/packages/logger#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/master/packages/logger#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && tsc --declaration",
"clean": "rimraf *.js *.d.ts *.map doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && ../../scripts/node-esm ../../tools/src/readme.ts",
"doc:stats": "../../scripts/node-esm ../../tools/src/module-stats.ts",
"pub": "yarn build && yarn publish --access public"
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && tsc --declaration",
"clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
"doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
"doc:readme": "yarn doc:stats && tools:readme",
"doc:stats": "tools:module-stats",
"pub": "yarn build && yarn npm publish --access public"
},
"keywords": [
"console",
"logger",
"filter",
"typescript"
],
"publishConfig": {
"access": "public"
},
"browser": {
"process": false,
"setTimeout": false
},
"engines": {
"node": ">=12.7"
},
"files": [
"*.js",
"*.d.ts"
],
"exports": {
".": {
"import": "./index.js"
},
"keywords": [
"console",
"logger",
"filter",
"typescript"
],
"publishConfig": {
"access": "public"
"./api": {
"import": "./api.js"
},
"browser": {
"process": false,
"setTimeout": false
"./console": {
"import": "./console.js"
},
"engines": {
"node": ">=12.7"
},
"files": [
"*.js",
"*.d.ts"
],
"exports": {
".": {
"import": "./index.js"
},
"./api": {
"import": "./api.js"
},
"./console": {
"import": "./console.js"
},
"./null": {
"import": "./null.js"
}
},
"thi.ng": {
"related": [
"rstream-log"
]
},
"gitHead": "c17a556ad25f6882dfa8f806a1d9e8ed7ac7cd71"
}
"./null": {
"import": "./null.js"
}
},
"thi.ng": {
"related": [
"rstream-log"
]
},
"devDependencies": {
"@microsoft/api-extractor": "^7.18.19",
"rimraf": "^3.0.2",
"tools": "^0.0.1",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
},
"gitHead": "519eedf95c076202f3429eb8e46ccff275bfe446\n"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc