Skip to content

Commit 57d974c

Browse files
committed
Resolved prettier build issues.
1 parent 1b369ec commit 57d974c

File tree

9 files changed

+88
-256
lines changed

9 files changed

+88
-256
lines changed

app-config.template-local.yaml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,7 @@ catalog:
2828
- type: file
2929
target: ../../tibco-examples/tibco-examples.yaml
3030
rules:
31-
- allow:
32-
[
33-
Component,
34-
API,
35-
Location,
36-
Template,
37-
User,
38-
Group,
39-
Domain,
40-
System,
41-
Resource,
42-
]
31+
- allow:[ Component, API, Location, Template, User, Group, Domain, System, Resource ]
4332
auth:
4433
# see https://backstage.io/docs/auth/ to learn about auth providers
4534
environment: development

tibco-examples/car-order-system-and-components/bwce-database-adapter.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: backstage.io/v1alpha1
22
kind: Component
33
metadata:
4-
name: "db-adapter"
5-
description: "Database Adapter"
4+
name: 'db-adapter'
5+
description: 'Database Adapter'
66
tags:
77
- backend
88
- data-layer
@@ -21,15 +21,15 @@ spec:
2121
lifecycle: production
2222
system: car-order-system
2323
owner: operational-department
24-
providesApis: ["car-details-api"]
24+
providesApis: ['car-details-api']
2525
dependsOn:
2626
- resource:default/cars-database
2727
---
2828
apiVersion: backstage.io/v1alpha1
2929
kind: API
3030
metadata:
31-
name: "car-details-api"
32-
description: "An API that provides car details"
31+
name: 'car-details-api'
32+
description: 'An API that provides car details'
3333
tags:
3434
- store
3535
- rest
@@ -43,8 +43,8 @@ metadata:
4343
spec:
4444
type: openapi
4545
lifecycle: production
46-
owner: "CarImporter"
46+
owner: 'CarImporter'
4747
apiConsumedBy:
48-
["component:discount-calculator", "component:car-information-provider"]
48+
['component:discount-calculator', 'component:car-information-provider']
4949
definition:
5050
$text: ./sample-api.json

tibco-examples/car-order-system-and-components/car-order-system.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: backstage.io/v1alpha1
22
kind: System
33
metadata:
44
name: car-order-system
5-
description: "A system to Order New Cars"
5+
description: 'A system to Order New Cars'
66
annotations:
77
github.com/project-slug: TIBCO-Hub-Backstage/tibco-examples
88
backstage.io/techdocs-ref: dir:.

tibco-examples/car-order-system-and-components/flogo-car-information-provider.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: backstage.io/v1alpha1
22
kind: Component
33
metadata:
4-
name: "car-information-provider"
5-
description: "Car Information Provider Service"
4+
name: 'car-information-provider'
5+
description: 'Car Information Provider Service'
66
tags:
77
- backend
88
- data-layer
@@ -15,7 +15,7 @@ spec:
1515
lifecycle: production
1616
system: car-order-system
1717
owner: operational-department
18-
providesApis: ["car-information-api"]
18+
providesApis: ['car-information-api']
1919
consumesApis:
2020
- car-details-api
2121
dependsOn:
@@ -24,8 +24,8 @@ spec:
2424
apiVersion: backstage.io/v1alpha1
2525
kind: API
2626
metadata:
27-
name: "car-information-api"
28-
description: "An API that provides car details, and points to resources"
27+
name: 'car-information-api'
28+
description: 'An API that provides car details, and points to resources'
2929
tags:
3030
- store
3131
- rest
@@ -34,6 +34,6 @@ spec:
3434
lifecycle: production
3535
system: car-order-system
3636
owner: operational-department
37-
apiConsumedBy: ["component:car-order-ui"]
37+
apiConsumedBy: ['component:car-order-ui']
3838
definition:
3939
$text: ./sample-api.json

tibco-examples/car-order-system-and-components/flogo-discount-calculator.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: backstage.io/v1alpha1
22
kind: Component
33
metadata:
4-
name: "discount-calculator"
5-
description: "Car Discount Calculation Service"
4+
name: 'discount-calculator'
5+
description: 'Car Discount Calculation Service'
66
tags:
77
- backend
88
- data-layer
@@ -22,15 +22,15 @@ spec:
2222
lifecycle: production
2323
system: car-order-system
2424
owner: finance-department
25-
providesApis: ["car-discount-api"]
25+
providesApis: ['car-discount-api']
2626
consumesApis:
2727
- car-details-api
2828
---
2929
apiVersion: backstage.io/v1alpha1
3030
kind: API
3131
metadata:
32-
name: "car-discount-api"
33-
description: "An API that provides car discounts"
32+
name: 'car-discount-api'
33+
description: 'An API that provides car discounts'
3434
tags:
3535
- finance
3636
- rest
@@ -45,6 +45,6 @@ spec:
4545
type: openapi
4646
lifecycle: production
4747
owner: finance-department
48-
apiConsumedBy: ["component:car-order-ui"]
48+
apiConsumedBy: ['component:car-order-ui']
4949
definition:
5050
$text: ./sample-api.json

tibco-examples/car-order-system-and-components/mkdocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
site_name: "car-importer-demo"
2-
site_description: "A system to import Cars"
1+
site_name: 'car-importer-demo'
2+
site_description: 'A system to import Cars'
33

44
nav:
55
- Introduction: index.md

0 commit comments

Comments
 (0)