View non-generic-search.ts
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', |
View generic-search.ts
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', |
View any.sh
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 |
View critical.sh
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" |