My workflow is currently using webpack, eslint, and angular. in my app.js I am requiring ng-animate as follows:
require("angular-animate/angular-animate.min");
and then add it to my app as follows:
var mainApp = angular.module("client", [
//add the components here (personal and 3rd party).
"ngAnimate",
)];
The problem is that ng-animate does not seem to be loading because when I try to animate ng-enter etc. in css and even buy taking the javascript route, it does not seem to work.
The versions of ng-animate and angular are both the same, v1.6.3. Is there something I might be doing wrong here. Is there something I need to do in eslint or webpack that might be preventing ng-animate from working?