Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Throws error with Node.js 13.6 #28

Open
cmaessen opened this issue Jan 21, 2020 · 5 comments
Open

Throws error with Node.js 13.6 #28

cmaessen opened this issue Jan 21, 2020 · 5 comments

Comments

@cmaessen
Copy link

After upgrading to Node.js version 13.6 running our Gulp task with gulp-javascript-obfuscator in it throws the following error:

Error in plugin "gulp-javascript-obfuscator"
Message:
The number of constructor arguments in the derived class t must be >= than the number of constructor arguments of its base class.
Details:
domainThrown: true

Running npm install from scratch doesn't resolve this error. Works fine as soon as you switch back to Node.js 13.3.

@wwarby
Copy link

wwarby commented Feb 26, 2020

I've also run into this one when updating from Node 12.7 to 13.9, but I found that going back as far as 12.16 didn't help - I had to go back to 12.7 before the problem went away for me.

@calvaradocl
Copy link

Having the same issue while running a gulp task over a Azure Devops pipeline, any fix apart from downgrading node?

@calvaradocl
Copy link

Hi, after checking out the javascript-obfuscator repo, I found out this bug was patched out on version v0.18.8 and is caused by the "events" module (check out javascript-obfuscator/javascript-obfuscator#452)

In my case, I just made a reference to the newest version of javascript-obfuscator (0.25.2) on my npm file and the error disappeared.

@EstebanAriasG
Copy link

I can confirm that I got the same issue and was able to resolve it until using NVM to fallback to an older version of Node after a fresh install of one of my projects on my resetted laptop.

@cmaessen
Copy link
Author

cmaessen commented Mar 8, 2020

The fix is to use the command 'npm remove' for gulp-javascript-obfuscator and then do 'npm install --save gulp-javascript-obfuscator'. This forces a refresh of the libraries it is dependent on.

Adding javascript-obfuscator to your package.json might not resolve this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants