angulartics-mixpanel icon indicating copy to clipboard operation
angulartics-mixpanel copied to clipboard

Bower Main file target

Open fhenderson opened this issue 9 years ago • 1 comments

Changing the main file target to the not minify version affects all products using this library,

I think that this should revert back to the minify version.

fhenderson avatar Nov 03 '16 10:11 fhenderson

Using the non minified libraries is preferred by most in development. It's up to your build process to minify/or use the minified content -- or you can force bower to use the minified content:

{
  "overrides": {
    "angulartics-mixpanel": {
      "main": "dist/angulartics-mixpanel.min.js"
    }
  }
}

timelf123 avatar Nov 03 '16 14:11 timelf123