Skip to content

Commit

Permalink
πŸ“¦ v2.1.0
Browse files Browse the repository at this point in the history
- ✨ `highlight` option to disable console-colors, implementing #10, thanks to @catonice
- πŸ‘¨β€πŸ”§ Fix #9 by upgrading `ostrio:[email protected]`, thanks to @bladerunner2020
- πŸ‘¨β€πŸ’» Minor codebase refactoring
- 🀝 Support for `[email protected]`
- πŸ‘¨β€πŸ”¬ Improve test suite
  • Loading branch information
dr-dimitru committed May 31, 2022
1 parent 497af46 commit 3a91de2
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 40 deletions.
77 changes: 39 additions & 38 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,50 +1,51 @@
[email protected].0
babel-compiler@7.2.4
babel-runtime@1.3.0
[email protected].11
[email protected].1
babel-compiler@7.9.0
babel-runtime@1.5.0
[email protected].12
[email protected]
boilerplate-generator@1.6.0
callback-hook@1.1.0
boilerplate-generator@1.7.1
callback-hook@1.4.0
[email protected]
[email protected]
ddp-client@2.3.3
ddp-client@2.5.0
[email protected]
ddp-server@2.2.0
ddp-server@2.5.0
[email protected]
dynamic-import@0.5.0
ecmascript@0.12.4
ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
[email protected].0
[email protected].0
dynamic-import@0.7.2
ecmascript@0.16.2
ecmascript-runtime@0.8.0
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
[email protected].2
[email protected].1
[email protected]
[email protected].0
[email protected].0
local-test:ostrio:loggerconsole@2.0.5
logging@1.1.20
meteor@1.9.2
minimongo@1.4.5
[email protected].3
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.0
[email protected].0
[email protected].1
[email protected].1
local-test:ostrio:loggerconsole@2.1.0
logging@1.3.1
meteor@1.10.0
minimongo@1.8.0
[email protected].8
modules@0.18.0
modules-runtime@0.13.0
mongo@1.15.0
[email protected].3
[email protected]
[email protected].7
npm-mongo@3.1.1
[email protected].8
npm-mongo@4.3.1
[email protected]
ostrio:[email protected]
ostrio:[email protected]
[email protected]
[email protected]
ostrio:[email protected]
ostrio:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
reload@1.2.0
reload@1.3.1
[email protected]
[email protected].0
socket-stream-client@0.2.2
tinytest@1.1.0
[email protected].1
socket-stream-client@0.5.0
tinytest@1.2.1
[email protected]
[email protected]
webapp@1.7.1
webapp-hashing@1.0.9
webapp@1.13.1
webapp-hashing@1.1.0
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import { LoggerConsole } from 'meteor/ostrio:loggerconsole';

- `LoggerInstance` {*Logger*} - from `new Logger()`
- `settings` {*Object*}
- `settings.highlight` {*Boolean*} - Enable/Disable color highlighting; By default: `true`
- `settings.format` {*Function*} - This function must return *String*. Arguments:
- `opts` {*Object*}
- `opts.userId` {*String*}
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: 'ostrio:loggerconsole',
version: '2.0.5',
version: '2.1.0',
summary: 'Logging: Print Client\'s logs to Server\'s console, messages colorized for better readability',
git: 'https://github.com/VeliovGroup/Meteor-logger-console',
documentation: 'README.md'
});

Package.onUse((api) => {
api.versionsFrom('1.4');
api.use(['ecmascript', 'check', 'ostrio:logger@2.0.8'], ['client', 'server']);
api.use(['ecmascript', 'check', 'ostrio:logger@2.1.1'], ['client', 'server']);
api.mainModule('loggerconsole.js', ['client', 'server']);
});

Expand Down

0 comments on commit 3a91de2

Please sign in to comment.