Skip to content

Commit

Permalink
feat: expose java packages as es6 modules
Browse files Browse the repository at this point in the history
  • Loading branch information
vmutafov committed Nov 2, 2021
1 parent cfbbbc9 commit cb841c2
Show file tree
Hide file tree
Showing 4 changed files with 365 additions and 254 deletions.
Expand Up @@ -68,6 +68,12 @@
}, {
extension: ".mjs",
type: "javascript"
}, {
extension: ".ts",
type: "typescript"
}, {
extension: ".kt",
type: "kotlin"
}, {
extension: ".html",
type: "html"
Expand Down
11 changes: 11 additions & 0 deletions modules/engines/engine-javascript-graalvm/pom.xml
Expand Up @@ -205,6 +205,17 @@
</profiles>

<dependencies>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.10.1</version>
</dependency>

<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.8.128</version>
</dependency>

<dependency>
<groupId>org.graalvm.sdk</groupId>
Expand Down

0 comments on commit cb841c2

Please sign in to comment.