Skip to content

Commit

Permalink
chore(): 5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ks89 committed Apr 3, 2018
1 parent ee0b66e commit a5fd177
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
- run:
name: run-install-demo-angular-cli
command: cd examples/angular-cli && npm install
- run:
name: run-install-demo-angular-cli-6
command: cd examples/angular-cli-6 && npm install
- run:
name: run-install-demo-angular-cli-material
command: cd examples/angular-cli-material && npm install
Expand Down Expand Up @@ -81,6 +84,13 @@ jobs:
- run:
name: run-build-prod-aot-demo-angular-cli
command: cd examples/angular-cli && npm run build:prod
# angular-cli-6
- run:
name: run-build-dev-demo-angular-cli-6
command: cd examples/angular-cli-6 && npm run build:dev
- run:
name: run-build-prod-aot-demo-angular-cli-6
command: cd examples/angular-cli-6 && npm run build:prod
# angular-cli-material
- run:
name: run-build-dev-demo-angular-cli-material
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ From version 5.0.0, **font-awesome isn't a mandatory dependency**. You can use a


## News
- 04/03/2018 - 5.4.0 - angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
- 04/03/2018 - 5.4.0-beta.3 - angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
- 03/28/2018 - 5.4.0-beta.2 - angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
- 03/28/2018 - 5.4.0-beta.1 - angular-modal-gallery - [HERE](https://github.com/Ks89/angular-modal-gallery/releases)
Expand Down
8 changes: 8 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ build_script:
- cd examples/angular-cli
- npm install
- cd ../..
- cd examples/angular-cli-6
- npm install
- cd ../..
- cd examples/angular-cli-material
- npm install
- cd ../..
Expand All @@ -168,6 +171,11 @@ build_script:
- npm run build:dev
- npm run build:prod
- cd ../..
# build official angular-cli-6 example
- cd examples/angular-cli-6
- npm run build:dev
- npm run build:prod
- cd ../..
# build official angular-cli-material example
- cd examples/angular-cli-material
- npm run build:dev
Expand Down
2 changes: 1 addition & 1 deletion libs/angular-modal-gallery/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../../node_modules/ng-packagr/package.schema.json",
"name": "angular-modal-gallery",
"version": "5.4.0-beta.3",
"version": "5.4.0",
"ngPackage": {
"lib": {
"entryFile": "index.ts"
Expand Down
9 changes: 9 additions & 0 deletions travisci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ cd ../..
cd examples/angular-cli
npm install
cd ../..
cd examples/angular-cli-6
npm install
cd ../..
cd examples/angular-cli-material
npm install
cd ../..
Expand Down Expand Up @@ -40,6 +43,12 @@ npm run build:dev
npm run build:prod
cd ../..

echo "building official angular-cli-6 example on $TRAVIS_OS_NAME"
cd examples/angular-cli-6
npm run build:dev
npm run build:prod
cd ../..

echo "building official angular-cli-material example on $TRAVIS_OS_NAME"
cd examples/angular-cli-material
npm run build:dev
Expand Down

0 comments on commit a5fd177

Please sign in to comment.