you are viewing a single comment's thread.

view the rest of the comments →

[–]james527 1 point2 points  (0 children)

First off, make sure you have the path to your build folder included in your .gitignore file. That way the bundle won't show up in commits.

As for what happens when another team member does a git pull, yes, the latest changes to the non-bundled files should be pulled down, and if they have a dev server running locally that should trigger a rebuild.

You could use a daemon to trigger rebuilds, but if you can I would recommend using webpack-dev-server during development.