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
This library has a dependency on node stream, node crypto and node url modules. When used in my project I was forced to provide fallbacks using Webpack.
Is there any way we can remove these dependencies @mcoqblin-hiptest? They seem to be deps on atlassian-jwt package.
The text was updated successfully, but these errors were encountered:
Unfortunately I'm not sure we can do much. Webpack 5 does not provide polyfills for core node modules anymore. AP.context.getToken requires JWT, so even without atlassian-jwt we will still need crypto and stream.
I'm not sure about url. It is used by atlassian-jwt but I think it is used for QSH which we do not use. The dev server of Fake AP itself works without it.
Do you know which AP methods require url? Or does your build fail without event using it?
By the way you can provide these polyfill only in development and test environments in Webpack.
This library has a dependency on
node stream
,node crypto
andnode url
modules. When used in my project I was forced to provide fallbacks using Webpack.Is there any way we can remove these dependencies @mcoqblin-hiptest? They seem to be deps on
atlassian-jwt
package.The text was updated successfully, but these errors were encountered: