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

20 lines
346 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-12-27 11:58:58 +01:00
version: "1.0.0",
git: "https://github.com/TelescopeJS/Telescope.git"
2016-06-09 17:42:20 +09:00
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
2016-06-09 17:42:20 +09:00
api.use([
2016-12-27 11:58:58 +01:00
'nova:core@1.0.0'
2016-06-09 17:42:20 +09:00
]);
api.addFiles([
'lib/en_US.js'
], ["client", "server"]);
});