Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grails 7 web and base profile updates #14

Merged
merged 20 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions angular/profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ instructions: |
E.g., from the `client` directory, start the client application: `npm start`
skeleton:
excludes:
- gradlew
- gradlew.bat
- gradle/
- gradle.properties
- settings.gradle
parent:
Expand Down
Binary file removed angular/skeleton/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 0 additions & 7 deletions angular/skeleton/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

252 changes: 0 additions & 252 deletions angular/skeleton/gradlew

This file was deleted.

94 changes: 0 additions & 94 deletions angular/skeleton/gradlew.bat

This file was deleted.

6 changes: 3 additions & 3 deletions base/features/asset-pipeline/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ build:
- com.bertramlabs.asset-pipeline
dependencies:
- scope: build
coords: 'com.bertramlabs.plugins:asset-pipeline-gradle:3.4.7'
- scope: runtime
coords: "com.bertramlabs.plugins:asset-pipeline-grails:3.4.7"
coords: "com.bertramlabs.plugins:asset-pipeline-gradle"
- scope: runtimeOnly
coords: "com.bertramlabs.plugins:asset-pipeline-grails"
16 changes: 13 additions & 3 deletions base/features/asset-pipeline/skeleton/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@

assets {
minifyJs = true
minifyCss = true
excludes = [
'webjars/jquery/**',
'webjars/bootstrap/**',
'webjars/bootstrap-icons/**'
]
includes = [
'webjars/jquery/*/dist/jquery.js',
'webjars/bootstrap/*/dist/js/bootstrap.bundle.js',
'webjars/bootstrap/*/dist/css/bootstrap.css',
'webjars/bootstrap-icons/*/font/bootstrap-icons.css',
'webjars/bootstrap-icons/*/font/fonts/*',
]
}

Loading
Loading