Build Tools
Learn how to use Material’s included npm scripts to start a local server, compile source code, run tests, and more.
# | Name | Usage | Description | Read More |
---|---|---|---|---|
1 | install | yarn install or npm install | This command installs a package, and any other packages that it depends on. | Read more |
2 | start | yarn dev or npm run dev | This will determinate the start of your development server. | Read more |
3 | build | yarn build or npm run build | This will create a build directory with a production build of your app. | Read more |
4 | lint | yarn test or npm run test | This sets up Next.js built-in ESLint configuration | Read more |
5 | install:clean | yarn install:clean or npm install:clean | This command will remove the node_modules folder and package_lock.json file, and will install a fresh copy of them. (NOTE: this command only works on linux based terminals) | Read more |
6 | install:peer-deps | yarn install:peer-deps or npm run install:peer-deps | This command is fixing the peer dependencies issue when installing the dependencies using npm. | Read more |