My goal is to use browserify for the following:
var angular = require('angular');
angular.etc ...
The Angular page on npmjs.org suggests using exposify, but I prefer sticking with the browserify method, where I can have a single bundle without needing extra scripts or globals.
Is there a way to achieve this? Are there any specific transforms or workarounds that would allow me to treat Angular as a CommonJS module without exposing globals in other sources?