Skip to content

Commit

Permalink
added opencollective contribution link
Browse files Browse the repository at this point in the history
  • Loading branch information
JustFly1984 committed May 5, 2022
1 parent 8759a07 commit dc6f2e9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ Inside root folder you will find packages:
4. gatsby-example [https://github.com/gatsbyjs/gatsby/issues](https://github.com/gatsbyjs/gatsby/issues)
5. storybook [https://github.com/storybooks/storybook](https://github.com/storybooks/storybook) - for visual testing of our components

Current version of TSDX has issue on running with node.js above 13.3.0
You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
2 changes: 2 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Issue template

You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)

If you want to ask question, please ask it in Github Discussions, [Spectrum.chat](https://spectrum.chat/react-google-maps) or [Slack channel](https://join.slack.com/t/react-google-maps-api/shared_invite/enQtODc5ODU1NTY5MzQ4LTBiNTYzZmY1YmVjYzJhZThkMGU0YzUwZjJkNGJmYjk4YjQyYjZhMDk2YThlZGEzNDc0M2RhNjBmMWE4ZTJiMjQ)

Please do not post unformatted code into issues, and please do not ask questions. Only real issues, PR's or feature requests are allowed. Minimal reproduction in codesandbox.io is required.
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

# @react-google-maps organization root

You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)

[![npm package](https://img.shields.io/npm/v/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
[![npm downloads](https://img.shields.io/npm/dt/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
[![npm bundle size](https://img.shields.io/bundlephobia/min/@react-google-maps/api)](https://www.npmjs.com/package/@react-google-maps/api)
Expand Down Expand Up @@ -31,10 +33,9 @@ Join our [Slack channel](https://join.slack.com/t/react-google-maps-api/shared_i
- node
- yarn


### To develop localy

Fork original repo at https://github.com/JustFly1984/react-google-maps-api. Clone your fork to local directory of your choice, install dependencies, set up your API Key, and start storybook server. Following commands should do the job:
Fork original repo at <https://github.com/JustFly1984/react-google-maps-api>. Clone your fork to local directory of your choice, install dependencies, set up your API Key, and start storybook server. Following commands should do the job:

- `git clone https://github.com/YOUR_USER_NAME/react-google-maps-api.git` - clone your fork
`
Expand All @@ -48,3 +49,5 @@ Eny changes you make to src folders of contained packages, should reflect in sot
### To contribute

Create a feature/fix branch on your own fork and make pull request towards develop branch of the original repo.

You can donate or became a sponsor [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
import * as React from 'react'
import { memo } from 'react'
import info from '../img/info-circle-solid.svg'

function Info() {
return (
<div className='alert alert-info mb-4' role='alert'>
<img src={info} className='icon' alt='Info' />
Please read the{' '}
Sorry, but {' '}
<a
href='https://react-google-maps-api-docs.netlify.app/'
target='_blank'
rel='noopener noreferrer'
>
documentation
</a>{' '}
on how to implement the API.
on how to implement the API is broken and outdated. Help Required
<br />
You can donate or became a sponsor <a href="https://opencollective.com/react-google-maps-api#category-CONTRIBUTE" rel='noopener noreferrer'>here</a>
</div>
)
}

export default React.memo(Info)
export default memo(Info)
2 changes: 2 additions & 0 deletions packages/react-google-maps-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

@react-google-maps/api

You can donate or became a sponsor of the project here: [https://opencollective.com/react-google-maps-api#category-CONTRIBUTE](https://opencollective.com/react-google-maps-api#category-CONTRIBUTE)

> This library requires React v16.6 or later. To use the latest features (including hooks) requires React v16.8+. If you need support for earlier versions of React, you should check out [react-google-maps](https://github.com/tomchentw/react-google-maps)
This is complete re-write of the (sadly unmaintained) `react-google-maps` library. We thank [tomchentw](https://github.com/tomchentw/) for his great work that made possible.
Expand Down

0 comments on commit dc6f2e9

Please sign in to comment.