-
-
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.
- Deps packages update - Add Changelog.md
- Loading branch information
1 parent
1b47ebd
commit 93694fa
Showing
3 changed files
with
21 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[email protected] | ||
[email protected] | ||
ostrio:[email protected].6 | ||
ostrio:[email protected].9 | ||
ostrio:[email protected].7 | ||
ostrio:[email protected].10 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Changelog | ||
========= | ||
|
||
- [[`v0.0.10`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.10)] *05/29/2015* | ||
- Deps packages update | ||
- Add Changelog.md | ||
- [[`v0.0.9`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.9)] *05/28/2015* | ||
- Fix issue #2 | ||
- Remove colon from file names, to avoid Windows compilation issues | ||
- License update | ||
- [[`v0.0.8`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.8)] *05/25/2015* | ||
- Deps packages update | ||
- [[`v0.0.7`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.7)] *04/12/2015* | ||
- Use `ostrio:meteor-root` to find Meteor's root folder | ||
- [[`v0.0.6`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.6)] *04/10/2015* | ||
- Fix storage path for PRODUCTION ENV | ||
- [[`v0.0.5`](https://github.com/VeliovGroup/Meteor-logger-file/releases/tag/v0.0.5)] Initial, please see docs |
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,14 +1,14 @@ | ||
Package.describe({ | ||
name: 'ostrio:loggerfile', | ||
version: '0.0.9', | ||
version: '0.0.10', | ||
summary: 'Simply store application logs into file within ostrio:logger package', | ||
git: 'https://github.com/VeliovGroup/Meteor-logger-file', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.0'); | ||
api.use(['coffeescript', 'ostrio:[email protected].6'], ['client', 'server']); | ||
api.use(['coffeescript', 'ostrio:[email protected].7'], ['client', 'server']); | ||
api.use('ostrio:[email protected]', 'server') | ||
api.addFiles('loggerfile.coffee', ['client', 'server']); | ||
}); | ||
|