To start updating Chocolat you need to install its dependencies :
1
npm install
Copied!
The source files are in the ./src/ folder
You can find a demo in the ./demo/ folder,
To automatically build while you code you can run :
1
npm run dev
Copied!
Run the test suite to ensure all tests are passing.
If you are adding a new feature, please consider writing a test too.
Tests are in the ./test/ folder
1
npm run test
Copied!
You may run prettier to fix all the code style errors :
1
npm run prettier
Copied!
When you are satisfied with your modification you can run :