score:0

there is a gulp command to run a server (gulp server, which serves the root directory on http://localhost:8000) and an other to watch any changes made to the source files to then re-build a bundle js file (gulp default). i ran both these in separate terminals. these are not documented (i found them looking at the gulpfile.js).

the samples, such as http://localhost:8000/samples/charts/bar/vertical.html, include the uncompressed bundle that gets automatically changed every time a modification is made in any source file:

<script src="../../../dist/chart.bundle.js"></script>

the bundle takes around 5secs to complete and after that reloading the sample page makes you see the changes.

this is not exactly what i was looking for, but for making small changes it should do just fine.


Related Query

More Query from same tag