mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00

* Add gradle support for building and packaging the ember web app, alleviating the manual instlalation of node/npm/bower/ember. * Remove generated files under web/public * Update ember.gradle
15 lines
199 B
Groovy
15 lines
199 B
Groovy
apply from: '../gradle/scripts/ember.gradle'
|
|
|
|
configurations {
|
|
assets
|
|
}
|
|
|
|
task distZip(type: Zip, dependsOn: emberBuild) {
|
|
baseName 'wherehows-web'
|
|
from 'dist'
|
|
}
|
|
|
|
artifacts {
|
|
assets distZip
|
|
}
|