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 `meteor@1.4.4.2`
 - __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.

24 changes: 12 additions & 12 deletions .versions
@@ -1,5 +1,5 @@
allow-deny@1.0.5
babel-compiler@6.14.1
babel-compiler@6.18.2
babel-runtime@1.0.1
base64@1.0.10
binary-heap@1.0.10
Expand All @@ -9,31 +9,31 @@ boilerplate-generator@1.0.11
callback-hook@1.0.10
check@1.2.5
ddp@1.2.5
ddp-client@1.3.3
ddp-client@1.3.4
ddp-common@1.2.8
ddp-server@1.3.13
ddp-server@1.3.14
deps@1.0.12
diff-sequence@1.0.7
ecmascript@0.6.3
ecmascript@0.7.3
ecmascript-runtime@0.3.15
ejson@1.0.13
geojson-utils@1.0.10
html-tools@1.0.10
htmljs@1.0.10
id-map@1.0.9
jquery@1.11.10
local-test:ostrio:cstorage@2.1.2
local-test:ostrio:cstorage@2.2.0
logging@1.1.17
meteor@1.6.1
minimongo@1.0.21
modules@0.7.9
modules-runtime@0.7.9
mongo@1.1.16
minimongo@1.0.23
modules@0.8.2
modules-runtime@0.7.10
mongo@1.1.17
mongo-id@1.0.6
npm-mongo@2.2.24
observe-sequence@1.0.16
ordered-dict@1.0.9
ostrio:cstorage@2.1.2
ostrio:cstorage@2.2.0
promise@0.8.8
random@1.0.10
reactive-var@1.0.11
Expand All @@ -42,8 +42,8 @@ routepolicy@1.0.12
spacebars@1.0.12
spacebars-compiler@1.0.12
tinytest@1.0.12
tracker@1.1.2
tracker@1.1.3
ui@1.0.11
underscore@1.0.10
webapp@1.3.14
webapp@1.3.15
webapp-hashing@1.0.9
8 changes: 3 additions & 5 deletions package.js
@@ -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.