-
Notifications
You must be signed in to change notification settings - Fork 27
/
dev.lmd.json
42 lines (33 loc) · 1.03 KB
/
dev.lmd.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "Development build",
"description": "This example uses file glob and string interpolation.\nSee:\n - examples/features/interpolation\n - examples/features/glob",
"root": "../js/",
"output": "../compiled/dev.lmd.js",
"modules": {
"_": {
"path": "../assets/lodash.min.js",
"exports": "_"
},
"underscore": "@_",
"$": {
"path": "lib/jquery/jquery.min.js",
"exports": "jQuery"
},
"backbone": {
"path": "lib/backbone/backbone.js",
"require": {
"underscore": "_",
"jQuery": "$"
},
"exports": "Backbone"
},
"store": "lib/backbone/localstorage.js",
"main": "main.js",
"common": "common.js",
"<%= file %><%= dir[0][0].toUpperCase() %><%= dir[0].slice(1, -1) %>": "{collections,models,routers,templates,views}/**/*.{js,html}"
},
"main": "main",
"shortcuts": true,
"log": true,
"warn": true
}