Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
 - Compatibility with `[email protected]`
 - Dependencies update
  • Loading branch information
dr-dimitru committed Aug 1, 2017
1 parent 06709d2 commit 3ce611c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 29 deletions.
54 changes: 28 additions & 26 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,50 +1,52 @@
[email protected].5
babel-compiler@6.18.2
[email protected].6
babel-compiler@6.19.4
[email protected]
[email protected]
[email protected]
blaze@2.1.8
[email protected].9
boilerplate-generator@1.0.11
blaze@2.3.2
[email protected].10
boilerplate-generator@1.1.1
[email protected]
[email protected]
ddp@1.2.5
ddp-client@1.3.4
[email protected].8
ddp-server@1.3.14
ddp@1.3.0
ddp-client@2.0.0
[email protected].9
ddp-server@2.0.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].10
[email protected].10
[email protected].11
[email protected].11
[email protected]
[email protected]
local-test:ostrio:[email protected].0
local-test:ostrio:[email protected].1
[email protected]
meteor@1.6.1
minimongo@1.0.23
modules@0.8.2
modules-runtime@0.7.10
[email protected].17
meteor@1.7.0
minimongo@1.2.1
modules@0.9.2
modules-runtime@0.8.0
[email protected].19
[email protected]
[email protected]
[email protected]
[email protected]
ostrio:[email protected].2
ostrio:[email protected].0
[email protected].8
ostrio:[email protected].3
ostrio:[email protected].1
[email protected].9
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].12
spacebars-compiler@1.0.12
[email protected].15
spacebars-compiler@1.1.2
[email protected]
[email protected]
[email protected].11
[email protected].13
[email protected]
[email protected].15
[email protected].17
[email protected]
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,3 +224,9 @@ const log2 = new Logger();
server: true
});
```

Support this project:
========
This project can't be possible without [ostr.io](https://ostr.io).

By using [ostr.io](https://ostr.io) you are not only [protecting domain names](https://ostr.io/info/domain-names-protection), [monitoring websites and servers](https://ostr.io/info/monitoring), using [Prerendering for better SEO](https://ostr.io/info/prerendering) of your JavaScript website, but support our Open Source activity, and great packages like this one are available for free.
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:loggermongo',
version: '2.0.0',
version: '2.0.1',
summary: 'Logging: Store application\'s logs messages in MongoDB (Server & Client support)',
git: 'https://github.com/VeliovGroup/Meteor-logger-mongo',
documentation: 'README.md'
Expand All @@ -9,12 +9,12 @@ Package.describe({
Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use('mongo', 'server');
api.use(['mongo', 'ecmascript', 'check', 'underscore', 'ostrio:[email protected].2'], ['client', 'server']);
api.use(['mongo', 'ecmascript', 'check', 'underscore', 'ostrio:[email protected].3'], ['client', 'server']);
api.mainModule('loggermongo.js', ['client', 'server']);
});

Package.onTest(function(api) {
api.use('tinytest');
api.use(['ecmascript', 'underscore', 'ostrio:[email protected].2', 'ostrio:[email protected].0']);
api.use(['ecmascript', 'underscore', 'ostrio:[email protected].3', 'ostrio:[email protected].1']);
api.addFiles('loggermongo-tests.js');
});

0 comments on commit 3ce611c

Please sign in to comment.