Vulcan/packages/nova-posts/package.js

21 lines
394 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:posts",
summary: "Telescope posts package",
version: "1.1.0",
git: "https://github.com/TelescopeJS/telescope-posts.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'nova:core@1.1.0',
'nova:users@1.1.0',
]);
2016-06-23 12:17:39 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});