2015-07-14 16:47:46 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:debug",
|
|
|
|
summary: "Telescope debug package",
|
2015-08-15 12:30:08 +09:00
|
|
|
version: "0.23",
|
2015-07-14 16:47:46 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git",
|
|
|
|
debugOnly: true
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
2015-08-15 12:30:08 +09:00
|
|
|
api.use(['telescope:core@0.23']);
|
2015-07-14 16:47:46 +09:00
|
|
|
|
2015-07-15 12:33:06 +09:00
|
|
|
api.addFiles([
|
|
|
|
'lib/debug.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-07-14 16:47:46 +09:00
|
|
|
api.addFiles([
|
|
|
|
'lib/client/templates.js',
|
|
|
|
'lib/client/stylesheets/highlight.scss'
|
|
|
|
], ['client']);
|
|
|
|
|
|
|
|
});
|