Skip to content

Commit 23e77e9

Browse files
committed
update a few things
1 parent 9ba2ee8 commit 23e77e9

File tree

19 files changed

+412
-150
lines changed

19 files changed

+412
-150
lines changed

jsrepo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/[email protected]/schemas/project-config.json",
3-
"repos": ["github/ieedan/std", "github/ieedan/shadcn-svelte-extras"],
3+
"repos": ["@ieedan/std", "@ieedan/shadcn-svelte-extras"],
44
"includeTests": false,
55
"watermark": true,
66
"formatter": "prettier",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"flexsearch": "^0.7.43",
4646
"globals": "^16.0.0",
4747
"isomorphic-dompurify": "^2.23.0",
48-
"jsrepo": "^1.47.0",
48+
"jsrepo": "^2.0.0",
4949
"markdown-it": "^14.1.0",
5050
"markdown-it-table": "^4.1.1",
5151
"mdsx": "^0.0.6",

pnpm-lock.yaml

Lines changed: 376 additions & 118 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/components/site/docs/badges/badges-table-dynamic.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<Table.Cell>
4343
<div class="flex place-items-center gap-2">
4444
<!-- we slice off the domain so we just serve directly from static -->
45-
<img src={href.slice(18) + 'github/ieedan/std'} {alt} />
45+
<img src={href.slice(18) + '@ieedan/std'} {alt} />
4646
</div>
4747
</Table.Cell>
4848
<Table.Cell>
@@ -58,7 +58,7 @@
5858
<div class="flex flex-col gap-2">
5959
<div>
6060
<Label>Registry Url</Label>
61-
<Input bind:value={registry} placeholder="i.e. github/ieedan/std" />
61+
<Input bind:value={registry} placeholder="i.e. @ieedan/std" />
6262
</div>
6363
<div>
6464
<Label>Preview</Label>

src/lib/docs/cli/add.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jsrepo add utils/math
2525
Add a fully qualified block:
2626

2727
```sh
28-
jsrepo add github/ieedan/std/utils/math
28+
jsrepo add @ieedan/std/utils/math
2929
```
3030

3131
Include another registry in the blocks list:
3232

3333
```sh
34-
jsrepo add --repo github/ieedan/std
34+
jsrepo add --repo @ieedan/std
3535
```
3636

3737
## Options
@@ -103,7 +103,7 @@ The repository to download the blocks from.
103103
#### Usage
104104

105105
```sh
106-
jsrepo add --repo github/ieedan/std
106+
jsrepo add --repo @ieedan/std
107107
```
108108

109109
### `-A, --allow`
@@ -113,7 +113,7 @@ Allow jsrepo to download code from the provided repo. This skips the initial con
113113
#### Usage
114114

115115
```sh
116-
jsrepo add github/ieedan/std/utils/math --allow
116+
jsrepo add @ieedan/std/utils/math --allow
117117
```
118118

119119
### `-y, --yes`

src/lib/docs/cli/init.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jsrepo init --registry
3131
Initialize a project with registries:
3232

3333
```sh
34-
jsrepo init github/ieedan/std
34+
jsrepo init @ieedan/std
3535
```
3636

3737
## Options
@@ -44,7 +44,7 @@ The repositories to install the blocks from. (For project setup)
4444
#### Usage
4545

4646
```sh
47-
jsrepo init --repos github/ieedan/std github/ieedan/shadcn-svelte-extras
47+
jsrepo init --repos @ieedan/std @ieedan/shadcn-svelte-extras
4848
```
4949

5050
### `--no-watermark`

src/lib/docs/cli/test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The repository to download the blocks from.
2323
#### Usage
2424

2525
```sh
26-
jsrepo test --repo github/ieedan/std
26+
jsrepo test --repo @ieedan/std
2727
```
2828

2929
### `-A, --allow`
@@ -33,7 +33,7 @@ Allow **jsrepo** to download code from the provided repo. This skips the initial
3333
#### Usage
3434

3535
```sh
36-
jsrepo test github/ieedan/std/utils/math --allow
36+
jsrepo test @ieedan/std/utils/math --allow
3737
```
3838

3939
### `--debug`

src/lib/docs/cli/update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The repository to download the blocks from.
7171
#### Usage
7272

7373
```sh
74-
jsrepo update --repo github/ieedan/std
74+
jsrepo update --repo @ieedan/std
7575
```
7676

7777
### `-A, --allow`
@@ -81,7 +81,7 @@ Allow **jsrepo** to download code from the provided repo. This skips the initial
8181
#### Usage
8282

8383
```sh
84-
jsrepo update github/ieedan/std/utils/math --allow
84+
jsrepo update @ieedan/std/utils/math --allow
8585
```
8686

8787
### `-y, --yes`

src/lib/docs/jsrepo-json.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ When true jsrepo adds a watermark to each block that includes the registry that
9494

9595
```ts showLineNumbers
9696
/*
97-
Installed from github/ieedan/std
97+
Installed from @ieedan/std
9898
*/
9999

100100
export type Point = {

src/lib/docs/registry/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ However if you configure the `meta` key in the `jsrepo-build-config.json` you ca
247247

248248
## Live Examples
249249

250+
- [@ieedan/std](https://github.com/ieedan/std)
250251
- [github/ieedan/std](https://github.com/ieedan/std)
252+
- [@ieedan/shadcn-svelte-extras](https://github.com/ieedan/shadcn-svelte-extras)
251253
- [github/ieedan/shadcn-svelte-extras](https://github.com/ieedan/shadcn-svelte-extras)
252254
- [gitlab/ieedan/std](https://gitlab.com/ieedan/std)
253255
- [bitbucket/ieedan/std](https://bitbucket.org/ieedan/std)

0 commit comments

Comments
 (0)