Skip to content

Latest commit

 

History

History
173 lines (113 loc) · 4.31 KB

CONTRIBUTING.md

File metadata and controls

173 lines (113 loc) · 4.31 KB

Contributing

Thank you for your interest in contributing to this library! Contributions are very appreciated.

If you want help or mentorship, reach out to us in a GitHub issue, or over Matrix in source-map on mozilla.org and introduce yourself.


Table of Contents

Filing Issues

If you are filing an issue for a bug or other misbehavior, please provide:

  • A test case. The more minimal the better, but sometimes a larger test case cannot be helped. This should be in the form of a gist, node script, repository, etc.

  • Steps to reproduce the bug. The more exact and specific the better.

  • The result you expected.

  • The actual result.

Building From Source

Install Node.js 12 or greater and then run

$ git clone https://github.com/mozilla/source-map.git
$ cd source-map/
$ npm install

Next, run

$ npm run build

This will create the following files:

  • dist/source-map.js - The plain browser build.

Submitting Pull Requests

Make sure that tests pass locally before creating a pull request.

Use a feature branch and pull request for each change, with logical commits. If your reviewer asks you to make changes before the pull request is accepted, fixup your existing commit(s) rather than adding follow up commits, and then force push to the remote branch to update the pull request.

Running Tests

The test suite is written for node.js. Install node.js 12 or greater and then run the tests with npm test:

$ npm test
> source-map@0.7.3 test /Users/fitzgen/src/source-map
> node test/run-tests.js


137 / 137 tests passed.

Writing New Tests

To add new tests, create a new file named test/test-your-new-test-name.js and export your test functions with names that start with "test", for example:

exports["test issue #123: doing the foo bar"] = function (assert) {
  ...
};

The new tests will be located and run automatically when you run the full test suite.

The assert argument is a cut down version of node's assert module. You have access to the following assertion functions:

  • doesNotThrow

  • equal

  • ok

  • strictEqual

  • throws

(The reason for the restricted set of test functions is because we need the tests to run inside Firefox's test suite as well and Firefox has a shimmed version of the assert module.)

There are additional test utilities and helpers in ./test/util.js which you can use as well:

var util = require("./util");

Checking code coverage

It's fun to find ways to test lines of code that aren't visited by the tests yet.

$ npm run coverage
$ open coverage/index.html

This will allow you to browse to red sections of the code that need more attention.

Updating the lib/mappings.wasm WebAssembly Module

Ensure that you have the Rust toolchain installed:

$ curl https://sh.rustup.rs -sSf | sh

The wasm32-unknown-unknown target is nightly-only at the time of writing. Use rustup to ensure you have it installed:

$ rustup toolchain install nightly
$ rustup target add wasm32-unknown-unknown --toolchain nightly

Move to wasm sources folder:

$ cd wasm-mappings/

Make sure the crate's tests pass:

$ cargo test

Ensure that you have the following wasm post-processing tools installed:

(These dependencies should automatically be installed by cargo)

Build Rust crate as a .wasm file:

$ cd source-map-mappings-wasm-api/
$ ./build.py -o ../../lib/mappings.wasm

See further information in [wasm-mappings/CONTRIBUTING.md].