Skip to content

Commit

Permalink
chore: show stacktrace for err
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlee38 committed Sep 23, 2024
1 parent fcba827 commit d60faa8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Build JAR
working-directory: ./gitnote-jetbrains
run: ./gradlew buildPlugin -Dgitnote.useLocalGui=false -Dgitnote.buildCore=false
run: ./gradlew buildPlugin -Dgitnote.useLocalGui=false -Dgitnote.buildCore=false --scan

- name: Get Project Version
id: get_version
Expand Down
9 changes: 4 additions & 5 deletions gitnote-jetbrains/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "io.cjlee"
version = "0.2.10"
version = "0.2.11"

repositories {
mavenCentral()
Expand Down Expand Up @@ -102,14 +102,13 @@ tasks {
}

npmInstall {

workingDir = file("../gitnote-gui")
}

register<NpmTask>("buildGui") {
dependsOn("npmInstall") // Ensure npm is installed
workingDir = file("../gitnote-gui") // Set the working directory to your React project
args.set(listOf("run", "build")) // Command to build the React project
dependsOn("npmInstall")
workingDir = file("../gitnote-gui")
args.set(listOf("run", "build"))
}

register<Copy>("copyGui") {
Expand Down

0 comments on commit d60faa8

Please sign in to comment.