[improvement] Multiplayer + cursors (#457)

* bump versions, improve cursors

* Spline cursors
This commit is contained in:
Steve Ruiz 2021-12-22 00:14:38 +00:00 committed by GitHub
parent 3b220f0afe
commit 7c2777966f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 467 additions and 459 deletions

View file

@ -6,6 +6,8 @@ import { createRequire } from 'module'
const pkg = createRequire(import.meta.url)('../package.json')
const { log: jslog } = console
async function main() {
try {
esbuild.buildSync({
@ -31,10 +33,10 @@ async function main() {
if (err) throw err
})
)
console.log(`${pkg.name}: Build completed.`)
jslog(`${pkg.name}: Build completed.`)
} catch (e) {
console.log(`× ${pkg.name}: Build failed due to an error.`)
console.log(e)
jslog(`× ${pkg.name}: Build failed due to an error.`)
jslog(e)
}
}