1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| export CI=false yarn install npm run build
"scripts": { "start": "craco start", "build": "CI=false && craco build", "test": "craco test", "eject": "react-scripts eject", "lint": "eslint .", "lint:fix": "eslint --fix", "format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc" },
|