Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/repl/src/lib/workers/bundler/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ async function get_bundle(
const pkg_url =
pkg_name === 'svelte'
? `${svelte_url}/package.json`
: `${packages_url}/${pkg_name}/package.json`;
: `${packages_url}/${pkg_name}@${match[2] ?? 'latest'}/package.json`;
const subpath = `.${match[3] ?? ''}`;

// if this was imported by one of our files, add it to the `imports` set
Expand Down
Loading