Slide 1

Slide 1 text

Architectures & ngular With Libs

Slide 2

Slide 2 text

Fabian Gosebrink Google Developer Expert Microsoft MVP Pluralsight Author

Slide 3

Slide 3 text

Fabian Gosebrink https://offering.solutions

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

No content

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

What the F*** is in there???

Slide 8

Slide 8 text

Throwaway code

Slide 9

Slide 9 text

Time pressure

Slide 10

Slide 10 text

No content

Slide 11

Slide 11 text

Testing?

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

No content

Slide 14

Slide 14 text

Fix BUg

Slide 15

Slide 15 text

Create a Feature

Slide 16

Slide 16 text

In Every App!

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

No content

Slide 19

Slide 19 text

No content

Slide 20

Slide 20 text

Dependency Management

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

Build

Slide 23

Slide 23 text

Build Publish

Slide 24

Slide 24 text

Build Publish Install

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

V1 V2

Slide 27

Slide 27 text

Different Versions

Slide 28

Slide 28 text

Additonal Pipelines

Slide 29

Slide 29 text

Additonal Repository

Slide 30

Slide 30 text

Time !

Slide 31

Slide 31 text

Architectures & ngular With Libs

Slide 32

Slide 32 text

No content

Slide 33

Slide 33 text

Latest Tools

Slide 34

Slide 34 text

No content

Slide 35

Slide 35 text

Modern Techniques

Slide 36

Slide 36 text

No content

Slide 37

Slide 37 text

No content

Slide 38

Slide 38 text

Workspaces What Are

Slide 39

Slide 39 text

Ng Workspace

Slide 40

Slide 40 text

Ng Workspace

Slide 41

Slide 41 text

No content

Slide 42

Slide 42 text

No content

Slide 43

Slide 43 text

No content

Slide 44

Slide 44 text

No content

Slide 45

Slide 45 text

Nx Workspace

Slide 46

Slide 46 text

No content

Slide 47

Slide 47 text

@nx/angular plugin

Slide 48

Slide 48 text

No content

Slide 49

Slide 49 text

No content

Slide 50

Slide 50 text

NX CLI nx nx

Slide 51

Slide 51 text

NX CLI nx

Slide 52

Slide 52 text

NX CLI nx nx lint doggos-domain

Slide 53

Slide 53 text

NX CLI nx test doggo-rating-app nx

Slide 54

Slide 54 text

NX CLI nx test doggo-rating-app nx run doggo-rating-app:test nx

Slide 55

Slide 55 text

NX CLI nx run-many --target=test --projects=project1,project2

Slide 56

Slide 56 text

No content

Slide 57

Slide 57 text

No content

Slide 58

Slide 58 text

No content

Slide 59

Slide 59 text

No content

Slide 60

Slide 60 text

Rethinking Libraries

Slide 61

Slide 61 text

Libraries

Slide 62

Slide 62 text

Libraries Share Code between Apps

Slide 63

Slide 63 text

Libraries Share Code between Apps Provide Feature to ONe app

Slide 64

Slide 64 text

Libraries Share Code between Apps Provide Feature to ONe app Multiple libs = one feature

Slide 65

Slide 65 text

Feature

Slide 66

Slide 66 text

Feature Domain Feature

Slide 67

Slide 67 text

Feature Domain Feature Ui

Slide 68

Slide 68 text

Feature Domain Feature Ui Utils

Slide 69

Slide 69 text

Feature Domain Feature Ui Utils Models, services, state Container Components Presentational Components Utility Functions

Slide 70

Slide 70 text

No content

Slide 71

Slide 71 text

https://go.nrwl.io/angular-enterprise-monorepo-patterns-new-book

Slide 72

Slide 72 text

Feature Ui Vs.

Slide 73

Slide 73 text

Container Presentational Vs.

Slide 74

Slide 74 text

