Closed balakine closed 3 years ago
I believe Skypack CDN needs it to turn deep import specifiers into ESM-compatible ones. I'd like to do this:
import { html } from 'https://cdn.skypack.dev/htm@3/preact';
Funny enough they use your other project in their example https://docs.skypack.dev/lookup-urls/lookup-urls#lookup-a-package-export
import { useState } from 'https://cdn.skypack.dev/preact@10/hooks';
Maybe it needs preact in peerDependencies in src/integrations/preact/package.json too.
src/integrations/preact/package.json
This should be fixed as of version 3.1.0.
I believe Skypack CDN needs it to turn deep import specifiers into ESM-compatible ones. I'd like to do this:
Funny enough they use your other project in their example https://docs.skypack.dev/lookup-urls/lookup-urls#lookup-a-package-export
Maybe it needs preact in peerDependencies in
src/integrations/preact/package.json
too.