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
When using the AMD format, the following is generated as the AMD module definition:
define([ './CategoryChooser.html' ], function ( CategoryChooser ) { 'use strict';
it should be:
define([ './CategoryChooser' ], function ( CategoryChooser ) { 'use strict';
The text was updated successfully, but these errors were encountered:
remove extensions from AMD dependencies – fixes #144
9f6d1b2
Merge pull request #206 from sveltejs/gh-144
1c3f144
remove extensions from AMD dependencies
Fixed in 1.3.1, thanks. I do not miss dealing with AMD's quirks...
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When using the AMD format, the following is generated as the AMD module definition:
it should be:
The text was updated successfully, but these errors were encountered: