mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
700 B
700 B
Getting Started
npm install
npm run build
npm start
Getting Started (Developers)
npm install
npm run dev
- Familiarize yourself with the project's structure.
- Make sure to avoid using
npm run build
! This will remove all your dev dependencies (in order to reduce space used). Instead, usenpm run once
to compile and build in non-dev mode. - Begin developing.
Don't forget to...
- ...update the changelog and any other necessary docs.
- ...update the version numbers in
package.json
andpackage-lock.json
. - ...make sure the test suite passes by running
npm test
. - ...format the code by running
npm run format
.