mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
21 lines
392 B
JavaScript
21 lines
392 B
JavaScript
Package.describe({
|
|
name: "telescope:i18n",
|
|
summary: "Telescope i18n package",
|
|
version: "0.25.5",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use(['telescope:lib@0.25.5']);
|
|
|
|
api.use(["session"], "client");
|
|
|
|
api.addFiles(['i18n.js'], ['client', 'server']);
|
|
|
|
api.export([
|
|
'i18n'
|
|
]);
|
|
});
|