-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
108 lines (98 loc) · 2.14 KB
/
build.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
builder.addModule({
name: 'jQuery',
type: 'library',
link: 'http://jquery.com/',
files: [
__dirname + '/jquery.js'
]
});
builder.addModule({
name: 'jQuery No Conflict',
type: 'library',
hidden: true,
files: [
__dirname + '/jquery-no-conflict.js'
]
});
builder.addModule({
name: 'jQuery UI',
type: 'library',
link: 'http://jqueryui.com/',
files: [
__dirname + '/jquery-ui.js'
]
});
builder.addModule({
name: 'jQuery Hotkeys',
type: 'library',
link: 'https://github.com/jeresig/jquery.hotkeys/',
files: [
__dirname + '/jquery-hotkeys.js'
]
});
builder.addModule({
name: 'ResizeTable',
type: 'library',
link: 'https://code.google.com/p/resizetable-js/',
hidden: true,
files: [
__dirname + '/resizetable.js'
]
});
builder.addModule({
name: 'GoogTable',
type: 'library',
link: 'https://code.google.com/p/closure-library/source/browse/closure/goog/editor/table.js',
hidden: true,
files: [
__dirname + '/goog-table.js'
]
});
builder.addModule({
name: 'Plupload',
type: 'library',
hidden: true,
files: [
__dirname + '/plupload.js',
__dirname + '/plupload.html4.js',
__dirname + '/plupload.html5.js',
__dirname + '/jquery.ui.plupload.js'
]
});
builder.addModule({
name: 'Diff',
type: 'library',
link: 'http://code.google.com/p/google-diff-match-patch/',
hidden: true,
files: [
__dirname + '/diff.js'
]
});
builder.addModule({
name: 'Pines Notify',
type: 'library',
link: 'http://pinesframework.org/pnotify/',
hidden: true,
files: [
__dirname + '/jquery-pnotify.js',
__dirname + '/jquery-pnotify.css',
]
});
builder.addModule({
name: 'Class List',
type: 'library',
link: 'https://github.com/eligrey/classList.js',
hidden: true,
files: [
__dirname + '/classlist.js',
]
});
builder.addModule({
name: 'Pixastic',
type: 'library',
link: 'http://www.pixastic.com/',
hidden: true,
files: [
__dirname + '/pixastic.custom.js',
]
});