Skip to content

Building the extension

Avery Crespi edited this page Nov 5, 2020 · 4 revisions

This page explains how to build the VTT Bridge extension on your local machine.

Requirements: Git, Yarn

# Clone the repository
git clone https://github.com/averycrespi/vtt-bridge.git && cd vtt-bridge

# Install dependencies
yarn

# Install build tools
yarn global add parcel web-ext

# Build the extension package
yarn build

Build notes:

  • The KNOWN_LIBRARY notice is caused by polyfill.js and can be safely ignored.
  • The UNSAFE_VAR_ASSIGNMENT warnings are caused by Parcel and can be safely ignored.
  • The Accessing non-existent property '*' of module exports inside circular dependency warnings are caused by certain Node dependencies and can be safely ignored.

Clone this wiki locally