Skip to content

Commit

Permalink
chore: rollback to npx
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlee38 committed Sep 23, 2024
1 parent d60faa8 commit da37c87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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 --scan
run: ./gradlew buildPlugin -Dgitnote.useLocalGui=false -Dgitnote.buildCore=false --stacktrace --debug

- name: Get Project Version
id: get_version
Expand Down
5 changes: 3 additions & 2 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.11"
version = "0.2.12"

repositories {
mavenCentral()
Expand Down Expand Up @@ -105,9 +105,10 @@ tasks {
workingDir = file("../gitnote-gui")
}

register<NpmTask>("buildGui") {
register<NpxTask>("buildGui") {
dependsOn("npmInstall")
workingDir = file("../gitnote-gui")
command.set("npm")
args.set(listOf("run", "build"))
}

Expand Down

0 comments on commit da37c87

Please sign in to comment.