Development

June 23, 2021 ยท View on GitHub

Install all the dependencies

yarn

When running this command, a pre-commit git hook will be locally installed with husky and it will run lint-staged before every commit.

See "lint-staged" in package.json for more information.

Build the project

yarn build
yarn link
# then if your project is in the same directory as this one
cd /path/to/your/project
yarn link ../html-webpack-plugin-django

Other commands

# run the entire test suite
yarn test
# format the source code
yarn format