Skip to content

Commit c91055c

Browse files
committed
chore(rivetkit): remove aliased import for @rivetkit/on-change (#3565)
1 parent def9fd8 commit c91055c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pnpm-lock.yaml

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

rivetkit-typescript/packages/rivetkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"hono": "^4.7.0",
175175
"invariant": "^2.2.4",
176176
"nanoevents": "^9.1.0",
177-
"on-change": "npm:@rivetkit/on-change@^6.0.2-rc.1",
177+
"@rivetkit/on-change": "^6.0.2-rc.1",
178178
"p-retry": "^6.2.1",
179179
"pino": "^9.5.0",
180180
"uuid": "^12.0.0",

rivetkit-typescript/packages/rivetkit/src/actor/conn/state-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { HibernatingWebSocketMetadata } from "@rivetkit/engine-runner";
22
import * as cbor from "cbor-x";
33
import invariant from "invariant";
4-
import onChange from "on-change";
4+
import onChange from "@rivetkit/on-change";
55
import { isCborSerializable } from "@/common/utils";
66
import * as errors from "../errors";
77
import { assertUnreachable } from "../utils";

rivetkit-typescript/packages/rivetkit/src/actor/instance/state-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { idToStr } from "@rivetkit/engine-runner";
2-
import onChange from "on-change";
2+
import onChange from "@rivetkit/on-change";
33
import { isCborSerializable, stringifyError } from "@/common/utils";
44
import {
55
ACTOR_VERSIONED,

0 commit comments

Comments
 (0)