Skip to content
This repository was archived by the owner on Jan 5, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
node_js:
- 10.16.3
script: ng build --project ng-bootstrap-form-validation
script: ng build --prod --project ng-bootstrap-form-validation
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hrm, should we update the build script in package.json instead?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't be a bad idea

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I misread this, I already updated it in the previous MR

before_deploy: node ./scripts/beforeDeploy && cd dist/ng-bootstrap-form-validation
deploy:
- provider: npm
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An Angular module that makes Bootstrap form validation easy.

Check out [the demo](https://third774.github.io/ng-bootstrap-form-validation)!

*Note: v5.0.0 is out and supports Angular 8!*
*Note: v9.0.0 is out and supports Angular 9!*

## Install

Expand Down
4 changes: 2 additions & 2 deletions projects/ng-bootstrap-form-validation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"node": ">=10.0.0"
},
"peerDependencies": {
"@angular/common": "^8.0.0",
"@angular/core": "^8.0.0"
"@angular/common": "^9.0.0",
"@angular/core": "^9.0.0"
}
}
1 change: 1 addition & 0 deletions projects/ng-bootstrap-form-validation/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/

export { ErrorMessage, FormatErrorFunction } from "./lib/Models/error-message";
export { FormControlDirective } from "./lib/Directives/form-control.directive";
export {
FormValidationDirective
} from "./lib/Directives/form-validation.directive";
Expand Down