Skip to content

Commit 880de35

Browse files
committed
js example
1 parent 8aef846 commit 880de35

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

tests/fixtures/javascript_only_project/.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
# code/file owner is notified. Reference GitHub docs for more details:
77
# https://help.github.com/en/articles/about-code-owners
88

9+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11

22

3+

tests/fixtures/javascript_only_project/config/code_ownership.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ unowned_globs:
99
- frontend/**/node_modules/**/*
1010
- frontend/**/__generated__/**/*
1111

12+

tests/fixtures/javascript_only_project/config/teams/design.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ github:
44
owned_globs:
55
- frontend/apps/public/**/*
66

7+

tests/fixtures/javascript_only_project/config/teams/frontend.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ github:
33
team: '@FrontendTeam'
44
owned_globs: []
55

6+

tests/fixtures/javascript_only_project/frontend/apps/public/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ export default function Public() {
33
return <div>Public</div>;
44
}
55

6+

tests/fixtures/javascript_only_project/frontend/packages/dashboard/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
}
77
}
88

9+

tests/fixtures/javascript_only_project/frontend/packages/dashboard/src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ export const App = () => {
33
return <div>Dashboard</div>;
44
};
55

6+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
Design
22

3+

tests/fixtures/javascript_only_project/frontend/packages/ui-kit/src/button.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ export const Button = () => {
22
return <button>OK</button>;
33
};
44

5+

0 commit comments

Comments
 (0)