Calling require.js before knockout.js throws the following message:
Uncaught ReferenceError: ko is not defined
Assuming I have knockout.js at the very top of the combined file, I have this:
<script type="text/javascript" src="/bower_components/requirejs/require.js"></script>
<script type="text/javascript">
requirejs.config({
paths: {
text: '/bower_components/text/text'
},
});
requirejs([
'/bower_components/text/text.js'
]);
</script>
<script type="text/javascript" src="/js/dist/combined.min.js"></script>