Skip to content

Commit

Permalink
move route from /threlte to /
Browse files Browse the repository at this point in the history
  • Loading branch information
av8ta committed Apr 7, 2024
1 parent 5e5a3ac commit 047136d
Show file tree
Hide file tree
Showing 32 changed files with 4 additions and 31 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This software is offered under the [Elastic License 2.0](https://www.elastic.co/

## Running The Code

If you're just trying to kick the tires, [click here](https://cadmium-nine.vercel.app/threlte) to view the live web demo.
If you're just trying to kick the tires, [click here](https://MattFerraro.github.io/CADmium/) to view the live web demo.

To build locally using pnpm workspace & turbo:

Expand Down
2 changes: 1 addition & 1 deletion applications/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "vite dev",
"build": "vite build",
"serve": "pnpm build && serve -p 5173 dist",
"clean": "rm -rf .turbo .sveltekit dist node_modules",
"clean": "rm -rf .turbo .svelte-kit dist node_modules",
"preview": "vite preview",
"test": "pnpm test:integration && pnpm test:unit",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
Expand Down
26 changes: 0 additions & 26 deletions applications/web/src/routes/+page.svelte

This file was deleted.

4 changes: 2 additions & 2 deletions applications/web/tests/e2e/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ test("index page has expected title", async ({ page }) => {
})

test("has history pane", async ({ page }) => {
await page.goto("/threlte")
await page.goto("/")
await expect(page.getByText("History")).toBeVisible()
})

test("has origin in history panel", async ({ page }) => {
await page.goto("/threlte")
await page.goto("/")
await expect(page.getByText("origin")).toBeVisible()
})
1 change: 0 additions & 1 deletion packages/shared/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// import type Point3D from "./routes/threlte/Point3D.svelte"
import type { Vector2, Vector3, Vector2Like, Vector3Like } from "three"

interface IDictionary<TValue> {
Expand Down

0 comments on commit 047136d

Please sign in to comment.