forked from sproutcore/sproutcore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sc_config
43 lines (38 loc) · 1.02 KB
/
sc_config
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
BT.addFramework(BT.Framework.extend({
ref: "sproutcore",
path: dirname(),
isWrapperFramework: true,
all: {
debug: {
combinedScripts: true,
combinedStylesheets: true,
},
production: {
combinedScripts: true,
combinedStylesheets: true,
}
},
dependencies: ["sproutcore:legacy", "sproutcore:desktop", "sproutcore:datastore", "sproutcore:statechart"],
testDependencies: ["sproutcore:debug", "sproutcore:testing"]
}));
BT.addTheme(BT.Theme.extend({
ref: "sproutcore:empty_theme",
path: dirname() + "/themes/empty_theme"
}));
BT.addTheme(BT.Theme.extend({
ref: "sproutcore:ace",
cssName: "ace",
path: dirname() + "/themes/ace",
dependencies: ["sproutcore:empty_theme"]
}));
BT.addTheme(BT.Theme.extend({
ref: "sproutcore:aki",
cssName: "aki",
path: dirname() + "/themes/aki",
dependencies: ["sproutcore:empty_theme"]
}));
BT.addTheme(BT.Theme.extend({
ref: "sproutcore:legacy",
path: dirname() + "/themes/legacy_theme",
dependencies: ["sproutcore:empty_theme"]
}))