diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 69ad97e..2a0f05e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,15 +10,19 @@ jobs: mkdir ../pyramid mkdir ../ramp mkdir ../wedge + mkdir ../hipped wget -P ../pyramid https://beakerboy.github.io/Threejs-Geometries/src/PyramidGeometry.js wget -P ../ramp https://beakerboy.github.io/Threejs-Geometries/src/RampGeometry.js wget -P ../wedge https://beakerboy.github.io/Threejs-Geometries/src/WedgeGeometry.js + wget -P ../hipped https://beakerboy.github.io/Threejs-Geometries/src/HippedGeometry.js cd ../pyramid echo '{"name":"pyramid","type":"module","private":true,"scripts":{"test":"npx jest"}}' > "./package.json" && npm init -y cd ../ramp echo '{"name":"ramp","type":"module","private":true,"scripts":{"test":"npx jest"}}' > "./package.json" && npm init -y cd ../wedge echo '{"name":"wedge","type":"module","private":true,"scripts":{"test":"npx jest"}}' > "./package.json" && npm init -y + cd ../hipped + echo '{"name":"hipped","type":"module","private":true,"scripts":{"test":"npx jest"}}' > "./package.json" && npm init -y cd ../OSMBuilding yarn --prod=false - name: Lint diff --git a/index.html b/index.html index 454213e..26b69e9 100644 --- a/index.html +++ b/index.html @@ -16,13 +16,15 @@ { "imports": { "three": "https://unpkg.com/three/build/three.module.js", + "straight-skeleton": "https://cdn.skypack.dev/straight-skeleton@1.1.0", "pyramid": "https://beakerboy.github.io/Threejs-Geometries/src/PyramidGeometry.js", "ramp": "https://beakerboy.github.io/Threejs-Geometries/src/RampGeometry.js", - "wedge": "https://beakerboy.github.io/Threejs-Geometries/src/WedgeGeometry.js" + "wedge": "https://beakerboy.github.io/Threejs-Geometries/src/WedgeGeometry.js", + "hipped": "https://beakerboy.github.io/Threejs-Geometries/src/HippedGeometry.js" } } - +