A template repository for quick webpack config setup
Clone and cd into the template repo, then install all dependencies:
git clone git@github.com:arshjameel/js-webpack-template.git
cd js-webpack-template
npm installStart development server:
npm run devAccess the dev environment at: http://localhost:8080
Push changes to remote repository's main branch:
git add .
git commit -m "Your changes"
git push origin mainCreate a separate branch to deploy built files (first time only):
git branch gh-pagesDeploy changes:
npm run deploy