File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ if (process.argv.includes("watch")) {
87
87
continue ;
88
88
}
89
89
last = Date . now ( ) ;
90
- await build ( ) ;
90
+ try {
91
+ await build ( ) ;
92
+ } catch { }
91
93
}
92
94
} ) ( ) ;
93
95
( async ( ) => {
@@ -96,7 +98,9 @@ if (process.argv.includes("watch")) {
96
98
continue ;
97
99
}
98
100
last = Date . now ( ) ;
99
- await build ( ) ;
101
+ try {
102
+ await build ( ) ;
103
+ } catch { }
100
104
}
101
105
} ) ( ) ;
102
106
}
Original file line number Diff line number Diff line change @@ -31,6 +31,6 @@ <h1 id="invitename">Server Name</h1>
31
31
< button id ="AcceptInvite "> Accept Invite</ button >
32
32
</ div >
33
33
</ div >
34
- < script type =" module " src ="/invite.js "> </ script >
34
+ < script src ="/invite.js " type =" module "> </ script >
35
35
</ body >
36
36
</ html >
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ <h1 id="templatename">Use Template Name</h1>
30
30
< button id ="usetemplate "> Use template</ button >
31
31
</ div >
32
32
</ div >
33
- < script type =" module " src ="/templatePage.js "> </ script >
33
+ < script src ="/templatePage.js " type =" module "> </ script >
34
34
</ body >
35
35
</ html >
You can’t perform that action at this time.
0 commit comments