Skip to content
New issue

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

Support for "import" inside of tag #69

Closed
kuashe opened this issue May 30, 2016 · 1 comment
Closed

Support for "import" inside of tag #69

kuashe opened this issue May 30, 2016 · 1 comment

Comments

@kuashe
Copy link
Contributor

kuashe commented May 30, 2016

ES 2015 "import" is not usable at the moment with riot .

Taken from this issue

<tag>
   <script>
     import baz from './baz'
     this.foo = 'bar'
   </script>
</tag>
riot.tag2('tag','', function(opts) {
   import baz from './baz' // import here is not allowed
   this.foo = 'bar'
})

I think the compiler needs to translate the import statement into a regular "import" .

import baz from './baz' // Will work this way
riot.tag2('tag','', function(opts) {
   this.foo = 'bar'
})

I will try to make thoses changes to the compiler .

@GianlucaGuarini
Copy link
Member

fixed in riot-compiler@2.5.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants