Skip to content

Bundle evalExtension in LanguageSupport object

Compare
Choose a tag to compare
@bobbicodes bobbicodes released this 26 Jun 05:12
· 57 commits to main since this release

The way it was before, the evalExtension had to be included in the extensions along with the Clojure language support. This fixes that by including both clojureLanguage and evalExtension in the final exported function:

export function clojure() {
  return new LanguageSupport(clojureLanguage, [evalExtension])
}