Next-Plate has ready-to-use scripts, take a look:
⌨️ Development
Once all dependencies have been installed, you can run the local development server:
bash$ npm run dev # or $ yarn dev
Now just code!
🖥️ Production
After applying the changes, you can generate a build to test and/or deploy to your production environment.
Make a production build:
bash$ npm run build # or $ yarn build
And then run the build:
bash$ npm start # or $ yarn start
More scripts
Lint
bash$ npm run lint # or $ yarn lint
Lint and Fix
bash$ npm run lint:fix # or $ yarn lint:fix
Test
bash$ npm run test # or npm run test:watch # or $ yarn test # or yarn test:watch
Type Checking
bash$ npm run type-check # or $ yarn type-check
Format
bash$ npm run format # or $ yarn format
Interactive Update Tool
bash$ npm run up # or $ yarn up
Update All Dependencies
bash$ npm run up-latest # or $ yarn up-latest
Release as Major Version
bash$ npm run release-as-major # or $ yarn release-as-major
Release as Minor Version
bash$ npm run release-as-minor # or $ yarn release-as-minor
Release as Patch Version
bash$ npm run release-as-patch # or $ yarn release-as-patch
Publish Release
bash$ npm run push-release # or $ yarn push-release
Get Updates From Remote and Maintain Current Changes
bash$ npm run pull # or $ yarn pull