-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for #23: Adding extremely simple "hello world" MVP to demonstrate…
… svelte-retag in most basic form. Relocating Vercel site files to subdirectory under ./demo/vercel so this can live under ./demo/hello-world.
- Loading branch information
1 parent
4ffe056
commit 3b8f29a
Showing
44 changed files
with
1,038 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# svelte-retag: Hello World | ||
|
||
This is an **MVP** demo that shows `svelte-retag` in action in its simplest form in local development with a | ||
`HelloWorld.svelte` component implemented as a `<hello-world>` custom element. | ||
|
||
To try it out yourself, make sure you have [Git](https://git-scm.com/downloads) and [Node](https://nodejs.org/) installed and then run: | ||
|
||
```bash | ||
git clone https://github.com/patricknelson/svelte-retag.git | ||
cd svelte-retag/demo/hello-world | ||
npm install | ||
npm run dev | ||
``` | ||
|
||
Then open your browser to [http://localhost:5173/](http://localhost:5173/) to view the demo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/svelte-retag-favicon.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>svelte-retag: Hello World</title> | ||
</head> | ||
<body> | ||
<hello-world greetperson="👩🚀"></hello-world> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
File renamed without changes.
Oops, something went wrong.