Skip to content

Commit 791e621

Browse files
committed
v2.1.1
- Less code, was 566 lines, now - 364 lines - More tests - Dependencies update
1 parent 61816da commit 791e621

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.npm/package/npm-shrinkwrap.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ html-tools@1.0.10
2222
htmljs@1.0.10
2323
id-map@1.0.8
2424
jquery@1.11.9
25-
local-test:ostrio:cstorage@2.1.0
25+
local-test:ostrio:cstorage@2.1.1
2626
logging@1.1.14
2727
meteor@1.2.16
2828
minimongo@1.0.17
@@ -33,7 +33,7 @@ mongo-id@1.0.5
3333
npm-mongo@1.4.44
3434
observe-sequence@1.0.12
3535
ordered-dict@1.0.8
36-
ostrio:cstorage@2.1.0
36+
ostrio:cstorage@2.1.1
3737
promise@0.8.3
3838
random@1.0.10
3939
reactive-var@1.0.10

cstorage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const cs = require('ClientStorage');
22

3-
let ClientStorage = cs.ClientStorage;
4-
let clientStorage = cs.clientStorage;
3+
const ClientStorage = cs.ClientStorage;
4+
const clientStorage = cs.clientStorage;
55
export { ClientStorage, clientStorage };

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'ostrio:cstorage',
3-
version: '2.1.0',
3+
version: '2.1.1',
44
summary: 'Bulletproof persistent Client storage, works with disabled Cookies and/or localStorage',
55
git: 'https://github.com/VeliovGroup/Client-Storage',
66
documentation: 'README.md'
@@ -21,5 +21,5 @@ Package.onTest(function(api) {
2121
});
2222

2323
Npm.depends({
24-
'ClientStorage': '2.1.0'
24+
'ClientStorage': '2.1.1'
2525
});

0 commit comments

Comments
 (0)