You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improvements:
First:
There is no such import { FunctionComponent } from '@qwik.dev/core/jsx-runtime';
You can directly import { FunctionComponent } from from '@qwik.dev/core';
Second:
There is no such import type { CorrectedToggleEvent } from '@qwik.dev/core';
Instead you can: import { CorrectedToggleEvent } from '@qwik.dev/core/dist/core-internal';
ps. I encountered the following while upgrading @qwik-ui.
The text was updated successfully, but these errors were encountered:
steffanek
changed the title
V2 migration tool - Error in package.json
V2 migration tool - Error in package.json + Improvements
Dec 25, 2024
Error:
After running the migration, there is a need to manually update your
package.json
file(s) from:to:
Improvements:
First:
There is no such
import { FunctionComponent } from '@qwik.dev/core/jsx-runtime';
You can directly
import { FunctionComponent } from from '@qwik.dev/core';
Second:
There is no such
import type { CorrectedToggleEvent } from '@qwik.dev/core';
Instead you can:
import { CorrectedToggleEvent } from '@qwik.dev/core/dist/core-internal';
ps. I encountered the following while upgrading @qwik-ui.
The text was updated successfully, but these errors were encountered: