After separating out the server side code into a separate repository, the file "runtime.js" should be moved into the "main.js" file within the Chiasm RequireJS package. This way, users of the library will see
require(["chiasm"], function(Chiasm){
var chiasm = Chiasm(someDiv);
});
rather than what it is currently:
require(["chiasm/runtime"], function(Runtime){
var runtime = Runtime(someDiv);
});
After separating out the server side code into a separate repository, the file "runtime.js" should be moved into the "main.js" file within the Chiasm RequireJS package. This way, users of the library will see
rather than what it is currently: