@export doesn't work as expected based on @block syntax.
chriseppstein opened this issue · 0 comments
chriseppstein commented
@export foo from "./foo.block.css"
should export thedefault
block offoo.block.css
asfoo
.@export (bar) from "./foo.block.css"
should export thebar
block offoo.block.css
asbar
.@export (bar as xyz) from "./foo.block.css"
should export thebar
block offoo.block.css
asxyz
.@export abc
should export the local block reference toabc
asabc
.@export (abc as zyx)
should export the local block reference toabc
aszyx
.
When there's parens, we should accept any number of comma delimited export expressions where any export expression can be an identifier or two identifiers joined by as
.
When there's not parens, we should only accept a single block name.