Skip to content

Commit 0a6d677

Browse files
committed
chore: migrate from jsr.io to npm (#2005)
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
1 parent a65ccef commit 0a6d677

File tree

6 files changed

+9
-19
lines changed

6 files changed

+9
-19
lines changed

sdks/actor/README.md

-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,3 @@ Actors are usually tested by running tests against the `examples/` folder.
1010
npm run build
1111
```
1212

13-
## `allow-slow-types`
14-
15-
We allow [slow types](https://jsr.io/docs/about-slow-types) in our packages because we use Zod heavily, which relies on type inference.
16-

sdks/actor/client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ See [setup guide](https://rivet.gg/docs/setup) for how to access `/* CONNECTION
3333

3434
## Related Packages
3535

36-
- [Actor SDK (@rivet-gg/actor)](https://jsr.io/@rivet-gg/actor)
36+
- [Actor SDK (@rivet-gg/actor)](https://www.npmjs.com/package/@rivet-gg/actor)
3737

3838
## Community & Support
3939

sdks/actor/core/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Core low-level types for working with the Rivet Actor runtime.
44

55
**This package is for advanced low-level usage of Rivet. If getting started, please use the
6-
[Actor SDK](https://jsr.io/@rivet-gg/actor).**
6+
[Actor SDK](https://www.npmjs.com/package/@rivet-gg/actor).**
77

88
## Getting Started
99

@@ -47,7 +47,7 @@ export default {
4747

4848
## Related Packages
4949

50-
- [Actor SDK (@rivet-gg/actor)](https://jsr.io/@rivet-gg/actor)
50+
- [Actor SDK (@rivet-gg/actor)](https://www.npmjs.com/package/@rivet-gg/actor)
5151

5252
## Community & Support
5353

sdks/actor/runtime/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default class Counter extends Actor<State> {
5555

5656
## Related Packages
5757

58-
- [Actor Client SDK (@rivet-gg/actor-client)](https://jsr.io/@rivet-gg/actor-client)
58+
- [Actor Client SDK (@rivet-gg/actor-client)](https://www.npmjs.com/package/@rivet-gg/actor-client)
5959

6060
## Community & Support
6161

site/src/content/docs/index.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ Rivet Actors offer several compelling advantages for building applications that
2727

2828
<CardGroup>
2929
<Card title='Initial Setup' href='/docs/setup' />
30-
<Card title='Actor SDK' href='https://jsr.io/@rivet-gg/actor/doc' target='_blank' />
30+
<Card title='Actor SDK' href='https://www.npmjs.com/package/@rivet-gg/actor' target='_blank' />
3131
</CardGroup>
3232

3333
## Client SDKs
3434

3535
<CardGroup>
36-
<Card title='JavaScript' href='https://jsr.io/@rivet-gg/actor-client' target='_blank' />
37-
<Card title='TypeScript' href='https://jsr.io/@rivet-gg/actor-client' target='_blank' />
36+
<Card title='JavaScript' href='https://www.npmjs.com/package/@rivet-gg/actor-client' target='_blank' />
37+
<Card title='TypeScript' href='https://www.npmjs.com/package/@rivet-gg/actor-client' target='_blank' />
3838
</CardGroup>
3939

4040
## Build with Rivet

site/src/sitemap/mod.ts

+2-8
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const sitemap = [
5353
// },
5454
{
5555
title: "Actor SDK",
56-
href: "https://jsr.io/@rivet-gg/actor",
56+
href: "https://www.npmjs.com/package/@rivet-gg/actor",
5757
icon: faActorsBorderless,
5858
external: true,
5959
},
@@ -67,15 +67,9 @@ export const sitemap = [
6767
{
6868
title: "Client SDKs",
6969
pages: [
70-
{
71-
title: "JavaScript",
72-
href: "https://jsr.io/@rivet-gg/actor-client",
73-
icon: "js",
74-
external: true,
75-
},
7670
{
7771
title: "TypeScript",
78-
href: "https://jsr.io/@rivet-gg/actor-client",
72+
href: "https://www.npmjs.com/package/@rivet-gg/actor-client",
7973
icon: faTs,
8074
external: true,
8175
},

0 commit comments

Comments
 (0)