theatre/CONTRIBUTING.md

134 lines
4.3 KiB
Markdown
Raw Normal View History

2021-06-21 14:06:23 +02:00
# Contributing to Theatre.js
2021-10-05 13:56:42 +02:00
## The quick version
Have `node 14+` and `yarn 1.22+` installed. Then `git clone` and `yarn install`. Then `cd packages/playground` and `yarn run serve`. Happy hacking!
## The long version
2021-06-21 14:06:23 +02:00
### Prerequisites
Make sure you have [Node](https://nodejs.org/) installed at v14.0.0+
```sh
2021-10-05 13:56:42 +02:00
$ node -v
> v14.0.0
```
2021-10-05 13:56:42 +02:00
and [Yarn](https://classic.yarnpkg.com/en/) at v1.22.10+.
```sh
2021-10-05 13:56:42 +02:00
$ yarn -v
> 1.22.10
```
2021-10-05 13:56:42 +02:00
> **Note about Yarn v2**: This repo uses Yarn v2. You don't have to install yarn v2 globally. If you do have yarn 1.22.10+ installed, and `cd` into `/path/to/theatre`, yarn will automatically switch to v2. Read more about Yarn v2 [here](https://yarnpkg.com/).
### Fork, Clone & Install
2021-10-05 13:56:42 +02:00
Start by forking Theatre.js to your GitHub account. Then clone your fork and install dependencies:
```sh
2021-10-05 13:56:42 +02:00
$ git clone git@github.com:<your-user>/theatre.git
$ cd theatre
$ yarn
```
> ⚠ theatre relies on
2021-10-05 13:56:42 +02:00
> [yarn workspaces](https://yarnpkg.com/features/workspaces) so
> `npm install` will not work in this repository.
Add our repo as a git remote so you can pull/rebase your fork with our latest
updates:
2021-10-05 13:56:42 +02:00
```sh
$ git remote add upstream git@github.com:AriaMinaei/theatre.git
```
2021-10-05 13:56:42 +02:00
## Start hacking with `playground`
2021-10-05 13:56:42 +02:00
The quickest way to start tweaking things is to run the `playground` package.
```sh
$ cd ./packages/playground
$ yarn serve
```
2021-10-05 13:56:42 +02:00
The playground is a bunch of ready-made projects that you can run to experiment with Theatre.js.
2021-10-06 10:21:55 +02:00
It uses a single ESBuild config to build all of the related packages in one go, so you don't have to run a bunch of build commands separately.
2021-10-02 00:42:34 +02:00
2021-10-05 13:56:42 +02:00
Read more at [`./packages/playground/README.md`](./packages/playground/README.md).
2021-10-05 13:56:42 +02:00
## Project structure
2021-10-05 13:56:42 +02:00
* `@theatre/core` The core animation library.
* Location: [`./theatre/core`](./theatre/core)
* `@theatre/studio` The visual editor.
* Location: [`./theatre/studio`](./theatre/studio)
* `@theatre/dataverse` The reactive dataflow library.
2021-10-06 10:21:55 +02:00
* Location: [`./packages/dataverse`](./packages/dataverse)
2021-10-05 13:56:42 +02:00
* `@theatre/react` Utilities for using Theatre with React.
2021-10-06 10:21:55 +02:00
* Location: [`./packages/react`](./packages/react)
2021-10-05 13:56:42 +02:00
* `@theatre/r3f` The react-three-fiber extension.
2021-10-06 10:21:55 +02:00
* Location: [`./packages/r3f`](./packages/r3f)
2021-10-05 13:56:42 +02:00
* `playground` The quickest way to hack on the internals of Theatre. It bundles all the related packages together with one ESBuild setup.
2021-10-06 10:21:55 +02:00
* Location: [`./packages/playground`](./packages/playground)
* `examples/` * A bunch of examples, using Theatre with [parcel](https://parceljs.org), [Create react app](create-react-app.dev), etc.
* `*/devEnv`: Each package may have a `devEnv` folder that holds dev-related files, like bundler configuration, lint config, etc.
2021-10-02 00:42:34 +02:00
### Commands
#### Root commands
2021-10-06 10:21:55 +02:00
These commands are available at the root workspace:
```sh
2021-10-05 13:56:42 +02:00
# Run the playground. It's a shortcut for `cd ./playground; yarn run serve`
yarn playground
2021-10-05 13:56:42 +02:00
# Run all the tests.
yarn test
2021-10-05 13:56:42 +02:00
# Run tests in watch mode.
yarn test --watch
2021-10-05 13:56:42 +02:00
# Typecheck all the packages
yarn typecheck
2021-10-05 13:56:42 +02:00
# Run eslint on the repo
yarn lint:all
2021-10-05 13:56:42 +02:00
# Run eslint and auto fix
yarn lint:all --fix
```
2021-10-06 10:21:55 +02:00
> Yarn passes all extra parameters to the internal scripts. So, for example, if you wish to run the tests in watch mode, you can run `yarn test --watch`.
## Documentation
2021-10-05 13:56:42 +02:00
The libraries come bundled with typescript definitions with TSDoc comments. You can explore the API if your editor is configured to display TSDoc comments.
Other references
- [Documentation: https://docs.theatrejs.com](https://docs.theatrejs.com/getting-started/)
- [Video: Theatre.js Crash Course](https://www.youtube.com/watch?v=icR9EIS1q34)
## Testing
2021-10-05 13:56:42 +02:00
Run tests during development with `yarn test --watch` to re-run tests on file changes.
### Examples
2021-10-06 10:21:55 +02:00
Other than `playground`, the [`examples/`](./examples) folder contains a few small projects using the bundled version of the library. This means that unlike `playground`, you have to build all the packages before running the examples.
## Releasing
2021-10-06 10:21:55 +02:00
Currently all packages (except for [`@theatre/r3f`](./packages/r3f/)) share the same version number. In order to publish to npm, you can run the `release` script from the root of the repo:
```sh
$ yarn release x.y.z # npm publish version x.y.z
$ yarn release x.y.z-dev.w # npm publish version x.y.z-dev.w and tag it as "dev"
$ yarn release x.y.z-rc.w # npm publish version x.y.z-rc.w and tag it as "rc"
```