mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
20 lines
352 B
JavaScript
20 lines
352 B
JavaScript
Package.describe({
|
|
name: "theme-test",
|
|
summary: "Telescope components package",
|
|
version: "0.26.4-nova",
|
|
git: "https://github.com/TelescopeJS/telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'nova:lib@0.26.4-nova'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'require.js',
|
|
], ['client', 'server']);
|
|
|
|
});
|