File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ function main(argv) {
144
144
var toolchain = argv [ 2 ] ;
145
145
146
146
var mainJs = readFile ( "build/" + toolchain + "/doc/main.js" ) ;
147
+ var ALIASES = readFile ( "build/" + toolchain + "/doc/aliases.js" ) ;
147
148
var searchIndex = readFile ( "build/" + toolchain + "/doc/search-index.js" ) . split ( "\n" ) ;
148
149
if ( searchIndex [ searchIndex . length - 1 ] . length === 0 ) {
149
150
searchIndex . pop ( ) ;
@@ -161,6 +162,7 @@ function main(argv) {
161
162
"execSearch" ] ;
162
163
163
164
finalJS += 'window = { "currentCrate": "std" };\n' ;
165
+ finalJS += ALIASES ;
164
166
finalJS += loadThings ( arraysToLoad , 'array' , extractArrayVariable , mainJs ) ;
165
167
finalJS += loadThings ( variablesToLoad , 'variable' , extractVariable , mainJs ) ;
166
168
finalJS += loadThings ( functionsToLoad , 'function' , extractFunction , mainJs ) ;
You can’t perform that action at this time.
0 commit comments