Skip to content

Commit

Permalink
v2.1.4
Browse files Browse the repository at this point in the history
 - Update external dependencies
  • Loading branch information
dr-dimitru committed Mar 14, 2016
1 parent 6c747ac commit 96ced88
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 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: 4 additions & 4 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jquery@1.11.4
localstorage@1.0.5
logging@1.0.8
meteor@1.1.10
meteorhacks:subs-manager@1.6.2
meteorhacks:subs-manager@1.6.3
minifiers@1.1.7
mongo-id@1.0.1
observe-sequence@1.0.7
ostrio:cookies@2.0.1
ostrio:cstorage@2.0.1
ostrio:i18n@2.1.3
ostrio:cookies@2.0.2
ostrio:cstorage@2.0.3
ostrio:i18n@2.1.4
ostrio:meteor-root@1.0.2
promise@0.5.1
random@1.0.5
Expand Down
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Package.describe({
name: 'ostrio:i18n',
summary: 'Lightweight and fast i18n isomorphic driver for Meteor with support of placeholders.',
version: '2.1.3',
version: '2.1.4',
git: 'https://github.com/VeliovGroup/Meteor-Internationalization',
documentation: 'README.md'
});

Package.onUse(function(api) {
api.versionsFrom('1.2');
api.use(['underscore', 'coffeescript', 'check', 'reactive-var', 'meteorhacks:subs-manager@1.6.2'], ['client', 'server']);
api.use(['templating', 'ostrio:cstorage@2.0.1', 'tracker'], 'client');
api.use(['underscore', 'coffeescript', 'check', 'reactive-var', 'meteorhacks:subs-manager@1.6.3'], ['client', 'server']);
api.use(['templating', 'ostrio:cstorage@2.0.3', 'tracker'], 'client');
api.use('ostrio:meteor-root@1.0.2', 'server')
api.addFiles('i18n.coffee', ['client', 'server']);
api.export('I18N', ['server', 'client']);
});

Npm.depends({
'fs-extra': '0.26.2'
'fs-extra': '0.26.5'
});

0 comments on commit 96ced88

Please sign in to comment.