fix package warning

This commit is contained in:
Eugenio Romano
2018-09-18 14:27:25 +01:00
parent aca6b1bc66
commit be816ec345
5 changed files with 11 additions and 7 deletions

View File

@@ -17,7 +17,7 @@
"@angular/common": ">=5.1.1", "@angular/common": ">=5.1.1",
"@angular/compiler": ">=5.1.1", "@angular/compiler": ">=5.1.1",
"@angular/core": ">=5.1.1", "@angular/core": ">=5.1.1",
"@angular/flex-layout": ">=5.1.1", "@angular/flex-layout": ">=6.0.0-beta.18",
"@angular/forms": ">=5.1.1", "@angular/forms": ">=5.1.1",
"@angular/http": ">=5.1.1", "@angular/http": ">=5.1.1",
"@angular/material": ">=5.1.1", "@angular/material": ">=5.1.1",

View File

@@ -17,7 +17,7 @@
"@angular/common": ">=5.1.1", "@angular/common": ">=5.1.1",
"@angular/compiler": ">=5.1.1", "@angular/compiler": ">=5.1.1",
"@angular/core": ">=5.1.1", "@angular/core": ">=5.1.1",
"@angular/flex-layout": ">=5.1.1", "@angular/flex-layout": ">=6.0.0-beta.18",
"@angular/forms": ">=5.1.1", "@angular/forms": ">=5.1.1",
"@angular/http": ">=5.1.1", "@angular/http": ">=5.1.1",
"@angular/material": ">=5.1.1", "@angular/material": ">=5.1.1",

View File

@@ -17,7 +17,7 @@
"@angular/common": ">=5.1.1", "@angular/common": ">=5.1.1",
"@angular/compiler": ">=5.1.1", "@angular/compiler": ">=5.1.1",
"@angular/core": ">=5.1.1", "@angular/core": ">=5.1.1",
"@angular/flex-layout": ">=5.1.1", "@angular/flex-layout": ">=6.0.0-beta.18",
"@angular/forms": ">=5.1.1", "@angular/forms": ">=5.1.1",
"@angular/http": ">=5.1.1", "@angular/http": ">=5.1.1",
"@angular/material": ">=5.1.1", "@angular/material": ">=5.1.1",

View File

@@ -17,7 +17,7 @@
"@angular/common": ">=5.1.1", "@angular/common": ">=5.1.1",
"@angular/compiler": ">=5.1.1", "@angular/compiler": ">=5.1.1",
"@angular/core": ">=5.1.1", "@angular/core": ">=5.1.1",
"@angular/flex-layout": ">=5.1.1", "@angular/flex-layout": ">=6.0.0-beta.18",
"@angular/forms": ">=5.1.1", "@angular/forms": ">=5.1.1",
"@angular/http": ">=5.1.1", "@angular/http": ">=5.1.1",
"@angular/material": ">=5.1.1", "@angular/material": ">=5.1.1",

View File

@@ -7,7 +7,7 @@ eval VERSION=""
eval projects=( "adf-core" eval projects=( "adf-core"
"adf-insights" "adf-insights"
"adf-content-services" "adf-content-services"
"extensions" "adf-extensions"
"adf-process-services" ) "adf-process-services" )
show_help() { show_help() {
@@ -106,8 +106,12 @@ do
fi fi
if [ ! -f package/_theming.scss ]; then if [ ! -f package/_theming.scss ]; then
error_out '31;1' "$PACKAGE style not found!" >&2 if [ $PACKAGE == 'adf-extensions' ]; then
exit 1 echo "no style needed"
else
error_out '31;1' "$PACKAGE style not found!" >&2
exit 1
fi
else else
echo "style ok!" echo "style ok!"
fi fi