Closed adnasa closed 10 years ago
Resulting accurate $templateCache output by this fix:
angular.module("unicornBeacon").run(["$templateCache", function (a) {
"use strict";
a.put("partial/hello/hello.html", "<div class=col-md-12 ng-controller=HelloCtrl></div>")
}])
Fixed in 3.2.
Hello, This issue is a continuation of the previously reported issue of grunt build
Problem Here is the problem I've found regarding grunt build.
grunt build
, our grunt configuration applies a template cache using pkg.name as the module name through the process and presents a error (see attachment 1)This results in unmatching names of ng-modules. In my case I have "unicorn-beacon" as my project name in package.json and "unicornBeacon" as my application ng-module name.
attachment 1:
Solution
underscore.string
node module to resolve this.Related issue grunt build issue
Patch coming up