You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As found in this forum post, it appears that angular-meteor-auth is suffering from the same issue as momentjs:[email protected] 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. 😄
The text was updated successfully, but these errors were encountered:
Couldn't deploy my app anymore after doing meteor update to get the latest accounts-facebook because angular-meteor-auth was breaking deployment on linux.
As found in this forum post, it appears that
angular-meteor-auth
is suffering from the same issue asmomentjs:[email protected]
did in meteor/meteor#7958 where itsdevDependencies
were 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
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. 😄
The text was updated successfully, but these errors were encountered: