We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
it's possible for a third party component to try and import the wrong version of Svelte. Changing this line should fix it:
+const relative = require('relative-require'); // later... -if (!('shared' in options)) options.shared = options.format === 'es' && 'svelte/shared.js'; +if (!('shared' in options)) options.shared = options.format === 'es' && relative.resolve('svelte/shared.js', process.cwd());
The text was updated successfully, but these errors were encountered:
fixes sveltejs#65
56cb185
Merge pull request #69 from ekhaled/gh-65
9d9c9bc
fixes #65
Successfully merging a pull request may close this issue.
it's possible for a third party component to try and import the wrong version of Svelte.
Changing this line should fix it:
The text was updated successfully, but these errors were encountered: