mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
24 lines
473 B
JavaScript
24 lines
473 B
JavaScript
Package.describe({
|
|
name: "telescope:debug",
|
|
summary: "Telescope debug package",
|
|
version: "0.23.0",
|
|
git: "https://github.com/TelescopeJS/Telescope.git",
|
|
debugOnly: true
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use(['telescope:core@0.23.0']);
|
|
|
|
api.addFiles([
|
|
'lib/debug.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/client/templates.js',
|
|
'lib/client/stylesheets/highlight.scss'
|
|
], ['client']);
|
|
|
|
});
|