This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ $(npm audit | grep Critical -B3 -A10) != '' ]]; then exit 1; fi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ $(npm run lint | grep WARNING | wc -l) -gt 100 ]; then exit 1; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { OnInit } from '@angular/core'; | |
import { FormArray, FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; | |
export interface CommonAddress { | |
id: number; | |
name: string; | |
} | |
export const FORM_PARAMS = { | |
supervisors: 'supervisors', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { OnInit } from '@angular/core'; | |
import { FormArray, FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; | |
export interface CommonAddress { | |
id: number; | |
name: string; | |
} | |
export const FORM_PARAMS = { | |
supervisors: 'supervisors', |