mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
25 lines
No EOL
487 B
JavaScript
25 lines
No EOL
487 B
JavaScript
Package.describe({summary: "Telescope library package"});
|
|
|
|
Package.on_use(function (api) {
|
|
|
|
api.use([
|
|
'underscore'
|
|
], ['client', 'server']);
|
|
|
|
api.use([
|
|
'jquery'
|
|
], 'client');
|
|
|
|
api.add_files(['lib/lib.js', 'lib/deep_extend.js', 'lib/autolink.js'], ['client', 'server']);
|
|
|
|
api.add_files(['lib/client/jquery.exists.js'], ['client']);
|
|
|
|
api.export([
|
|
'deepExtend',
|
|
'camelToDash',
|
|
'dashToCamel',
|
|
'getSetting',
|
|
'getSiteUrl',
|
|
'trimWords'
|
|
]);
|
|
}); |