Helps keep your development bundle light for compilation.
npm i -g phaserify
phaserify [dest_dir]
Bundle phaser-ce and place the phaser-bundle.js in the working directory:
phaserify
Bundle and place in a specific directory (relative to the working path):
phaserify dist
You can include your phaser-bundle.js along with your bundle.js:
...
<script src='./phaser-bundle.js'></script>
<script src='./bundle.js'></script>
...