As found in this forum post, it appears that angular-meteor-auth is suffering from the same issue as momentjs:moment@2.15.2 did in meteor/meteor#7958 where its devDependencies were packaged into the Atmosphere package, most likely because they were present in the directory when it was meteor publish'd?
This is making the package particularly large (11MB instead) and also preventing it from running on Windows (and probably Linux too) since the fsevents package is included.
$ ls -lh angular-meteor-auth-*.tgz
-rw-r--r--@ 1 jesse staff 3.2K Dec 9 18:42 angular-meteor-auth-1.0.3-os+web.browser+web.cordova.tgz
-rw-r--r--@ 1 jesse staff 11M Dec 9 18:42 angular-meteor-auth-1.1.0-os+web.browser+web.cordova.tgz
-rw-r--r--@ 1 jesse staff 11M Dec 9 18:42 angular-meteor-auth-1.1.1-os+web.browser+web.cordova.tgz
$ ls -1 angular-meteor-auth-1.1.1/npm/node_modules/ | grep fsevents
fsevents
I think it just needs to be republished from a clean checkout. 😄
As found in this forum post, it appears that
angular-meteor-authis suffering from the same issue asmomentjs:moment@2.15.2did in meteor/meteor#7958 where itsdevDependencieswere packaged into the Atmosphere package, most likely because they were present in the directory when it wasmeteor publish'd?This is making the package particularly large (11MB instead) and also preventing it from running on Windows (and probably Linux too) since the
fseventspackage is included.$ ls -lh angular-meteor-auth-*.tgz -rw-r--r--@ 1 jesse staff 3.2K Dec 9 18:42 angular-meteor-auth-1.0.3-os+web.browser+web.cordova.tgz -rw-r--r--@ 1 jesse staff 11M Dec 9 18:42 angular-meteor-auth-1.1.0-os+web.browser+web.cordova.tgz -rw-r--r--@ 1 jesse staff 11M Dec 9 18:42 angular-meteor-auth-1.1.1-os+web.browser+web.cordova.tgz$ ls -1 angular-meteor-auth-1.1.1/npm/node_modules/ | grep fsevents fseventsI think it just needs to be republished from a clean checkout. 😄