@Component({ /* ... */ }) export class MainDoggoComponent implements OnInit { private readonly store = inject(Store); private readonly destroyRef = inject(DestroyRef); doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Slide 75

Slide 75 text

@Component({ /* ... */ }) export class MainDoggoComponent implements OnInit { private readonly store = inject(Store); private readonly destroyRef = inject(DestroyRef); doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 private readonly store = inject(Store); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30

Slide 76

Slide 76 text

@Component({ /* ... */ }) export class MainDoggoComponent implements OnInit { private readonly store = inject(Store); private readonly destroyRef = inject(DestroyRef); doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 private readonly store = inject(Store); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 6 7 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30

Slide 77

Slide 77 text

@Component({ /* ... */ }) export class MainDoggoComponent implements OnInit { private readonly store = inject(Store); private readonly destroyRef = inject(DestroyRef); doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 private readonly store = inject(Store); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 6 7 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 10 11 12 13 14 15 16 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30

Slide 78

Slide 78 text

@Component({ /* ... */ }) export class MainDoggoComponent implements OnInit { private readonly store = inject(Store); private readonly destroyRef = inject(DestroyRef); doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 private readonly store = inject(Store); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 doggos = this.store.selectSignal(getAllDoggosButSelected); selectedDoggo = this.store.selectSignal(getSelectedDoggo); loading = this.store.selectSignal(getLoading); @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 6 7 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 ngOnInit(): void { this.store.dispatch(DoggosActions.loadDoggos()); this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); this.destroyRef.onDestroy(() => { this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); }); } @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 10 11 12 13 14 15 16 17 18 rateDoggo(rating: number) { 19 this.store.dispatch(DoggosActions.rateDoggo({ rating })); 20 } 21 22 skipDoggo() { 23 this.store.dispatch(DoggosActions.selectNextDoggo()); 24 } 25 26 selectDoggo(id: string) { 27 this.store.dispatch(DoggosActions.selectDoggo({ id })); 28 } 29 } 30 rateDoggo(rating: number) { this.store.dispatch(DoggosActions.rateDoggo({ rating })); } skipDoggo() { this.store.dispatch(DoggosActions.selectNextDoggo()); } selectDoggo(id: string) { this.store.dispatch(DoggosActions.selectDoggo({ id })); } @Component({ /* ... */ }) 1 export class MainDoggoComponent implements OnInit { 2 private readonly store = inject(Store); 3 private readonly destroyRef = inject(DestroyRef); 4 5 doggos = this.store.selectSignal(getAllDoggosButSelected); 6 selectedDoggo = this.store.selectSignal(getSelectedDoggo); 7 loading = this.store.selectSignal(getLoading); 8 9 ngOnInit(): void { 10 this.store.dispatch(DoggosActions.loadDoggos()); 11 this.store.dispatch(DoggosActions.startListeningToRealtimeDoggoEvents()); 12 13 this.destroyRef.onDestroy(() => { 14 this.store.dispatch(DoggosActions.stopListeningToRealtimeDoggoEvents()); 15 }); 16 } 17 18 19 20 21 22 23 24 25 26 27 28 29 } 30

Slide 79

Slide 79 text

@Component({ /* ... */ }) export class DoggoListComponent { @Input() doggos: Doggo[] | null = []; @Output() doggoSelected = new EventEmitter(); selectDoggo(doggo: Doggo) { this.doggoSelected.emit(doggo.id); } } 1 2 3 4 5 6 7 8 9 10

Slide 80

Slide 80 text

@Component({ /* ... */ }) export class DoggoListComponent { @Input() doggos: Doggo[] | null = []; @Output() doggoSelected = new EventEmitter(); selectDoggo(doggo: Doggo) { this.doggoSelected.emit(doggo.id); } } 1 2 3 4 5 6 7 8 9 10 @Input() doggos: Doggo[] | null = []; @Component({ /* ... */ }) 1 export class DoggoListComponent { 2 3 4 @Output() doggoSelected = new EventEmitter(); 5 6 selectDoggo(doggo: Doggo) { 7 this.doggoSelected.emit(doggo.id); 8 } 9 } 10

Slide 81

Slide 81 text

@Component({ /* ... */ }) export class DoggoListComponent { @Input() doggos: Doggo[] | null = []; @Output() doggoSelected = new EventEmitter(); selectDoggo(doggo: Doggo) { this.doggoSelected.emit(doggo.id); } } 1 2 3 4 5 6 7 8 9 10 @Input() doggos: Doggo[] | null = []; @Component({ /* ... */ }) 1 export class DoggoListComponent { 2 3 4 @Output() doggoSelected = new EventEmitter(); 5 6 selectDoggo(doggo: Doggo) { 7 this.doggoSelected.emit(doggo.id); 8 } 9 } 10 @Output() doggoSelected = new EventEmitter(); selectDoggo(doggo: Doggo) { this.doggoSelected.emit(doggo.id); } @Component({ /* ... */ }) 1 export class DoggoListComponent { 2 @Input() doggos: Doggo[] | null = []; 3 4 5 6 7 8 9 } 10

Slide 82

Slide 82 text

Nx is built on a technology-agnostic core that maintains modular units of code and understands the dependency graph between them. "

Slide 83

Slide 83 text

Dependency Graph

Slide 84

Slide 84 text

No content

Slide 85

Slide 85 text

Demo

Slide 86

Slide 86 text

80 20 /

Slide 87

Slide 87 text

Your ArchitectureIs a Moving part It Evolves!

Slide 88

Slide 88 text

NX CLI nx g @nx/angular:move --project my-lib --destination shared/my-lib

Slide 89

Slide 89 text

Affected

Slide 90

Slide 90 text

No content

Slide 91

Slide 91 text

No content

Slide 92

Slide 92 text

NX CLI nx affected -t lint

Slide 93

Slide 93 text

No content

Slide 94

Slide 94 text

Buildable Non buildable Vs.

Slide 95

Slide 95 text

NX CLI ... --buildable ... --publishable

Slide 96

Slide 96 text

Code Quality

Slide 97

Slide 97 text

No content

Slide 98

Slide 98 text

No content

Slide 99

Slide 99 text

App About Doggos Feature Feature Ui Domain Utils Shared util-environments util-Auth util-Common UI-common

Slide 100

Slide 100 text

App About Doggos Feature Feature Ui Domain Utils Shared util-environments util-Auth util-Common UI-common scope:about scope:doggos scope:shared

Slide 101

Slide 101 text

App About Doggos Feature Feature Ui Domain Utils type:feature Shared util-environments util-Auth util-Common UI-common scope:about scope:doggos scope:shared

Slide 102

Slide 102 text

App About Doggos Feature Feature Ui Domain Utils type:feature type:ui type:domain type:utils type:feature Shared util-environments util-Auth util-Common UI-common scope:about scope:doggos scope:shared

Slide 103

Slide 103 text

App About Doggos Feature Feature Ui Domain Utils type:feature type:ui type:domain type:utils type:feature Shared util-environments type:util util-Auth util-Common UI-common type:util type:util type:ui scope:about scope:doggos scope:shared

Slide 104

Slide 104 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Slide 105

Slide 105 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31

Slide 106

Slide 106 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31

Slide 107

Slide 107 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31

Slide 108

Slide 108 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "sourceTag": "scope:shared", 32 "onlyDependOnLibsWithTags": ["scope:shared"] 33

Slide 109

Slide 109 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 23 24 25 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "sourceTag": "scope:shared", 32 "onlyDependOnLibsWithTags": ["scope:shared"] 33 }, 34 { 35 "sourceTag": "type:app", 36 "onlyDependOnLibsWithTags": [ 37 "type:feature", 38 "type:util", 39

Slide 110

Slide 110 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 23 24 25 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 27 28 29 30 { 31 "sourceTag": "scope:shared", 32 "onlyDependOnLibsWithTags": ["scope:shared"] 33 }, 34 { 35 "sourceTag": "type:app", 36 "onlyDependOnLibsWithTags": [ 37 "type:feature", 38 "type:util", 39 "type:ui" 40 ] 41 }, 42 { 43

Slide 111

Slide 111 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 23 24 25 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 27 28 29 30 { 31 { "sourceTag": "scope:shared", "onlyDependOnLibsWithTags": ["scope:shared"] }, "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 31 32 33 34 { 35 "sourceTag": "type:app", 36 "onlyDependOnLibsWithTags": [ 37 "type:feature", 38 "type:util", 39 "type:ui" 40 ] 41 }, 42 { 43 "sourceTag": "type:feature", 44 "onlyDependOnLibsWithTags": [ 45 "type:domain", 46 "type:ui", 47

Slide 112

Slide 112 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 23 24 25 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 27 28 29 30 { 31 { { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 31 { "sourceTag": "type:app", "onlyDependOnLibsWithTags": [ "type:feature", "type:util", "type:ui" ] }, { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "sourceTag": "scope:shared", 32 "onlyDependOnLibsWithTags": ["scope:shared"] 33 }, 34 35 36 37 38 39 40 41 42 { 43 "sourceTag": "type:feature", 44 "onlyDependOnLibsWithTags": [ 45 "type:domain", 46 "type:ui", 47 "type:util" 48 ] 49 }, 50 { 51 "sourceTag": "type:ui", 52 "onlyDependOnLibsWithTags": ["type:util", "type:domain"] 53

Slide 113

Slide 113 text

{ "root": true, "ignorePatterns": ["**/*"], "plugins": ["@nx"], "overrides": [ { "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": { "@nx/enforce-module-boundaries": [ "error", { "enforceBuildableLibDependency": true, "allow": [], "depConstraints": [ { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 "@nx/enforce-module-boundaries": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "error", { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 "depConstraints": [ { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggo-rating-app", "onlyDependOnLibsWithTags": [ "scope:doggos", "scope:about", "scope:shared" ] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 15 16 17 18 19 20 21 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:about", "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 23 24 25 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "scope:doggos", "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] }, { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 27 28 29 30 { 31 { { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 31 { 1 "root": true, 2 "ignorePatterns": ["**/*"], 3 "plugins": ["@nx"], 4 "overrides": [ 5 { 6 "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], 7 "rules": { 8 "@nx/enforce-module-boundaries": [ 9 "error", 10 { 11 "enforceBuildableLibDependency": true, 12 "allow": [], 13 "depConstraints": [ 14 { 15 "sourceTag": "scope:doggo-rating-app", 16 "onlyDependOnLibsWithTags": [ 17 "scope:doggos", 18 "scope:about", 19 "scope:shared" 20 ] 21 }, 22 { 23 "sourceTag": "scope:about", 24 "onlyDependOnLibsWithTags": ["scope:about", "scope:shared"] 25 }, 26 { 27 "sourceTag": "scope:doggos", 28 "onlyDependOnLibsWithTags": ["scope:doggos", "scope:shared"] 29 }, 30 { 31 { "sourceTag": "type:feature", "onlyDependOnLibsWithTags": [ "type:domain", "type:ui", "type:util" ] }, { 31 "sourceTag": "scope:shared", 32 "onlyDependOnLibsWithTags": ["scope:shared"] 33 }, 34 { 35 "sourceTag": "type:app", 36 "onlyDependOnLibsWithTags": [ 37 "type:feature", 38 "type:util", 39 "type:ui" 40 ] 41 }, 42 43 44 45 46 47 48 49 50 { 51 "sourceTag": "type:ui", 52 "onlyDependOnLibsWithTags": ["type:util", "type:domain"] 53 }, 54 { 55 "sourceTag": "type:domain", 56 "onlyDependOnLibsWithTags": ["type:util"] 57 } 58 ] 59 } 60 ], 61

Slide 114

Slide 114 text

No content

Slide 115

Slide 115 text

NX CLI nx migrate

Slide 116

Slide 116 text

No content

Slide 117

Slide 117 text

No content

Slide 118

Slide 118 text

No content

Slide 119

Slide 119 text

No content

Slide 120

Slide 120 text

No content

Slide 121

Slide 121 text

Thank You