I used Middleman for a while, and it always used the Rails pipeline to enable javascript and css. Therefore, to include a javascript module called "thing.js" in the same directory, follow these steps:
//= require thing
But since Middleman 4 seems to have changed, and I cannot find any documentation. The closest I can find is this page, which shows me how to start compiling ember.js: https://middlemanapp.com/advanced/external-pipeline/
So ... if I want to upload javascript files to Middleman, do I need to minimize my own build system? Or am I missing something?
source
share