View Brew Cask Apps
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
# Installs Brew Cask apps for a new Mac OS installation | |
brew cask install google-cloud-sdk font-fira-code-nerd-font | |
brave-browser spotify visual-studio-code discord spectacle notion | |
authy firefox authy alfred nextdns zoom | |
ishowu-instant insomnia dash bartender slack | |
docker microsoft-outlook |
View github_issues_list_query.ts
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
const GITHUB_ISSUES_LIST_QUERY = gql` | |
${GITHUB_ORG_INFO_CARD_FRAGMENT} | |
${GITHUB_ISSUE_COUNT_CARD_FRAGMENT} | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query GithubIssuesListContainerQuery { | |
...GithubOrgInfoCardFragment | |
issues { | |
...GithubIssueCountCardFragment | |
pageInfo { | |
endCursor |
View github_issue_list_container_fragment_types.tsx
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
import { GithubIssueInfoCardFragment } from "../../graphql-types"; | |
interface GithubIssueInfoCardProps { | |
issueDetails: GithubIssueInfoCardFragment; | |
} |
View notifications_list_query.ts
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
import { | |
GITHUB_ISSUE_INFO_CARD_FRAGMENT, | |
GithubIssueInfoCard, | |
} from "./GithubIssueInfoCard"; | |
const NOTIFICATIONS_LIST_QUERY = gql` | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query NotificationsContainerQuery { | |
notifications { | |
totalCount |
View github_issue_list_container_fragment.tsx
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
const GITHUB_ISSUES_LIST_QUERY = gql` | |
${GITHUB_ISSUE_INFO_CARD_FRAGMENT} | |
query GithubIssuesListContainerQuery { | |
organization { | |
id | |
name | |
} | |
issues { | |
totalCount | |
pageInfo { |
View github_issue_list_container_no_fragment.tsx
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
const GITHUB_ISSUES_LIST_QUERY = gql` | |
query GithubIssuesListContainerQuery { | |
organization { | |
id | |
name | |
} | |
issues { | |
totalCount | |
pageInfo { | |
endCursor |
View test-and-release.yml
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
# .github/workflows/test-and-release.yaml | |
name: Test and Release | |
on: [push] | |
jobs: | |
test-and-release: | |
name: Run tests and release | |
runs-on: ubuntu-18.04 | |
steps: |
View publish-config-package.json
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
"publishConfig": { "access": "public", "branches": ["master"] } |
View semantic-release-version-number.json
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
"version": "0.0.0-development", |
NewerOlder