create-sv-router 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/dist/index.js +1 -10407
- package/package.json +2 -2
- package/templates/code-based/src/App.svelte +0 -1
- package/templates/code-based/src/routes/About.svelte +2 -0
- package/templates/code-based/src/routes/Home.svelte +9 -0
- package/templates/file-based/src/routes/about.svelte +2 -0
- package/templates/file-based/src/routes/index.svelte +9 -0
package/README.md
CHANGED
@@ -5,29 +5,29 @@
|
|
5
5
|
With NPM:
|
6
6
|
|
7
7
|
```bash
|
8
|
-
npm create
|
8
|
+
npm create sv-router@latest
|
9
9
|
```
|
10
10
|
|
11
11
|
With Yarn:
|
12
12
|
|
13
13
|
```bash
|
14
|
-
yarn create
|
14
|
+
yarn create sv-router
|
15
15
|
```
|
16
16
|
|
17
17
|
With PNPM:
|
18
18
|
|
19
19
|
```bash
|
20
|
-
pnpm create
|
20
|
+
pnpm create sv-router
|
21
21
|
```
|
22
22
|
|
23
23
|
With Bun:
|
24
24
|
|
25
25
|
```bash
|
26
|
-
bun create
|
26
|
+
bun create sv-router
|
27
27
|
```
|
28
28
|
|
29
29
|
With Deno:
|
30
30
|
|
31
31
|
```bash
|
32
|
-
deno
|
32
|
+
deno run -A npm:create-sv-router@latest
|
33
33
|
```
|