mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
16 lines
280 B
JavaScript
16 lines
280 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/deep_extend.js'], ['client', 'server']);
|
||
|
|
||
|
api.export(['deepExtend']);
|
||
|
});
|