-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
βοΈ Packosphere [`@2.8.0`](https://packosphere.com/ostrio/cookies) __Changes:__ - π₯οΈ Meteor-Desktop support, thanks to @dd137 - π Support for `[email protected]`, thanks to @dallman2 - π Docs update to match changes __Dependencies__: - π¦ `[email protected]`, *was `v0.1.1`*
- Loading branch information
1 parent
322a536
commit b9c283a
Showing
2 changed files
with
39 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
Package.describe({ | ||
name: 'ostrio:cookies', | ||
version: '2.7.2', | ||
version: '2.8.0', | ||
summary: 'Isomorphic bulletproof Server, Client, Browser, and Cordova cookies', | ||
git: 'https://github.com/veliovgroup/Meteor-Cookies', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse((api) => { | ||
api.versionsFrom('1.4'); | ||
api.versionsFrom(['1.4', '3.0-beta.0']); | ||
api.use('ecmascript', ['client', 'server']); | ||
api.use('webapp', 'server'); | ||
api.use('[email protected].1', 'client'); | ||
api.use('[email protected].4', 'client'); | ||
api.mainModule('cookies.js', ['client', 'server']); | ||
}); | ||
|
||
|