chore: Update to latest versions of dependencies.

Resolves #35.
  Also allows a useless statement that worked around a Civet bug to
  be removed.
This commit is contained in:
Glen Whitney 2024-02-13 21:13:57 -08:00
parent 9a3dd1b49b
commit 049039dd9a
3 changed files with 10 additions and 11 deletions

View File

@ -34,7 +34,7 @@
url: 'https://code.studioinfinity.org/glen/archematics.git',
},
devDependencies: {
'@danielx/civet': '^0.6.71',
'@danielx/civet': '^0.6.72',
'@types/firefox-webext-browser': '^120.0.0',
'@types/jquery': '^3.5.29',
'@webcomponents/custom-elements': '^1.6.0',
@ -45,6 +45,6 @@
},
dependencies: {
colorsea: '^1.2.1',
vrml1to97: '^0.2.4',
vrml1to97: '^0.3.0',
},
}

View File

@ -9,13 +9,13 @@ dependencies:
specifier: ^1.2.1
version: 1.2.1
vrml1to97:
specifier: ^0.2.4
version: 0.2.4
specifier: ^0.3.0
version: 0.3.0
devDependencies:
'@danielx/civet':
specifier: ^0.6.71
version: 0.6.71(typescript@5.3.3)
specifier: ^0.6.72
version: 0.6.72(typescript@5.3.3)
'@types/firefox-webext-browser':
specifier: ^120.0.0
version: 120.0.0
@ -47,8 +47,8 @@ packages:
'@jridgewell/trace-mapping': 0.3.9
dev: true
/@danielx/civet@0.6.71(typescript@5.3.3):
resolution: {integrity: sha512-piOoHtJARe6YqRiXN02Ryb+nLU9JwU8TQLknvPwmlaNm6krdKN+X9dM+C9D4LRoAnAySC2wVshR0wf7YDIUV1Q==}
/@danielx/civet@0.6.72(typescript@5.3.3):
resolution: {integrity: sha512-jumnIbXbdFs0ZiKN62fmD+p8QGi+E0jmtc02dKz9wIIoPkODsa4XXlBrS5BRR5fr3w5d3ah8Vq7gWt+DL9Wa0Q==}
engines: {node: '>=19 || ^18.6.0 || ^16.17.0'}
hasBin: true
peerDependencies:
@ -639,8 +639,8 @@ packages:
resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
dev: true
/vrml1to97@0.2.4:
resolution: {integrity: sha512-nEZpn6gaGixIUIUmA2aMfjigmNmThMn1GQ3N7AKxjqkUDE8PLONALMgsih4OrL4WzDYHIVzOqlkjWhGy+7sBig==}
/vrml1to97@0.3.0:
resolution: {integrity: sha512-Mf3UwG4oGTR6hoLcadJTF/Gi4lUq7ipkgQXTHY4rs0ev9UXFz+d5eR4m/J0iewAHI9taq4wtVXkc5/YM0k3dTA==}
hasBin: true
dev: false

View File

@ -16,7 +16,6 @@ type Split<S extends string>
classes := 'point line circle polygon sector plane sphere polyhedron'
type JoyceClass = Split<typeof classes>
const FixWeirdness = 0
function assertJoyceClass(s: string): asserts s is JoyceClass
unless classes.includes s then throw new Error `Oops ${s} slipped through`