When developing on a local machine run this
$ npm start
When ready to publish a new version. Use Semantic Versioning to determine the version number. i.e.
$ npm run prod-patch #for bug fixes, cleanup or other backwards-compatible changes $ npm run prod-minor #adding new features in a backwards compatable way $ npm run prod-major #breaking changes, including things like updating to a react version that has breaking changes
var SortableTable = require("ES/widgets/SortableTable");
......