Skip to content

Commit f1d8652

Browse files
authored
feat(portfolio): New Liberty Flight Page
feat(portfolio): New Liberty Flight Page
2 parents ec83609 + a781d80 commit f1d8652

33 files changed

Lines changed: 662 additions & 12 deletions

angular.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,55 @@
586586
"common-docs"
587587
]
588588
},
589+
"route-pages-liberty-flights-page": {
590+
"projectType": "library",
591+
"root": "libs/route-pages/liberty-flights-page",
592+
"sourceRoot": "libs/route-pages/liberty-flights-page/src",
593+
"prefix": "valor-software-site-base",
594+
"targets": {
595+
"build": {
596+
"executor": "@nrwl/angular:ng-packagr-lite",
597+
"outputs": [
598+
"dist/libs/route-pages/liberty-flights-page"
599+
],
600+
"options": {
601+
"project": "libs/route-pages/liberty-flights-page/ng-package.json"
602+
},
603+
"configurations": {
604+
"production": {
605+
"tsConfig": "libs/route-pages/liberty-flights-page/tsconfig.lib.prod.json"
606+
},
607+
"development": {
608+
"tsConfig": "libs/route-pages/liberty-flights-page/tsconfig.lib.json"
609+
}
610+
},
611+
"defaultConfiguration": "production"
612+
},
613+
"test": {
614+
"executor": "@nrwl/jest:jest",
615+
"outputs": [
616+
"coverage/libs/route-pages/liberty-flights-page"
617+
],
618+
"options": {
619+
"jestConfig": "libs/route-pages/liberty-flights-page/jest.config.js",
620+
"passWithNoTests": true
621+
}
622+
},
623+
"lint": {
624+
"executor": "@nrwl/linter:eslint",
625+
"options": {
626+
"lintFilePatterns": [
627+
"libs/route-pages/liberty-flights-page/src/**/*.ts",
628+
"libs/route-pages/liberty-flights-page/src/**/*.html"
629+
]
630+
}
631+
}
632+
},
633+
"tags": [],
634+
"implicitDependencies": [
635+
"common-docs"
636+
]
637+
},
589638
"route-pages-tablesready-page": {
590639
"projectType": "library",
591640
"root": "libs/route-pages/tablesready-page",
698 KB
Loading
232 KB
Loading
754 KB
Loading
804 KB
Loading
331 KB
Loading
393 KB
Loading
675 KB
Loading
3.29 KB
Loading

libs/common-docs/src/common-docs.module.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,10 @@ import { CustomSlicePipe } from './pipes/customSlice.pipe';
2525
import { ExpandableCardComponent } from './components/expandable-card/expandable-card.component';
2626
import { ComparisonSliderComponent } from './components/comparison-slider/comparison-slider.component';
2727
import { NextProjectComponent } from './components/next-project/next-project.component';
28+
import { ImpactCardComponent } from './components/impact-card/impact-card.component';
29+
import { ChallengeCardComponent } from './components/challenge-card/challenge-card.component';
2830
import { UtilService } from './services/utils.service';
2931
import { TechnologiesCardComponent } from './components/technologies-card/technologies-card.component';
30-
import { ImpactCardComponent } from './components/impact-card/impact-card.component';
3132
import { TechnologiesComponent } from './components/technologies/technologies.component';
3233

3334
export { PopoverComponent } from './components/popover/popover.component';
@@ -55,10 +56,12 @@ export { ExpandableCardComponent } from './components/expandable-card/expandable
5556
export { IExpandableCard } from './components/expandable-card/expandable-card.component';
5657
export { ComparisonSliderComponent } from './components/comparison-slider/comparison-slider.component';
5758
export { NextProjectComponent } from './components/next-project/next-project.component';
59+
export { ImpactCardComponent } from './components/impact-card/impact-card.component';
60+
export { ChallengeCardComponent } from './components/challenge-card/challenge-card.component';
61+
export { IChallengeCard } from './components/challenge-card/challenge-card.component';
5862
export { TechnologiesCardComponent } from './components/technologies-card/technologies-card.component';
5963
export { ITechnologiesCard } from './components/technologies-card/technologies-card.component';
6064
export { UtilService } from './services/utils.service';
61-
export { ImpactCardComponent } from './components/impact-card/impact-card.component';
6265
export { technologiesAndServices } from './components/technologies/technologies-and-services';
6366

6467
@NgModule({
@@ -78,8 +81,9 @@ export { technologiesAndServices } from './components/technologies/technologies-
7881
NextProjectComponent,
7982
ExpandableCardComponent,
8083
ComparisonSliderComponent,
81-
TechnologiesCardComponent,
8284
ImpactCardComponent,
85+
ChallengeCardComponent,
86+
TechnologiesCardComponent,
8387
TechnologiesComponent
8488
],
8589
imports: [CommonModule, RouterModule, ReactiveFormsModule, HttpClientModule, FileUploaderModule, SwiperModule, RecaptchaV3Module],
@@ -97,8 +101,9 @@ export { technologiesAndServices } from './components/technologies/technologies-
97101
NextProjectComponent,
98102
ExpandableCardComponent,
99103
ComparisonSliderComponent,
100-
TechnologiesCardComponent,
101104
ImpactCardComponent,
105+
ChallengeCardComponent,
106+
TechnologiesCardComponent,
102107
TechnologiesComponent
103108
],
104109
providers: [ModalService, SendEmailService, GetArticlesService, GetPortfolioService, UtilService,

0 commit comments

Comments
 (0)