-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ngtemplates task Warning: Object.keys called on non-object #56
Comments
1st off, great issue :) Well doc'd, example code, the works! I think I know the cause of this, and should have it patched shortly. Thanks! |
1st, because you are using 2nd, I found the root cause and am patching now. Thanks! |
BTW, here's the output of angular.module('TestApp').run(['$templateCache', function($templateCache) {
$templateCache.put('views/main.html',
"<div class=\"hero-unit\">\n" +
" <h1>'Allo, 'Allo!</h1>\n" +
" <p>You now have</p>\n" +
" <ul>\n" +
" <li ng-repeat=\"thing in awesomeThings\">{{thing}}</li>\n" +
" </ul>\n" +
" <p>installed.</p>\n" +
" <h3>Enjoy coding! - Yeoman</h3>\n" +
"</div>\n"
);
}]); |
Also, you're referencing
|
1st off, Thanks for fixing this so quickly. Appreciate it. 2nd, my bad, Cheers |
Trying to run
grunt build
on a Yeoman scaffolded app withgrunt-angular-templates
as one of the tasks, generates the following errors:Also gives the following error:
Running "ngtemplates:TestApp" (ngtemplates) task Warning: Object.keys called on non-object Use --force to continue.
Isolated run command:
grunt ngtemplates:TestApp
Link to TestApp below:
Github repo
I'm not sure what is causing these errors.
The text was updated successfully, but these errors were encountered: