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