Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.12 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.12 KB

Development

Contributing

To contribute just make a PR into the main branch!

  1. Click Fork button in the top right of the GitHub page
  2. Develop your feature and push to your fork
  3. Click the Pull requests tab and then the New pull request in your fork
  4. Set the base repo and branch to be braxtonhall/library-thing and main
  5. Click Create pull request

Requirements

Scripts

  • 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 the extension/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 the extension/ts/ files.
  • yarn fix: Fixes all automatically fixable lint errors in the extension/ts/ files.
  • yarn pretty: Prettifies the extension/ts/ files.
  • yarn test: Runs all *.spec.ts files the test/ directory.