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
Environment
Provide version numbers for the following components (information can be retrieved by running tns info in your project folder or by inspecting the package.json of the project):
CLI: 6.8.0
Cross-platform modules: 6.5.15
Android Runtime: 6.5.3
iOS Runtime: 6.5.2
Describe the bug
After updating the node_modules in my project including js-base64, starting the app resulted in an exception on trying to require the module buffer, which was never anywhere explicitly required.
According to the author (dankogai/js-base64#126 (comment)) the new version does check for existence of the Buffer object to maybe use it if available.
Expected behavior
Either do not add the require('buffer') or add buffer to the dependencies if not already there.
The text was updated successfully, but these errors were encountered:
Environment
Provide version numbers for the following components (information can be retrieved by running
tns info
in your project folder or by inspecting thepackage.json
of the project):Describe the bug
After updating the
node_modules
in my project includingjs-base64
, starting the app resulted in an exception on trying to require the modulebuffer
, which was never anywhere explicitly required.According to the author (dankogai/js-base64#126 (comment)) the new version does check for existence of the
Buffer
object to maybe use it if available.Expected behavior
Either do not add the
require('buffer')
or addbuffer
to the dependencies if not already there.The text was updated successfully, but these errors were encountered: