Skip to content

Commit

Permalink
v2.1.3 (Meteor v2.2.0)
Browse files Browse the repository at this point in the history
This is only Meteor package update
 - Compatibility with `[email protected]`
 - __Breaking:__ `clientStorage` and `ClientStorage` vars is not
exposed to global scope, use - ES6 `import`
  • Loading branch information
dr-dimitru committed May 17, 2017
1 parent c5dbf2a commit 754cb84
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
6 changes: 3 additions & 3 deletions .npm/package/npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package.describe({
name: 'ostrio:cstorage',
version: '2.1.2',
summary: 'Bulletproof persistent Client storage, works with disabled Cookies and/or localStorage',
version: '2.2.0',
summary: 'Bulletproof persistent Client (Browser) storage, works with disabled Cookies and/or localStorage',
git: 'https://github.com/VeliovGroup/Client-Storage',
documentation: 'README.md'
});
Expand All @@ -10,8 +10,6 @@ Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use('ecmascript', 'client');
api.mainModule('cstorage.js', 'client');
api.export('ClientStorage', 'client');
api.export('clientStorage', 'client');
});

Package.onTest(function(api) {
Expand All @@ -21,5 +19,5 @@ Package.onTest(function(api) {
});

Npm.depends({
'ClientStorage': '2.1.2'
'ClientStorage': '2.1.3'
});

0 comments on commit 754cb84

Please sign in to comment.