1.0.7 • Published 7 years ago

babel-plugin-logs-paths v1.0.7

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Babel Plugin Logs Paths

A fork of babel-plugin-meaningful-logs A babel plugin that enhances your logs by adding the file and the object logging.

Installation

npm i babel-plugin-logs-paths --save-dev

or

yarn add babel-plugin-logs-paths --dev

Usage

console.log(b.length)

becomes

console.log("pathToFile:2:8:b.length", b.length)

By default it modifies all console commands: console.error, console.log... But it can be customized. To modify all winstons logs the .babelrc file would be:

{
  plugins: [
    ['logs-paths',
    {loggers: [{pattern: 'winston'}]}
    ]
  ]
}

Contribute

  1. Submit an issue
  2. Fork the repository
  3. Create a dedicated branch (never ever work in master)
  4. The first time, run command: yarn into the directory
  5. Fix bugs or implement features

License

This project is licensed under the terms of the MIT license

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago