Resources
-Here are some links to help you get started:
- -Next Steps
-What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build-
diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..cbeaf99 --- /dev/null +++ b/build.sh @@ -0,0 +1,24 @@ +LIB=$1 + +rm -rf projects/$LIB/dist +rm -rf projects/$LIB/node_modules +rm -rf node_modules/$LIB +cd projects/$LIB +yarn +cd ../.. + +cp projects/$LIB/package.json projects/$LIB/src/lib/package.json + +ng build $LIB +yarn add file:projects/$LIB/dist/$LIB + +cd projects/$LIB +while test $# -gt 0 +do + case "$1" in + --update) echo "UPDATE VERSION " && npm --no-git-tag-version version patch + ;; + esac + shift +done +cd ../.. \ No newline at end of file diff --git a/package.json b/package.json index c000811..3b67c5e 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "@angular/platform-browser": "^14.0.0", "@angular/platform-browser-dynamic": "^14.0.0", "@angular/router": "^14.0.0", + "boss-library": "file:projects/boss-library/dist/boss-library", "rxjs": "~7.5.0", "tslib": "^2.3.0", "zone.js": "~0.11.4" diff --git a/projects/boss-library b/projects/boss-library index 8431ee2..a7fc5ac 160000 --- a/projects/boss-library +++ b/projects/boss-library @@ -1 +1 @@ -Subproject commit 8431ee20811ec40cb76d88df48edd20f176b1579 +Subproject commit a7fc5acb82dd06761afb267c630742ad657176cb diff --git a/src/app/app.component.html b/src/app/app.component.html index 2a0fbf1..862f781 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,484 +1 @@ - - - - - - - - - - - - -
- -Here are some links to help you get started:
- -What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build-