-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Codebase enhancements and fixes - Dependencies update - Docs update
- Loading branch information
1 parent
4e2ab49
commit d813fff
Showing
6 changed files
with
53 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,8 +10,8 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
[email protected] | ||
ostrio:[email protected].1 | ||
ostrio:[email protected].1 | ||
ostrio:[email protected].2 | ||
ostrio:[email protected].2 | ||
ostrio:[email protected] | ||
[email protected] | ||
[email protected] | ||
|
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
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,6 +1,6 @@ | ||
Package.describe({ | ||
name: 'ostrio:loggerfile', | ||
version: '1.1.1', | ||
version: '1.1.2', | ||
summary: 'Logging: Store application\'s logs into file (Server & Client support)', | ||
git: 'https://github.com/VeliovGroup/Meteor-logger-file', | ||
documentation: 'README.md' | ||
|
@@ -9,11 +9,11 @@ Package.describe({ | |
Package.onUse(function(api) { | ||
api.versionsFrom('1.0'); | ||
api.use('ostrio:[email protected]', 'server') | ||
api.use(['coffeescript', 'ostrio:[email protected].1', 'check', 'underscore'], ['client', 'server']); | ||
api.use(['coffeescript', 'ostrio:[email protected].2', 'check', 'underscore'], ['client', 'server']); | ||
api.addFiles('loggerfile.coffee', ['client', 'server']); | ||
api.export('LoggerFile'); | ||
}); | ||
|
||
Npm.depends({ | ||
'fs-extra': '0.28.0' // NOTE: this package has dropped support for Node v0.10, since v0.29.0 | ||
'fs-extra': '0.30.0' // NOTE: this package has dropped support for Node v0.10, since v0.29.0; Brought back Node v0.10 support in v0.30.0, official support will end 2016-10-01 | ||
}); |