An official starter kit for React-JavaScript applications created with @shaizei/cli.
Here's a brief summary of the commands that you can run inside the applications
created with @shaizei/cli
.
Note that these commands are the ones that are available by default, you can extend the applications in whatever way you want and add many more scripts of your choice.
In order to start the development server, run the following command:
shaizei develop
In order to generate an optimized production bundle of your application, run the following command:
shaizei build
In order to run linting on all the files in src/
directory, run the following
command:
shaizei lint
In order to fix common linting errors, run the following command:
shaizei lint-fix
In order to analyze the production bundles, run the following command:
shaizei analyze
In order to serve the production bundle locally, run the following command:
shaizei serve
In order to run Prettier throughout the codebase and to find the potential violations of Prettier rules, run the following command:
shaizei prettier
In order to fix Prettier formatting issues from command-line, run the following command:
shaizei prettier-fix
ESLint can also do the part of job that Prettier is doing, in order to find if there are any issues among ESLint & Prettier integration, run the following command:
shaizei eslint-prettier-integration
shaizei
is a toolkit for building & maintaining futuristic React apps.
Read more about it by checking the official repository.