To contribute just make a PR into the main
branch!
- Click
Fork
button in the top right of the GitHub page - Develop your feature and push to your fork
- Click the
Pull requests
tab and then theNew pull request
in your fork - Set the base repo and branch to be
braxtonhall/library-thing
andmain
- Click
Create pull request
yarn install
: Gathers all dependencies. This should be run at the start of development on a new clone in the root.yarn build
: Compiles the.ts
files to.js
files in theextension/js/
dir.yarn watch
: Runs a new build any time any file changes are detected and hot reloads the extension and page.yarn lint
: Lints theextension/ts/
files.yarn fix
: Fixes all automatically fixable lint errors in theextension/ts/
files.yarn pretty
: Prettifies theextension/ts/
files.yarn test
: Runs all*.spec.ts
files thetest/
directory.