Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
chore: Rename master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroschmitz committed Jan 28, 2021
1 parent 9b9abc2 commit e71be59
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ We try to enforce these rules for the following reasons:

Before submitting a pull request, please make sure the following is done:

- [Fork](https://help.github.com/en/articles/fork-a-repo) the repository and create your branch from `master`.
- [Fork](https://help.github.com/en/articles/fork-a-repo) the repository and create your branch from `main`.
- Example: `feature/my-awesome-feature` or `fix/annoying-bug`;
- Run `yarn` in the repository root;
- If you’ve fixed a bug or added code that should be tested, **add tests**;
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- If this is your first time, please read our contribution guidelines: (https://github.com/unform/unform/blob/master/.github/CONTRIBUTING.md) -->
<!-- If this is your first time, please read our contribution guidelines: (https://github.com/unform/unform/blob/main/.github/CONTRIBUTING.md) -->

<!-- Verify first that your pull request is not already proposed -->

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div align="center">

[![npm](https://img.shields.io/npm/v/@unform/core.svg?color=%237159c1)](https://www.npmjs.com/package/@unform/core)<space><space>
[![Coverage Status](https://coveralls.io/repos/github/unform/unform/badge.svg?branch=master&color=%237159c1)](https://coveralls.io/github/unform/unform?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/unform/unform/badge.svg?branch=main&color=%237159c1)](https://coveralls.io/github/unform/unform?branch=main)

</div>

Expand Down
23 changes: 12 additions & 11 deletions docs/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
siteImage: `/og/banner.png`,
siteLanguage: `en`,
basePath: `/`,
themeColor: `#8257E6`,
themeColor: `#8257E6`
},
plugins: [
{
Expand All @@ -18,7 +18,8 @@ module.exports = {
docsPath: `src/docs`,
githubUrl: `https://github.com/unform/unform`,
baseDir: `docs/`,
},
branch: `main`
}
},
{
resolve: `gatsby-plugin-manifest`,
Expand All @@ -28,22 +29,22 @@ module.exports = {
start_url: `/`,
background_color: `#8257E6`,
display: `standalone`,
icon: `static/favicon.png`,
},
icon: `static/favicon.png`
}
},
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `UA-99997611-8`,
},
trackingId: `UA-99997611-8`
}
},
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://unform.dev`,
},
siteUrl: `https://unform.dev`
}
},
`gatsby-plugin-offline`,
],
};
`gatsby-plugin-offline`
]
}

0 comments on commit e71be59

Please sign in to comment.