Skip to content

Latest commit

 

History

History
145 lines (93 loc) · 7.08 KB

CONTRIBUTING.md

File metadata and controls

145 lines (93 loc) · 7.08 KB

Contributing Guidelines and Workflow

Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community.

Please read through this document before editing the code base, submitting any issues, or submitting pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution.

In this document:


Reporting Bugs or Feature Requests

We welcome you to use the GitHub issue tracker to report bugs or suggest features.

When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:

  • A reproducible test case or series of steps
  • The version of our code being used
  • Any modifications you've made relevant to the bug
  • Anything unusual about your environment or deployment

Reporting Security Issues

If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our vulnerability reporting page. Please do not create a public GitHub issue.

Finding Contributions to Work On

Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.

Code of Conduct

This project has adopted the Amazon Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Licensing

See the LICENSE file for our project's licensing. We will ask you to confirm the licensing of your contribution.

We may ask you to sign a Contributor License Agreement (CLA) for larger changes.


Prerequisites

Initial Setup

  1. Clone this repository.
  2. From the root directory of the repository run:
npm install

Building

To build all packages in the repository, run:

npm run build

Distributable build artifacts will be generated into a dist/ directory within each package folder.

Testing

This repository has three methods of testing: unit tests, integration tests, and example applications.

Unit tests and integration tests for each package can be found under <package name>/test/.

Example applications for Babylon.js can be found in the packages/demos-babylon/ directory. An example application for Three.js can be found in the packages/amazon-sumerian-hosts-three/examples/ directory.

Unit Tests

If you've already built the packages, you can execute the unit tests for all packages using the command:

npm run test

Alternately, you can both build and run the unit tests with a single command:

npm run build-test

Integration Tests

Integration tests for each package are found under <package name>/test/integration_tests/. The steps for configuring and running integration tests differ for each package. Details can be found in the README within each package's test/integration_test/ folder.

Example Applications

See the README within packages/demos-babylon/ for instructions on how to set up and run the included Babylon.js demos.

See the README within packages/amazon-sumerian-hosts-three/ for instructions on how to set up and run the included Three.js example.

Submitting Pull Requests

Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:

  1. You are working against the latest source on the mainline2.0 branch.
  2. You check existing open and recently merged pull requests to make sure someone else hasn't addressed the problem already.
  3. You open an issue to discuss any significant work - we would hate for your time to be wasted.

To send us a pull request, please:

  1. Fork the repository.
  2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
  3. Ensure local tests pass.
  4. Commit to your fork using clear commit messages.
  5. Send us a pull request, answering any default questions in the pull request interface.
  6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.

GitHub provides additional documentation on forking a repository and creating a pull request.


Publishing to NPM

The @amazon-sumerian-hosts/core, @amazon-sumerian-hosts/babylon, and @amazon-sumerian-hosts/three packages are all published and distributed via the npmjs.com registry. To publish a new version of the packages to the NPM registry, follow these steps...

  1. Update package.json with a new version number using semantic versioning. All of the packages in the repo should always share the same version number, so ensure that updates have been made to the package.json files in the following directories:
    1. The root of the mono repository
    2. amazon-sumerian-hosts-babylon
    3. amazon-sumerian-hosts-core
    4. amazon-sumerian-hosts-three
    5. demos-babylon
  2. Make sure to run npm install to regenerate the package-lock.json file.
  3. Create a new release using the GitHub.com console. See previous releases for reference.
    1. In the release creation form, create a new repository tag labeling it using the package version number prefixed with "v". Example: "v2.1.3"
    2. Set the target of the release to the mainline2.0 branch.
    3. Set the title of the release to match the tag name. Example: "v2.1.3"
    4. In the release description field, add a heading in the form "Host Release {version number} - {Reason for Release}". Example: "Host Release 1.3.1 - Bug Fixes"
    5. Append all significant changes as bullet points.
  4. Click "Publish release". This will automatically trigger a GitHub Action that publishes the release to the NPM registry.
  5. Validate the GitHub properly releases to NPM through Actions tab.