Skip to content

Commit c7a96ee

Browse files
committed
slight build update
1 parent 81a476e commit c7a96ee

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

build.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ if (process.argv.includes("watch")) {
8787
continue;
8888
}
8989
last = Date.now();
90-
await build();
90+
try {
91+
await build();
92+
} catch {}
9193
}
9294
})();
9395
(async () => {
@@ -96,7 +98,9 @@ if (process.argv.includes("watch")) {
9698
continue;
9799
}
98100
last = Date.now();
99-
await build();
101+
try {
102+
await build();
103+
} catch {}
100104
}
101105
})();
102106
}

src/webpage/invite.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ <h1 id="invitename">Server Name</h1>
3131
<button id="AcceptInvite">Accept Invite</button>
3232
</div>
3333
</div>
34-
<script type="module" src="/invite.js"></script>
34+
<script src="/invite.js" type="module"></script>
3535
</body>
3636
</html>

src/webpage/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ <h1 id="templatename">Use Template Name</h1>
3030
<button id="usetemplate">Use template</button>
3131
</div>
3232
</div>
33-
<script type="module" src="/templatePage.js"></script>
33+
<script src="/templatePage.js" type="module"></script>
3434
</body>
3535
</html>

0 commit comments

Comments
 (0)