I just upgraded to RequireJS 2.1.1 - I have an AngularJS app I\'m loading with it. I get \"No module: app\" from angular before the main define runs.
It works fine
You need to add this js file: angular-resource.js
You should manually bootstrap angular and remove the ng-app attribute in that case since the module is not available on dom ready:
angular.bootstrap document, ['app']
at the end of your define function