This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(script): Set ngModule to Closure namespace.
When using Closure, it is common to reference Angular module dependencies by the name property of the module. This looks like: ``` goog.provide('bar.module'); goog.require('foo.module'); bar.module = angular.module('bar.module', [foo.module.name]); ``` This change makes it possible for this kind of reference instead of having to refer to the dependent module as a string.
- Loading branch information