-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
__Changes:__ - π¨βπ» Minor package codebase refactoring - π·ββοΈ Drop `underscore` dependency __Other changes:__ - π Update documentation - π€ Compatibility and support for `[email protected]` __Dependencies:__ - π¦ `ostrio:[email protected]`, *was `v2.2.1`*
- Loading branch information
1 parent
88aa39c
commit 1776044
Showing
4 changed files
with
94 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Package.describe({ | ||
name: 'ostrio:i18n', | ||
summary: 'Super-Lightweight and fast i18n isomorphic driver for Meteor with support of placeholders.', | ||
version: '3.1.0', | ||
version: '3.2.0', | ||
git: 'https://github.com/VeliovGroup/Meteor-Internationalization', | ||
documentation: 'README.md' | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom('1.6.1'); | ||
api.use(['underscore', 'check', 'reactive-var', 'ecmascript', 'ostrio:cstorage@2.2.1'], ['client', 'server']); | ||
api.use(['check', 'reactive-var', 'ecmascript', 'ostrio:cstorage@4.0.1'], ['client', 'server']); | ||
api.mainModule('i18n.js', ['client', 'server']); | ||
}); |