Create your npm package with ESNext, Flowtype and prettier.
git clone https://github.com/withspectrum/npk-pkg.git
yarn installThe you can start writing your package using the latest ESNext features and flowtype in the src folder. When you git commit prettier will format your code.
yarn run test     # Test your package with Jest
yarn run flow     # Check your types with Flow
yarn run build    # Transpile the code with Babel
yarn run prettier # Format the codebase with prettierWe recommend using np for publishing:
# Install the np module
npm i -g np
# Publish a new version of your package!
np patchLicensed under the MIT License, Copyright ©️ 2017 Maximilian Stoiber. See LICENSE.md for more information.