Skip to content

Commit

Permalink
v1.2.5
Browse files Browse the repository at this point in the history
 - Dependencies update
 - Better Windows support
  • Loading branch information
dr-dimitru committed Mar 23, 2016
1 parent 96ced88 commit 1c0efc7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .npm/package/npm-shrinkwrap.json

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

6 changes: 3 additions & 3 deletions .versions
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jquery@1.11.4
localstorage@1.0.5
logging@1.0.8
meteor@1.1.10
meteorhacks:subs-manager@1.6.3
meteorhacks:subs-manager@1.6.4
minifiers@1.1.7
mongo-id@1.0.1
observe-sequence@1.0.7
ostrio:cookies@2.0.2
ostrio:cstorage@2.0.3
ostrio:i18n@2.1.4
ostrio:meteor-root@1.0.2
ostrio:i18n@2.1.5
ostrio:meteor-root@1.0.3
promise@0.5.1
random@1.0.5
reactive-var@1.0.6
Expand Down
1 change: 1 addition & 0 deletions CHANDELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
See full change-log at [releases on GitHub](https://github.com/VeliovGroup/Meteor-Internationalization/releases)
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, dr.dimitru (Also known as: ostr.io, Dmitriy Aristarkhovich, Dmitry A. and Veliov Group LTD.)
Copyright (c) 2015, Dmitriy A. (Veliov Group, LLC)
All rights reserved.

Redistribution and use in source and binary forms,
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.4',
version: '2.1.5',
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.3'], ['client', 'server']);
api.use(['underscore', 'coffeescript', 'check', 'reactive-var', 'meteorhacks:subs-manager@1.6.4'], ['client', 'server']);
api.use(['templating', 'ostrio:cstorage@2.0.3', 'tracker'], 'client');
api.use('ostrio:meteor-root@1.0.2', 'server')
api.use('ostrio:meteor-root@1.0.3', 'server')
api.addFiles('i18n.coffee', ['client', 'server']);
api.export('I18N', ['server', 'client']);
});

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

0 comments on commit 1c0efc7

Please sign in to comment.