-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
chore: tidy up #10705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: tidy up #10705
Conversation
|
@@ -1,10 +1,10 @@ | |||
import { describe, assert, it } from 'vitest'; | |||
import * as $ from '../../src/internal/client/runtime'; | |||
import { derived } from '../../src/internal/client/reactivity/deriveds'; | |||
import { effect, render_effect, user_effect } from '../../src/internal/client/reactivity/effects'; | |||
import { source, set } from '../../src/internal/client/reactivity/sources'; | |||
import type { Derived } from '../../src/internal/client/types'; | |||
import { proxy } from '../../src/internal/client/proxy'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be proxies as the others directories are plural?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
very possibly, yeah. for now i'm just trying to extract all the reactivity changes out of blockless
so that it becomes a bit more tractable
another PR to shrink the diff in #10594 a bit. no substantive changes