slight build update
This commit is contained in:
parent
81a476e46b
commit
c7a96eea92
3 changed files with 8 additions and 4 deletions
8
build.ts
8
build.ts
|
@ -87,7 +87,9 @@ if (process.argv.includes("watch")) {
|
|||
continue;
|
||||
}
|
||||
last = Date.now();
|
||||
await build();
|
||||
try {
|
||||
await build();
|
||||
} catch {}
|
||||
}
|
||||
})();
|
||||
(async () => {
|
||||
|
@ -96,7 +98,9 @@ if (process.argv.includes("watch")) {
|
|||
continue;
|
||||
}
|
||||
last = Date.now();
|
||||
await build();
|
||||
try {
|
||||
await build();
|
||||
} catch {}
|
||||
}
|
||||
})();
|
||||
}
|
||||
|
|
|
@ -31,6 +31,6 @@
|
|||
<button id="AcceptInvite">Accept Invite</button>
|
||||
</div>
|
||||
</div>
|
||||
<script type="module" src="/invite.js"></script>
|
||||
<script src="/invite.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -30,6 +30,6 @@
|
|||
<button id="usetemplate">Use template</button>
|
||||
</div>
|
||||
</div>
|
||||
<script type="module" src="/templatePage.js"></script>
|
||||
<script src="/templatePage.js" type="module"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue