- Mock the NPM Registry for testing
Runs the app in the development mode.
Two sub scripts will came in handy from time to time:
npm start test.watch
: re-run tests on changenpm start test.coverage
: creates a coverage report atcoverage/lcov-report/index.html
Formats all sources using prettier.
- Update changelog
npm run format
npm test
- git commit -a -m "chore: prepare release`
- npm version [<newversion> | major | minor | patch] -m "chore: release"
npm run release
Put all your source code including your test files here. Test files are matched using the following regexp:
src/**/__tests__/*.{js,jsx,ts,tsx}
: matches every file within a__tests__
directory but not in child directoriessrc/**/*.{spec,test}.{js,jsx,ts,tsx}
: matches*.test.js
and*.spec.js
files; some for the other extensions