forked from Khan/live-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-paths.json
More file actions
137 lines (134 loc) · 4.68 KB
/
build-paths.json
File metadata and controls
137 lines (134 loc) · 4.68 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"templates": [
"tmpl/*.handlebars"
],
"scripts": {
"core_deps": [
"external/es5-shim/es5-shim.js",
"external/jquery/dist/jquery.js",
"external/jqueryui/jquery-ui.js",
"external/handlebars/handlebars.js",
"external/underscore/underscore.js",
"external/backbone/backbone.js",
"external/jed/jed.js"
],
"editor_ace": [
"external/ace-builds/src-noconflict/ace.js",
"external/ace-builds/src-noconflict/mode-javascript.js",
"external/ace-builds/src-noconflict/ext-searchbox.js",
"external/ace-builds/src-noconflict/ext-language_tools.js"
],
"editor_blockly": [
"external/blockly/blockly_compressed.js",
"external/blockly/javascript_compressed.js",
"external/blockly/blocks_compressed.js",
"external/blockly/msg/js/en.js",
"external/structuredjs/external/esprima.js",
"external/js-to-blockly/sax.js",
"external/js-to-blockly/xml-writer.js",
"external/js-to-blockly/xml-mapping.js",
"external/js-to-blockly/pattern-match.js",
"external/js-to-blockly/js-to-blockly.js",
"external/js-to-blockly/jslang/index.js",
"external/js-to-blockly/jslang/jslang_etc.js",
"external/js-to-blockly/jslang/jslang_try_catch.js",
"external/js-to-blockly/jslang/jslang_call.js",
"external/js-to-blockly/jslang/jslang_member.js",
"external/js-to-blockly/jslang/jslang_var.js",
"external/js-to-blockly/jslang/jslang_object.js",
"external/js-to-blockly/jslang/jslang_function.js",
"external/js-to-blockly/jslang/jslang_return.js",
"external/js-to-blockly/jslang/jslang_assignment.js",
"external/js-to-blockly/jslang/jslang_if.js",
"external/js-to-blockly/jslang/jslang_unary.js",
"external/js-to-blockly/jslang/jslang_binary.js",
"external/js-to-blockly/jslang/jslang_this.js",
"external/js-to-blockly/jslang/jslang_logical.js",
"js/ui/blockly-processing-blocks.js"
],
"output_p5js": [
"external/processing-js/processing.js",
"external/jshint/jshint.js",
"external/structuredjs/external/esprima.js",
"external/structuredjs/structured.js"
],
"audio": [
"external/SoundManager2/script/soundmanager2.js",
"external/multirecorderjs/multirecorder.js",
"external/transloaditxhr/transloadit_xhr.js",
"build/tmpl/dev-record.js",
"js/ui/jquery.button.js"
],
"hotnumber": [
"external/colorpicker/colorpicker.js",
"js/ui/autosuggest.js",
"js/ui/autosuggest-data.js",
"js/ui/hotnumber.js",
"build/tmpl/imagepicker.js"
],
"shared": [
"js/shared/i18n.js",
"js/shared/images.js",
"js/shared/record.js",
"js/shared/config.js"
],
"exec": [
"build/tmpl/tipbar.js",
"js/exec/tipbar.js",
"build/tmpl/output.js",
"js/exec/babyhint.js",
"js/workers/output-tester.js",
"js/exec/output.js"
],
"ui": [
"build/tmpl/live-editor.js",
"js/ui/canvas.js",
"js/ui/editor.js",
"js/ui/record.js",
"js/live-editor.js"
]
},
"workers": [
"js/workers/jshint-worker.js",
"js/workers/test-worker.js",
"js/workers/processing-stubs.js",
"js/workers/output-tester.js",
"js/workers/worker.js"
],
"externals": [
"external/es5-shim/es5-shim.js",
"external/jshint/jshint.js",
"external/structuredjs/external/esprima.js",
"external/structuredjs/structured.js",
"external/underscore/underscore.js",
"external/blockly/media/**",
"external/SoundManager2/swf/**",
"external/TraceKit/tracekit.js"
],
"styles": {
"core_deps": [
"css/bootstrap/dist/css/bootstrap.css",
"css/jquery-ui/ui-lightness/jquery-ui.css"
],
"audio": [
"css/ui/flashblock.css"
],
"hotnumber": [
"css/ui/colorpicker.css",
"css/ui/autosuggest.css",
"css/ui/hotnumber.css"
],
"exec": [
"css/exec/style.css"
],
"ui": [
"css/ui/style.css"
]
},
"fonts": [
"css/bootstrap/fonts/*"
],
"images": [
"images/**"
]
}