-
-
Notifications
You must be signed in to change notification settings - Fork 943
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into en_product_names
- Loading branch information
Showing
75 changed files
with
2,053 additions
and
1,853 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# These owners will be the default owners for everything in the repo. | ||
# Unless a later match takes precedence, @faker-js/maintainers will | ||
# Unless a later match takes precedence, @faker-js/maintainers will | ||
# be requested for review when someone opens a pull request. | ||
|
||
* @faker-js/maintainers | ||
* @faker-js/maintainers | ||
|
||
# ================================================ | ||
# Docs owners ... | ||
# ================================================ | ||
|
||
/docs/ @faker-js/maintainers-docs | ||
netlify.toml @faker-js/maintainers-docs | ||
README.md @faker-js/maintainers-docs @faker-js/maintainers | ||
CONTRIBUTING.md @faker-js/maintainers-docs | ||
/docs/ @faker-js/maintainers-docs @faker-js/maintainers | ||
netlify.toml @faker-js/maintainers-docs @faker-js/maintainers | ||
README.md @faker-js/maintainers-docs @faker-js/maintainers | ||
CONTRIBUTING.md @faker-js/maintainers-docs @faker-js/maintainers | ||
|
||
# ================================================ | ||
# CODEOWNERS owners ... | ||
# ================================================ | ||
|
||
/.github/CODEOWNERS @faker-js/maintainers | ||
/.github/CODEOWNERS @faker-js/maintainers |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
editLink: false | ||
--- | ||
|
||
# Announcements | ||
|
||
- [2022-01-14 - An update from the Faker team](./announcements/2022-01-14) |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Team | ||
--- | ||
|
||
<script setup> | ||
import TeamPage from './team/TeamPage.vue' | ||
</script> | ||
|
||
<TeamPage /> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export interface Member { | ||
readonly name: string; | ||
readonly github: string; | ||
readonly gitlab?: string; | ||
readonly twitter?: string; | ||
readonly roles: readonly string[]; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<script lang="ts" setup> | ||
import type { Member } from './TeamMember'; | ||
defineProps<{ member: Member }>(); | ||
</script> | ||
|
||
<template> | ||
<div class="TeamMember"> | ||
<div class="avatar"> | ||
<img :src="'https://github.com/' + member.github + '.png'" width="120" /> | ||
</div> | ||
<div class="info"> | ||
<div class="name"> | ||
<b>{{ member.name }}</b> | ||
</div> | ||
<div class="socials"> | ||
<a :href="'https://github.com/' + member.github"> | ||
<img | ||
src="https://img.icons8.com/ios-glyphs/344/github.png" | ||
alt="GitHub" | ||
title="GitHub" | ||
width="32" | ||
/> | ||
</a> | ||
<a v-if="member.gitlab" :href="'https://gitlab.com/' + member.gitlab"> | ||
<img | ||
src="https://img.icons8.com/color/344/gitlab.png" | ||
alt="GitLab" | ||
title="GitLab" | ||
width="32" | ||
/> | ||
</a> | ||
<a | ||
v-if="member.twitter" | ||
:href="'https://twitter.com/' + member.twitter" | ||
> | ||
<img | ||
src="https://img.icons8.com/color/344/twitter.png" | ||
alt="Twitter" | ||
title="Twitter" | ||
width="32" | ||
/> | ||
</a> | ||
</div> | ||
<div v-if="member.roles?.length" class="roles"> | ||
<span>Roles: </span> | ||
<template v-for="(role, index) in member.roles"> | ||
<i>{{ role }}</i> | ||
<span v-if="index < member.roles.length - 1">, </span> | ||
</template> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.TeamMember { | ||
padding: 0.5em; | ||
display: flex; | ||
align-items: center; | ||
} | ||
.TeamMember .avatar { | ||
flex: 0 0 120px; | ||
margin-right: 1em; | ||
} | ||
.TeamMember .avatar img { | ||
border-radius: 50%; | ||
} | ||
.TeamMember .roles i { | ||
white-space: nowrap; | ||
} | ||
</style> |
Oops, something went wrong.