-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixing known issues - No DOM changes - Respect DNT - Code optimisation (less code, do more) - Support for Meteor >= 1.3.* - Better docs
- Loading branch information
1 parent
bfcea9f
commit bdc659b
Showing
4 changed files
with
68 additions
and
21 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,3 +1,3 @@ | ||
[email protected].12 | ||
ostrio:[email protected].1 | ||
[email protected].6 | ||
[email protected].13 | ||
ostrio:[email protected].2 | ||
[email protected].7 |
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,13 +1,13 @@ | ||
Package.describe({ | ||
name: 'ostrio:analytics', | ||
version: '1.0.1', | ||
version: '1.0.2', | ||
summary: 'Visitor\'s analytics tracking code for ostr.io service', | ||
git: 'https://github.com/VeliovGroup/ostrio-analytics', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function(api) { | ||
api.versionsFrom('1.0.1'); | ||
api.versionsFrom('1.3'); | ||
api.addFiles('./lib/analytics.js', 'client'); | ||
api.export('OstrioTrackerClass'); | ||
api.export('OstrioTrackerClass', 'client'); | ||
}); |
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