File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -58,20 +58,18 @@ var server = http.createServer(function(req, res) {
58
58
}
59
59
} ) ;
60
60
61
-
62
- // Start the server up!
63
- server . listen ( PORT ) ;
64
-
65
- // open up browser window
66
- open ( 'http://localhost:' + PORT + '/devtools/regl_codegen/index' + ( strict ? '-strict' : '' ) + '.html' ) ;
67
-
68
61
// Build and bundle all the things!
69
62
await getMockFiles ( )
70
63
. then ( readFiles )
71
64
. then ( createMocksList )
72
65
. then ( saveMockListToFile )
73
66
. then ( saveReglTracesToFile . bind ( null , reglTraceList ) ) ;
74
67
68
+ // Start the server up!
69
+ server . listen ( PORT ) ;
70
+
71
+ // open up browser window
72
+ open ( 'http://localhost:' + PORT + '/devtools/regl_codegen/index' + ( strict ? '-strict' : '' ) + '.html' ) ;
75
73
76
74
var devtoolsPath = path . join ( constants . pathToRoot , 'devtools/regl_codegen' ) ;
77
75
config . entryPoints = [ path . join ( devtoolsPath , 'devtools.js' ) ] ;
You can’t perform that action at this time.
0 commit comments