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-10-01 18:11:37 +02:00
version: "0.27.2-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-10-01 18:11:37 +02:00
'nova:core@0.27.2-nova'
2016-06-09 17:42:20 +09:00
]);
api.addFiles([
'lib/en_US.js'
], ["client", "server"]);
});