The fs-extra module is meant to be used server side only.
Currently loading of our webapp is broken on IE11 (no login screen! direct crash with syntax error).
The syntax error is caused by fs-extra using modern JS syntax.
This is caused by this commit (line 172):
c2b13df#diff-975ec4aee0359bc33165e3557fa1c058R172
Protocol document generation should not deploy fs-extra to the client.
We solved this with normal files attachments by putting all code that uses fs-extra to a server-side only library method that is globally available on server side without importing stuff. Importing leads to client-depolyment. Meteor logic. :-(
The fs-extra module is meant to be used server side only.
Currently loading of our webapp is broken on IE11 (no login screen! direct crash with syntax error).
The syntax error is caused by fs-extra using modern JS syntax.
This is caused by this commit (line 172):
c2b13df#diff-975ec4aee0359bc33165e3557fa1c058R172
Protocol document generation should not deploy fs-extra to the client.
We solved this with normal files attachments by putting all code that uses fs-extra to a server-side only library method that is globally available on server side without importing stuff. Importing leads to client-depolyment. Meteor logic. :-(