-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Compatibility with `[email protected]` - Dependencies update
- Loading branch information
1 parent
1c8011c
commit 6a94a85
Showing
3 changed files
with
34 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Package.describe({ | ||
name: 'ostrio:loggerconsole', | ||
version: '2.0.0', | ||
version: '2.0.1', | ||
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(function(api) { | ||
api.versionsFrom('1.4'); | ||
api.use(['ecmascript', 'check', 'underscore', 'ostrio:[email protected].2'], ['client', 'server']); | ||
api.use(['ecmascript', 'check', 'underscore', 'ostrio:[email protected].3'], ['client', 'server']); | ||
api.mainModule('loggerconsole.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('loggerconsole-tests.js'); | ||
}); |