Skip to content

Commit

Permalink
v3.0.2
Browse files Browse the repository at this point in the history
 - Compatibility with `meteor@1.5.1`
 - Dependencies update
  • Loading branch information
dr-dimitru committed Aug 1, 2017
1 parent 94ad599 commit ff1fbb3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
33 changes: 17 additions & 16 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
babel-compiler@6.14.1
babel-compiler@6.19.4
babel-runtime@1.0.1
base64@1.0.10
blaze@2.1.8
blaze-tools@1.0.8
blaze-tools@1.0.10
caching-compiler@1.1.9
caching-html-compiler@1.0.6
check@1.2.5
deps@1.0.12
diff-sequence@1.0.7
ecmascript@0.6.3
ecmascript-runtime@0.3.15
ecmascript@0.8.1
ecmascript-runtime@0.4.1
ecmascript-runtime-client@0.4.3
ecmascript-runtime-server@0.4.1
ejson@1.0.13
html-tools@1.0.9
htmljs@1.0.10
html-tools@1.0.11
htmljs@1.0.11
id-map@1.0.9
jquery@1.11.10
meteor@1.6.1
minifier-js@1.2.18
modules@0.7.9
modules-runtime@0.7.9
meteor@1.7.0
modules@0.9.2
modules-runtime@0.8.0
mongo-id@1.0.6
observe-sequence@1.0.16
ostrio:cstorage@2.1.2
ostrio:i18n@3.0.1
promise@0.8.8
ostrio:cstorage@2.2.0
ostrio:i18n@3.0.2
promise@0.8.9
random@1.0.10
reactive-var@1.0.11
spacebars@1.0.12
spacebars-compiler@1.0.11
spacebars-compiler@1.1.0
templating@1.2.13
templating-tools@1.0.4
tracker@1.1.2
templating-tools@1.1.1
tracker@1.1.3
underscore@1.0.10
10 changes: 5 additions & 5 deletions i18n.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Meteor } from 'meteor/meteor';
import { _ } from 'meteor/underscore';
import { check, Match } from 'meteor/check';
import { ReactiveVar } from 'meteor/reactive-var';
import { Template } from 'meteor/templating';
import { _ } from 'meteor/underscore';
import { Meteor } from 'meteor/meteor';
import { Template } from 'meteor/templating';
import { ReactiveVar } from 'meteor/reactive-var';
import { check, Match } from 'meteor/check';
import { ClientStorage } from 'meteor/ostrio:cstorage';

/*
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: 'ostrio:i18n',
summary: 'Super-Lightweight and fast i18n isomorphic driver for Meteor with support of placeholders.',
version: '3.0.1',
version: '3.0.2',
git: 'https://github.com/VeliovGroup/Meteor-Internationalization',
documentation: 'README.md'
});

Package.onUse(function (api) {
api.versionsFrom('1.4');
api.use(['underscore', 'check', 'reactive-var', 'ecmascript', 'ostrio:cstorage@2.1.2'], ['client', 'server']);
api.use(['underscore', 'check', 'reactive-var', 'ecmascript', 'ostrio:cstorage@2.2.0'], ['client', 'server']);
api.use(['templating', 'tracker'], 'client');
api.mainModule('i18n.js', ['client', 'server']);
});

0 comments on commit ff1fbb3

Please sign in to comment.