Scripts
Start the development application
Using webpack with reference to folder src/dev.
npm start
// OR
yarn start
Build the library
Using babel with reference to folder src/lib.
npm build
// OR
yarn build
Build the development application
Using webpack with reference to folder src/dev.
npm build:app
// OR
yarn build:app
Test the project
Using jest with reference to folder src/lib. Is possible edit the test config in package.json.
npm test
// OR
yarn test