Skip to content

Commit

Permalink
Clean up after 9be1ad9.
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan committed Aug 26, 2022
1 parent f2f04d6 commit f304413
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion org.lflang.ide/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
apply plugin: 'application'
apply plugin: 'com.github.johnrengelman.shadow'

task generateLanguageServer {
task generateLanguageServer(dependsOn: [':org.lflang.lfc:setupTypescriptRuntime']) {
description 'Creates a jar file that implements a language server.'

apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion org.lflang.lfc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ task buildLfc(dependsOn: ['setupTypescriptRuntime']) {

task setupTypescriptRuntime(type: Exec) {
workingDir '../org.lflang/src/lib/ts/reactor-ts'
commandLine 'pnpm', 'install'
commandLine 'npm', 'install'
outputs.file('../org.lflang/src/lib/ts/reactor-ts/*')
}

Expand Down
1 change: 1 addition & 0 deletions org.lflang/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jar {
}

processResources.dependsOn(generateXtextLanguage)
processResources.dependsOn(':org.lflang.lfc:setupTypescriptRuntime')
generateXtext.dependsOn(generateXtextLanguage)
clean.dependsOn(cleanGenerateXtextLanguage)
eclipse.classpath.plusConfigurations += [configurations.mwe2]
Expand Down

0 comments on commit f304413

Please sign in to comment.