Skip to content

Commit

Permalink
Revert "Workaround for assets compile issue"
Browse files Browse the repository at this point in the history
This reverts commit 2d522c6.
  • Loading branch information
rainboyan committed May 9, 2024
1 parent 2d522c6 commit 1042fe5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion plugins/stimulus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.4.7"
}
}

ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
Expand Down Expand Up @@ -67,7 +70,6 @@ jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
exclude 'assets/turbo*'
}

assets {
Expand Down
4 changes: 3 additions & 1 deletion plugins/turbo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:3.4.7"
}
}

ext."signing.keyId" = project.hasProperty("signing.keyId") ? project.getProperty('signing.keyId') : System.getenv('SIGNING_KEY')
Expand Down Expand Up @@ -67,7 +70,6 @@ jar {
enabled = true
archiveClassifier.set('')
includeEmptyDirs = false
exclude 'assets/stimulus*'
}

assets {
Expand Down

0 comments on commit 1042fe5

Please sign in to comment.