forked from visgl/deck.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce React emphasisis in docs. Miminize top README, add congributin…
…g.md (visgl#1851)
- Loading branch information
Showing
9 changed files
with
113 additions
and
163 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
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,44 @@ | ||
# Contributing | ||
|
||
PRs and bug reports are welcome, and we are actively opening up the deck.gl roadmap to facilitate for external contributors. | ||
|
||
|
||
## Practicalities | ||
|
||
Note that you once your PR is about to be merged, you will be asked to register as a contributor by filling in a short form. | ||
|
||
|
||
## Developer documentation | ||
|
||
Developer documentaion is available [here](https://github.com/uber/deck.gl/tree/master/dev-docs). We are ready to prepare additional documentation if requested by contributors. | ||
|
||
|
||
## Developing deck.gl | ||
|
||
The **master** branch is the active development branch. | ||
|
||
```bash | ||
npm run bootstrap | ||
npm test | ||
npm start # See note below | ||
``` | ||
|
||
Note that `npm start` in the main directory actually runs `examples/layer-browser`. | ||
|
||
|
||
### Node Version Requirement | ||
|
||
Running deck.gl as a dependency in another project (e.g. via `npm i deck.gl`) requires Node `4.x` or higher. Building deck.gl from source has a dependency on Node `8.x` or higher. Either upgrade to a supported version, or install something like [nvm](https://github.com/creationix/nvm) to manage Node versions. | ||
|
||
|
||
### Install yarn | ||
|
||
We use [yarn](https://yarnpkg.com/en/docs/install) to manage packages to install deck.gl | ||
|
||
Note: on MacOS it is often convenient to install yarn with brew | ||
|
||
```bash | ||
brew update | ||
brew install yarn | ||
|
||
``` |
Oops, something went wrong.