You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 2, 2022. It is now read-only.
// PersonPresenter.groovypackagecom.example.grooscript_sample.presentersimportcom.example.grooscript_sample.models.PersonclassPersonPresenter {
Person person
defbuttonClick() {
if (person.firstName) {
$('#salutes').append("<p>Hello ${person.firstName}!</p>")
}
}
}
Please add support for converting the groovy files into js using commonJs modules. For example having next code:
and:
should be transpiled to:
and: