-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.json
78 lines (78 loc) · 2.74 KB
/
build.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"baseUrl": "js/",
"name": "../bower_components/almond/almond",
"include": ["boot"],
"wrapShim": true,
"out": "js/main.min.js",
"paths": {
"appinfo": "../package.json",
"json": "../bower_components/requirejs-plugins/src/json",
"ionic": "../bower_components/ionic/release/js/ionic",
"ionic-angular": "../bower_components/ionic/release/js/ionic-angular",
"ionic-frostedglass": "../bower_components/ionic-contrib-frosted-glass/ionic.contrib.frostedGlass",
"angular": "../bower_components/angular/angular",
"angular-animate": "../bower_components/angular-animate/angular-animate",
"angular-sanitize": "../bower_components/angular-sanitize/angular-sanitize",
"angular-ui-router": "../bower_components/angular-ui-router/release/angular-ui-router",
"jquery": "../bower_components/jquery/dist/jquery",
"lawnchair": "../bower_components/lawnchair/src/Lawnchair",
"lawnchair-webkit-sqlite": "../bower_components/lawnchair/src/adapters/webkit-sqlite",
"lodash": "../bower_components/lodash/dist/lodash",
"root": "../",
"text": "../bower_components/requirejs-text/text",
"i18n": "../bower_components/requirejs-i18n/i18n",
"nls": "../res/nls",
"lib": "../lib",
"ui-bootstrap": "../lib/ui-bootstrap-custom",
"ui-bootstrap-tpls": "../lib/ui-bootstrap-custom-tpls"
},
"packages": ["controllers", "directives", "filters", "services"],
"shim": {
"ionic": {
"exports": "ionic"
},
"ionic-frostedglass": ["ionic-angular"],
"lodash": {
"exports": "_"
},
"angular": {
"exports": "angular"
},
"angular-animate": {
"deps": ["angular"],
"exports": "angular"
},
"angular-resource": {
"deps": ["angular"],
"exports": "angular"
},
"angular-sanitize": {
"deps": ["angular"],
"exports": "angular"
},
"angular-route": {
"deps": ["angular"],
"exports": "angular"
},
"angular-ui-router": {
"deps": ["angular"],
"exports": "angular"
},
"ionic-angular": {
"deps": ["angular-animate", "angular-sanitize", "angular-ui-router", "ionic"],
"exports": "angular"
},
"lawnchair": {
"exports": "Lawnchair"
},
"lawnchair-webkit-sqlite": {
"deps": ["lawnchair"],
"exports": "Lawnchair"
},
"cordova": {
"exports": "cordova"
},
"ui-bootstrap": ["angular"],
"ui-bootstrap-tpls": ["angular", "ui-bootstrap"]
}
}