Chris

Results 5 comments of Chris

I ran into the exact same issue and realized I forgot to append "-loader". Try changing 'ng-annotate' to 'ng-annotate-loader': ` use: [ { loader: 'ng-annotate-loader', options: { es6: true }...

Correct, it's working with webpack 2.1.0-beta.27. I didn't flag anything with 'ngInject' and ended up setting `explicitOnly : false` under the options for `ng-annotate-loader`. I just verified my outputted bundle...

I'm using the same preset. Here are the contents of my `.bablerc` file: `{ "presets": [ ["es2015", { "modules": false }] ], "plugins": [["angularjs-annotate", { "explicitOnly" : false}]] }` Which...

Look at that, you're right. For what it's worth, I just yanked this loader and as noted, I'm letting `"babel-plugin-angularjs-annotate"` handle the annotation.

I was previously animating visibility of adjacent elements using "ngIf" and in some cases "ngShow". Flipping over to "ngSwitch" resolved the flickering issue in 1.4.5+ (everything worked fine in 1.4.4)....