forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.js
More file actions
27 lines (27 loc) · 689 Bytes
/
build.js
File metadata and controls
27 lines (27 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
({
baseUrl: ".",
optimize: 'none',
preserveLicenseComments: false,
shim: {
'inflection': {
exports: 'inflection'
},
'backbone': {
deps: ['underscore'],
exports: 'Backbone'
},
'underscore': {
exports: '_'
}
},
paths: {
when: './node_modules/when/when',
knex: './node_modules/knex/knex',
underscore: './node_modules/underscore/underscore',
backbone: './node_modules/backbone/backbone',
inflection: './node_modules/inflection/lib/inflection',
'trigger-then': './node_modules/trigger-then/trigger-then'
},
name: "bookshelf",
out: "bookshelf-built.js"
})