mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
21 lines
356 B
JavaScript
21 lines
356 B
JavaScript
({
|
|
name: 'main',
|
|
out: 'main_compiled.js',
|
|
paths: {
|
|
zepto: 'libs/zepto.min',
|
|
underscore: 'libs/underscore',
|
|
backbone: 'libs/backbone',
|
|
mustache: 'libs/mustache',
|
|
text: 'libs/text'
|
|
},
|
|
shim: {
|
|
underscore: {
|
|
exports: '_'
|
|
},
|
|
backbone: {
|
|
deps: ["underscore", "zepto"],
|
|
exports: "Backbone"
|
|
}
|
|
}
|
|
})
|