Vulcan/packages/nova-i18n-en-us/package.js

20 lines
360 B
JavaScript
Raw Normal View History

2016-06-09 17:42:20 +09:00
Package.describe({
name: "nova:i18n-en-us",
summary: "Telescope i18n package (en_US)",
2016-07-24 19:15:55 +09:00
version: "0.26.5-nova",
2016-06-09 17:42:20 +09:00
git: "https://github.com/TelescopeJS/telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
2016-07-24 19:15:55 +09:00
'nova:core@0.26.5-nova'
2016-06-09 17:42:20 +09:00
]);
api.addFiles([
'lib/en_US.js'
], ["client", "server"]);
});