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

@alwatr/logger

Package Overview
Dependencies
Maintainers
2
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alwatr/logger - npm Package Compare versions

Comparing version 3.2.4 to 3.2.5

30

CHANGELOG.md

@@ -6,2 +6,12 @@ # Change Log

## [3.2.5](https://github.com/Alwatr/nanolib/compare/@alwatr/logger@3.2.4...@alwatr/logger@3.2.5) (2024-01-31)
### Bug Fixes
* exported types by add .js extensions to all imports ([fc3d83e](https://github.com/Alwatr/nanolib/commit/fc3d83e8f375da97ba276314b2e6966aa82c9b3f)) by @AliMD
### Miscellaneous Chores
* **deps:** update ([1a45030](https://github.com/Alwatr/nanolib/commit/1a450305440b710a300787d4ca24b1ed8c6a39d7)) by @AliMD
## [3.2.4](https://github.com/Alwatr/nanolib/compare/@alwatr/logger@3.2.3...@alwatr/logger@3.2.4) (2024-01-24)

@@ -27,7 +37,7 @@

* **logger:** defaultDebugMode ([bab9f7c](https://github.com/Alwatr/nanolib/commit/bab9f7c7b26fc2f50476ebc74d484a4b39c9dbda)) by @AliMD
- **logger:** defaultDebugMode ([bab9f7c](https://github.com/Alwatr/nanolib/commit/bab9f7c7b26fc2f50476ebc74d484a4b39c9dbda)) by @AliMD
### Features
* **logger:** debugMode in definePackage ([9799320](https://github.com/Alwatr/nanolib/commit/97993203d76db57e55b31bef485ea77cfd32a64c)) by @njfamirm
- **logger:** debugMode in definePackage ([9799320](https://github.com/Alwatr/nanolib/commit/97993203d76db57e55b31bef485ea77cfd32a64c)) by @njfamirm

@@ -38,3 +48,3 @@ # [3.1.0](https://github.com/Alwatr/nanolib/compare/@alwatr/logger@3.0.1...@alwatr/logger@3.1.0) (2024-01-06)

* **logger:** definePackage ([dfd090e](https://github.com/Alwatr/nanolib/commit/dfd090ebd691c9a589370094d49f950524f71369)) by @AliMD
- **logger:** definePackage ([dfd090e](https://github.com/Alwatr/nanolib/commit/dfd090ebd691c9a589370094d49f950524f71369)) by @AliMD

@@ -49,14 +59,14 @@ ## [3.0.1](https://github.com/Alwatr/nanolib/compare/@alwatr/logger@3.0.0...@alwatr/logger@3.0.1) (2024-01-03)

* __package_version__ global type ([de8a3f9](https://github.com/Alwatr/nanolib/commit/de8a3f93bdb5a786c42f56324072b4b9520ce3a1)) by @AliMD
* **logger:** definePackage ([e2e5c6c](https://github.com/Alwatr/nanolib/commit/e2e5c6c8175d6f7bfba1d103c1cac2f647aa6116)) by @AliMD
- `__package_version__` global type ([de8a3f9](https://github.com/Alwatr/nanolib/commit/de8a3f93bdb5a786c42f56324072b4b9520ce3a1)) by @AliMD
- **logger:** definePackage ([e2e5c6c](https://github.com/Alwatr/nanolib/commit/e2e5c6c8175d6f7bfba1d103c1cac2f647aa6116)) by @AliMD
### Features
* **logger:** change devMode env name ([ad549dc](https://github.com/Alwatr/nanolib/commit/ad549dc39e52242261c78939bd62ca10f69cea60)) by @njfamirm
* **logger:** Update debugMode to enabled by default in development mode ([bc7c7ee](https://github.com/Alwatr/nanolib/commit/bc7c7ee1118a259ceaa1be1dade90f2f9ccf9e1d)) by @AliMD
* **logger:** use alwatr dedupe ([d89d076](https://github.com/Alwatr/nanolib/commit/d89d076c9fd0dd311804831b1ac0ea955efd4b6d)) by @njfamirm
- **logger:** change devMode env name ([ad549dc](https://github.com/Alwatr/nanolib/commit/ad549dc39e52242261c78939bd62ca10f69cea60)) by @njfamirm
- **logger:** Update debugMode to enabled by default in development mode ([bc7c7ee](https://github.com/Alwatr/nanolib/commit/bc7c7ee1118a259ceaa1be1dade90f2f9ccf9e1d)) by @AliMD
- **logger:** use alwatr dedupe ([d89d076](https://github.com/Alwatr/nanolib/commit/d89d076c9fd0dd311804831b1ac0ea955efd4b6d)) by @njfamirm
### BREAKING CHANGES
* **logger:** define packages removed and must use @alwatr/dedupe instead
* **logger:** use DEBUG in cli and debug in browser
- **logger:** define packages removed and must use @alwatr/dedupe instead
- **logger:** use DEBUG in cli and debug in browser

@@ -1,2 +0,2 @@

import type { AlwatrLogger } from './type';
import type { AlwatrLogger } from './type.js';
/**

@@ -3,0 +3,0 @@ * Global define package for managing package versions to prevent version conflicts and return package level logger.

@@ -1,2 +0,2 @@

import type { AlwatrLogger } from './type';
import type { AlwatrLogger } from './type.js';
/**

@@ -3,0 +3,0 @@ * Create a logger function for fancy console debug with custom scope.

@@ -1,4 +0,4 @@

export * from './logger';
export * from './define-package';
export * from './type';
export * from './logger.js';
export * from './define-package.js';
export * from './type.js';
//# sourceMappingURL=main.d.ts.map
{
"name": "@alwatr/logger",
"version": "3.2.4",
"version": "3.2.5",
"description": "Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.",

@@ -69,13 +69,13 @@ "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",

"dependencies": {
"@alwatr/dedupe": "^1.0.4",
"@alwatr/platform-info": "^1.1.4"
"@alwatr/dedupe": "^1.0.5",
"@alwatr/platform-info": "^1.1.5"
},
"devDependencies": {
"@alwatr/nano-build": "^1.3.2",
"@alwatr/nano-build": "^1.3.3",
"@alwatr/prettier-config": "^1.0.4",
"@alwatr/tsconfig-base": "^1.1.1",
"@types/node": "^20.11.6",
"@alwatr/tsconfig-base": "^1.1.2",
"@types/node": "^20.11.13",
"typescript": "^5.3.3"
},
"gitHead": "3486060abc5f331a3b8c78da7f1d671ba1139b5d"
"gitHead": "54726b7ac06d4a6ffb42731b58e8d976de1211bd"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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