Closed MEXdave1997 closed 5 years ago
What it your VS version?
Did you find any fix for this ? I am having the same issue
Sorry for the late reply; have been trying to find a workaround for this for a while now.
@bzoz VS is version 2019 with the 2019 AND 2017 C++ Build Tools installed, Though I WILL note that for some reason the windows-build-tools
package says I have Python 2.7 installed on my system, despite the fact that I have yet to find the executable for it on my system.
@YemiYemi no, I sadly have not after a couple of days of finding workarounds
node-gyp v5.0.0 is out with Visual Studio 2019 support. It's not yet integrated into npm so it has to be installed manually. This should do it (only need to be run once):
When trying to run the code referenced by @joaocgreis , I seem to be running into quite a few errors. I tried running them in Command Prompt, PowerShell, and Git Bash, and it seems nothing works. The error seems to come from the second line.
@RandomAnimeGamer can you paste your output here?
Sorry to keep this going, but this is what I get when trying to install node-gyp
with VS 2019 support manually:
@joaocgreis Sorry for the late reply, I didn't see this in my inbox until now. For whatever reason, it started working in Command Prompt, but not Git Bash. I will check to see if it fixes my issues with Gyp builds failing.
After checking, this still doesn't resolve my issues with Gyp builds. Here's an output log of me trying to install Discord.JS and its dependencies. Notice that every dependency that's building through Gyp is failing. While it does say it adds the packages to my project in the end, it still shows as if they were never installed in NPM, and thus it still warns me that it relies on those dependencies.
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install discord.js
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of bufferutil@^4.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of libsodium-wrappers@^0.7.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
+ discord.js@11.5.1
added 1 package from 1 contributor, updated 1 package and audited 16 packages in 0.886s
found 0 vulnerabilities
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install bufferutil
> bufferutil@4.0.1 install C:\DiscordBots\OffensiveBot - Copy\master\node_modules\bufferutil
> node-gyp-build
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of libsodium-wrappers@^0.7.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
+ bufferutil@4.0.1
added 2 packages from 2 contributors and audited 18 packages in 1.024s
found 0 vulnerabilities
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install erlpack
> erlpack@0.1.2 install C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack
> node-gyp rebuild
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch.
adler32.c
compress.c
crc32.c
deflate.c
gzclose.c
gzlib.c
gzread.c
gzwrite.c
infback.c
inffast.c
inflate.c
inftrees.c
trees.c
uncompr.c
zutil.c
win_delay_load_hook.cc
zlib.vcxproj -> C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\Release\\zlib.lib
erlpack.cc
win_delay_load_hook.cc
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(62,1): error C2660: 'v8::Value::Int32Value': function does not take 0 arguments (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2582,40): message : see declaration of 'v8::Value::Int32Value' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(71,1): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(72,1): error C3536: 'uNum': cannot be used before it is initialized (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(76,1): error C2660: 'v8::Value::NumberValue': function does not take 0 arguments (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2577,39): message : see declaration of 'v8::Value::NumberValue' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(111,1): warning C4996: 'v8::Object::Get': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3429): message : see declaration of 'v8::Object::Get' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\encoder.h(138,1): warning C4996: 'v8::Object::Get': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3429): message : see declaration of 'v8::Object::Get' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(101,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3380): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(138,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(299,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3380): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(335,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(338,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3380): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(339,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(341,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(350,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(351,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(355,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3380): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(357,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(364,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(365,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(366,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(372,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(373,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(374,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(375,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(381,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(382,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\decoder.h(383,1): warning C4996: 'v8::Object::Set': was declared deprecated (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' (compiling source file ..\js\erlpack.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(42,11): error C2065: 'Handle': undeclared identifier [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(42,24): error C2275: 'v8::Object': illegal use of this type as an expression [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3369): message : see declaration of 'v8::Object' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(42,26): error C2065: 'exports': undeclared identifier [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(42,33): error C2182: 'Init': illegal use of type 'void' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(42,35): error C2448: 'Init': function-style initializer appears to be a function definition [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\js\erlpack.cc(47,1): warning C4312: 'type cast': conversion from 'int' to 'node::addon_register_func' of greater size [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack\build\erlpack.vcxproj]
gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe` failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\lib\build.js:196:23)
gyp ERR! stack at ChildProcess.emit (events.js:209:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System Windows_NT 10.0.18362
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\(username)\\AppData\\Roaming\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\DiscordBots\OffensiveBot - Copy\master\node_modules\erlpack
gyp ERR! node -v v12.9.1
gyp ERR! node-gyp -v v5.0.3
gyp ERR! not ok
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of libsodium-wrappers@^0.7.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! erlpack@0.1.2 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the erlpack@0.1.2 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\(username)\AppData\Roaming\npm-cache\_logs\2019-09-06T21_54_32_804Z-debug.log
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install libsodium-wrappers
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
+ libsodium-wrappers@0.7.5
added 2 packages from 3 contributors and audited 21 packages in 1.315s
found 0 vulnerabilities
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install node-opus
> ref@1.3.5 install C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref
> node-gyp rebuild
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch.
binding.cc
win_delay_load_hook.cc
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(222,43): error C2661: 'v8::Value::BooleanValue': no overloaded function takes 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(253,38): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,31): error C2664: 'v8::String::Utf8Value::Utf8Value(const v8::String::Utf8Value &)': cannot convert argument 1 from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value &' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,31): message : Reason: cannot convert from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,28): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,31): error C2664: 'v8::String::Utf8Value::Utf8Value(const v8::String::Utf8Value &)': cannot convert argument 1 from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value &' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,31): message : Reason: cannot convert from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,28): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(521,38): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(550,44): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(582,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(583,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(584,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(585,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(586,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(587,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(588,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(589,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(590,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(591,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(593,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(594,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(595,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(596,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(597,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(598,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(599,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(600,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(601,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(602,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(603,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(604,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(605,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(606,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(608,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(615,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(616,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(617,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(618,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(619,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(620,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(621,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(622,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(623,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(624,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(625,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(626,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(627,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(628,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(629,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(630,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(631,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(632,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(633,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(634,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(635,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(636,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(637,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(638,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(641,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(642,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(643,1): warning C4996: 'Nan::ForceSet': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\nan\nan_maybe_43_inl.h(117): message : see declaration of 'Nan::ForceSet' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(644,1): warning C4996: 'Nan::ForceSet': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\nan\nan_maybe_43_inl.h(117): message : see declaration of 'Nan::ForceSet' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe` failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\lib\build.js:196:23)
gyp ERR! stack at ChildProcess.emit (events.js:209:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System Windows_NT 10.0.18362
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\(username)\\AppData\\Roaming\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref
gyp ERR! node -v v12.9.1
gyp ERR! node-gyp -v v5.0.3
gyp ERR! not ok
> node-opus@0.3.2 install C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus
> node-gyp rebuild
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch.
opus.c
opus_decoder.c
opus_encoder.c
opus_multistream.c
opus_multistream_encoder.c
opus_multistream_decoder.c
repacketizer.c
analysis.c
mlp.c
mlp_data.c
bands.c
celt.c
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\deps\opus\src\opus_encoder.c(655,1): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\deps\libopus.vcxproj]
celt_encoder.c
celt_decoder.c
cwrs.c
entcode.c
entdec.c
entenc.c
kiss_fft.c
laplace.c
mathops.c
mdct.c
modes.c
pitch.c
celt_lpc.c
quant_bands.c
rate.c
vq.c
CNG.c
code_signs.c
init_decoder.c
decode_core.c
decode_frame.c
decode_parameters.c
decode_indices.c
decode_pulses.c
decoder_set_fs.c
dec_API.c
enc_API.c
encode_indices.c
encode_pulses.c
gain_quant.c
interpolate.c
LP_variable_cutoff.c
NLSF_decode.c
NSQ.c
NSQ_del_dec.c
PLC.c
shell_coder.c
tables_gain.c
tables_LTP.c
tables_NLSF_CB_NB_MB.c
tables_NLSF_CB_WB.c
tables_other.c
tables_pitch_lag.c
tables_pulses_per_block.c
VAD.c
control_audio_bandwidth.c
quant_LTP_gains.c
VQ_WMat_EC.c
HP_variable_cutoff.c
NLSF_encode.c
NLSF_VQ.c
NLSF_unpack.c
NLSF_del_dec_quant.c
process_NLSFs.c
stereo_LR_to_MS.c
stereo_MS_to_LR.c
check_control_input.c
control_SNR.c
init_encoder.c
control_codec.c
A2NLSF.c
ana_filt_bank_1.c
biquad_alt.c
bwexpander_32.c
bwexpander.c
debug.c
decode_pitch.c
inner_prod_aligned.c
lin2log.c
log2lin.c
LPC_analysis_filter.c
LPC_inv_pred_gain.c
table_LSF_cos.c
NLSF2A.c
NLSF_stabilize.c
NLSF_VQ_weights_laroia.c
pitch_est_tables.c
resampler.c
resampler_down2_3.c
resampler_down2.c
resampler_private_AR2.c
resampler_private_down_FIR.c
resampler_private_IIR_FIR.c
resampler_private_up2_HQ.c
resampler_rom.c
sigm_Q15.c
sort.c
sum_sqr_shift.c
stereo_decode_pred.c
stereo_encode_pred.c
stereo_find_predictor.c
stereo_quant_pred.c
apply_sine_window_FLP.c
corrMatrix_FLP.c
encode_frame_FLP.c
find_LPC_FLP.c
find_LTP_FLP.c
find_pitch_lags_FLP.c
find_pred_coefs_FLP.c
LPC_analysis_filter_FLP.c
LTP_analysis_filter_FLP.c
LTP_scale_ctrl_FLP.c
noise_shape_analysis_FLP.c
prefilter_FLP.c
process_gains_FLP.c
regularize_correlations_FLP.c
residual_energy_FLP.c
solve_LS_FLP.c
warped_autocorrelation_FLP.c
wrappers_FLP.c
autocorrelation_FLP.c
burg_modified_FLP.c
bwexpander_FLP.c
energy_FLP.c
inner_product_FLP.c
k2a_FLP.c
levinsondurbin_FLP.c
LPC_inv_pred_gain_FLP.c
pitch_analysis_core_FLP.c
scale_copy_vector_FLP.c
scale_vector_FLP.c
schur_FLP.c
sort_FLP.c
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\deps\opus\src\opus_encoder.c(728,1): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\deps\libopus.vcxproj]
win_delay_load_hook.cc
libopus.vcxproj -> C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\Release\\libopus.lib
node-opus.cc
win_delay_load_hook.cc
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\src\node-opus.cc(41,19): warning C4099: 'OpusEncoder': type name first seen using 'struct' now seen using 'class' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\node-opus.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\src\node-opus.cc(41): message : see declaration of 'OpusEncoder' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\node-opus.vcxproj]
Creating library C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\Release\node-opus.lib and object C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\Release\node-opus.exp
node-opus.vcxproj -> C:\DiscordBots\OffensiveBot - Copy\master\node_modules\node-opus\build\Release\\node-opus.node
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: ref@1.3.5 (node_modules\ref):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: ref@1.3.5 install: `node-gyp rebuild`
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1
+ node-opus@0.3.2
added 6 packages from 11 contributors and audited 35 packages in 16.793s
found 0 vulnerabilities
(username)@(pcname) MINGW64 /c/DiscordBots/OffensiveBot - Copy/master (master)
$ npm install opusscript
> ref@1.3.5 install C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref
> node-gyp rebuild
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref>if not defined npm_config_node_gyp (node "C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\\..\..\node_modules\node-gyp\bin\node-gyp.js" rebuild ) else (node "C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\bin\node-gyp.js" rebuild )
Building the projects in this solution one at a time. To enable parallel build, please add the "-m" switch.
binding.cc
win_delay_load_hook.cc
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(222,43): error C2661: 'v8::Value::BooleanValue': no overloaded function takes 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(253,38): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,31): error C2664: 'v8::String::Utf8Value::Utf8Value(const v8::String::Utf8Value &)': cannot convert argument 1 from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value &' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,31): message : Reason: cannot convert from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(360,28): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,31): error C2664: 'v8::String::Utf8Value::Utf8Value(const v8::String::Utf8Value &)': cannot convert argument 1 from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value &' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,31): message : Reason: cannot convert from 'v8::Local<v8::Value>' to 'const v8::String::Utf8Value' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(447,28): message : No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(521,38): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(550,44): error C2660: 'v8::Value::Uint32Value': function does not take 0 arguments [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(2580,41): message : see declaration of 'v8::Value::Uint32Value' (compiling source file ..\src\binding.cc) [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(582,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(583,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(584,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(585,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(586,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(587,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(588,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(589,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(590,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(591,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(593,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(594,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(595,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(596,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(597,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(598,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(599,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(600,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(601,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(602,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(603,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(604,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(605,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(606,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(608,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(615,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(616,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(617,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(618,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(619,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(620,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(621,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(622,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(623,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(624,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(625,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(626,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(627,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(628,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(629,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(630,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(631,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(632,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(633,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(634,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(635,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(636,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(637,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(638,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(641,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(642,1): warning C4996: 'v8::Object::Set': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\Users\(username)\AppData\Local\node-gyp\Cache\12.9.1\include\node\v8.h(3371): message : see declaration of 'v8::Object::Set' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(643,1): warning C4996: 'Nan::ForceSet': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\nan\nan_maybe_43_inl.h(117): message : see declaration of 'Nan::ForceSet' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\src\binding.cc(644,1): warning C4996: 'Nan::ForceSet': was declared deprecated [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
C:\DiscordBots\OffensiveBot - Copy\master\node_modules\nan\nan_maybe_43_inl.h(117): message : see declaration of 'Nan::ForceSet' [C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref\build\binding.vcxproj]
gyp ERR! build error
gyp ERR! stack Error: `C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild.exe` failed with exit code: 1
gyp ERR! stack at ChildProcess.onExit (C:\Users\(username)\AppData\Roaming\npm\node_modules\node-gyp\lib\build.js:196:23)
gyp ERR! stack at ChildProcess.emit (events.js:209:13)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System Windows_NT 10.0.18362
gyp ERR! command "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\(username)\\AppData\\Roaming\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\DiscordBots\OffensiveBot - Copy\master\node_modules\ref
gyp ERR! node -v v12.9.1
gyp ERR! node-gyp -v v5.0.3
gyp ERR! not ok
npm WARN Invalid name: "Offensive Bot"
npm WARN discord.js@11.5.1 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself.
npm WARN discord.js@11.5.1 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself.
npm WARN master No description
npm WARN master No repository field.
npm WARN master No README data
npm WARN master No license field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: ref@1.3.5 (node_modules\ref):
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: ref@1.3.5 install: `node-gyp rebuild`
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1
+ opusscript@0.0.7
added 3 packages from 2 contributors and audited 42 packages in 3.996s
found 0 vulnerabilities
@MEXdave1997 for Powershell please run:
npm install --global node-gyp@latest
npm prefix -g | % {npm config set node_gyp "$_\node_modules\node-gyp\bin\node-gyp.js"}
@RandomAnimeGamer that is an issue with the ref
package being installed, not with node-gyp. It might be because ref is not compatible with Node 12, in which case it may work if you use Node.js LTS (generally a safer bet).
'msbuild' is not recognized as an internal or external command, operable program or batch file. 'cl' is not recognized as an internal or external command, operable program or batch file.
(?)Verbose output (from npm or node-gyp):
``` 0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\\Program Files\\nodejs\\node.exe', 1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js', 1 verbose cli 'install', 1 verbose cli 'bufferutil', 1 verbose cli 'erlpack' 1 verbose cli ] 2 info using npm@6.9.0 3 info using node@v12.2.0 4 verbose npm-session a965103cda3bfe52 5 silly install loadCurrentTree 6 silly install readLocalPackageData 7 http fetch GET 304 https://registry.npmjs.org/bufferutil 202ms (from cache) 8 http fetch GET 304 https://registry.npmjs.org/erlpack 203ms (from cache) 9 silly pacote tag manifest for bufferutil@latest fetched in 217ms 10 silly pacote tag manifest for erlpack@latest fetched in 205ms 11 timing stage:loadCurrentTree Completed in 272ms 12 silly install loadIdealTree 13 silly install cloneCurrentTreeToIdealTree 14 timing stage:loadIdealTree:cloneCurrentTree Completed in 1ms 15 silly install loadShrinkwrap 16 timing stage:loadIdealTree:loadShrinkwrap Completed in 13ms 17 silly install loadAllDepsIntoIdealTree 18 silly resolveWithNewModule bufferutil@4.0.1 checking installable status 19 silly resolveWithNewModule erlpack@0.1.2 checking installable status 20 http fetch GET 304 https://registry.npmjs.org/node-gyp-build 42ms (from cache) 21 silly pacote range manifest for node-gyp-build@~3.7.0 fetched in 45ms 22 silly resolveWithNewModule node-gyp-build@3.7.0 checking installable status 23 http fetch GET 304 https://registry.npmjs.org/nan 47ms (from cache) 24 silly pacote range manifest for nan@^2.1.0 fetched in 50ms 25 silly resolveWithNewModule nan@2.13.2 checking installable status 26 http fetch GET 304 https://registry.npmjs.org/bindings 72ms (from cache) 27 silly pacote range manifest for bindings@^1.2.1 fetched in 73ms 28 silly resolveWithNewModule bindings@1.5.0 checking installable status 29 http fetch GET 304 https://registry.npmjs.org/file-uri-to-path 40ms (from cache) 30 silly pacote version manifest for file-uri-to-path@1.0.0 fetched in 42ms 31 silly resolveWithNewModule file-uri-to-path@1.0.0 checking installable status 32 timing stage:loadIdealTree:loadAllDepsIntoIdealTree Completed in 178ms 33 timing stage:loadIdealTree Completed in 196ms 34 silly currentTree discord-bot@1.0.0 34 silly currentTree +-- async-limiter@1.0.0 34 silly currentTree +-- bufferutil@4.0.1 34 silly currentTree +-- discord.js@11.5.0 34 silly currentTree +-- long@4.0.0 34 silly currentTree +-- node-gyp-build@3.7.0 34 silly currentTree +-- prism-media@0.0.3 34 silly currentTree +-- snekfetch@3.6.4 34 silly currentTree +-- tweetnacl@1.0.1 34 silly currentTree `-- ws@6.2.1 35 silly idealTree discord-bot@1.0.0 35 silly idealTree +-- async-limiter@1.0.0 35 silly idealTree +-- bindings@1.5.0 35 silly idealTree +-- bufferutil@4.0.1 35 silly idealTree +-- discord.js@11.5.0 35 silly idealTree +-- erlpack@0.1.2 35 silly idealTree +-- file-uri-to-path@1.0.0 35 silly idealTree +-- long@4.0.0 35 silly idealTree +-- nan@2.13.2 35 silly idealTree +-- node-gyp-build@3.7.0 35 silly idealTree +-- prism-media@0.0.3 35 silly idealTree +-- snekfetch@3.6.4 35 silly idealTree +-- tweetnacl@1.0.1 35 silly idealTree `-- ws@6.2.1 36 silly install generateActionsToTake 37 timing stage:generateActionsToTake Completed in 7ms 38 silly diffTrees action count 5 39 silly diffTrees add file-uri-to-path@1.0.0 40 silly diffTrees add bindings@1.5.0 41 silly diffTrees update bufferutil@4.0.1 42 silly diffTrees add nan@2.13.2 43 silly diffTrees add erlpack@0.1.2 44 silly decomposeActions action count 42 45 silly decomposeActions fetch file-uri-to-path@1.0.0 46 silly decomposeActions extract file-uri-to-path@1.0.0 47 silly decomposeActions preinstall file-uri-to-path@1.0.0 48 silly decomposeActions build file-uri-to-path@1.0.0 49 silly decomposeActions install file-uri-to-path@1.0.0 50 silly decomposeActions postinstall file-uri-to-path@1.0.0 51 silly decomposeActions finalize file-uri-to-path@1.0.0 52 silly decomposeActions refresh-package-json file-uri-to-path@1.0.0 53 silly decomposeActions fetch bindings@1.5.0 54 silly decomposeActions extract bindings@1.5.0 55 silly decomposeActions preinstall bindings@1.5.0 56 silly decomposeActions build bindings@1.5.0 57 silly decomposeActions install bindings@1.5.0 58 silly decomposeActions postinstall bindings@1.5.0 59 silly decomposeActions finalize bindings@1.5.0 60 silly decomposeActions refresh-package-json bindings@1.5.0 61 silly decomposeActions unbuild bufferutil@4.0.1 62 silly decomposeActions remove bufferutil@4.0.1 63 silly decomposeActions fetch bufferutil@4.0.1 64 silly decomposeActions extract bufferutil@4.0.1 65 silly decomposeActions preinstall bufferutil@4.0.1 66 silly decomposeActions build bufferutil@4.0.1 67 silly decomposeActions install bufferutil@4.0.1 68 silly decomposeActions postinstall bufferutil@4.0.1 69 silly decomposeActions finalize bufferutil@4.0.1 70 silly decomposeActions refresh-package-json bufferutil@4.0.1 71 silly decomposeActions fetch nan@2.13.2 72 silly decomposeActions extract nan@2.13.2 73 silly decomposeActions preinstall nan@2.13.2 74 silly decomposeActions build nan@2.13.2 75 silly decomposeActions install nan@2.13.2 76 silly decomposeActions postinstall nan@2.13.2 77 silly decomposeActions finalize nan@2.13.2 78 silly decomposeActions refresh-package-json nan@2.13.2 79 silly decomposeActions fetch erlpack@0.1.2 80 silly decomposeActions extract erlpack@0.1.2 81 silly decomposeActions preinstall erlpack@0.1.2 82 silly decomposeActions build erlpack@0.1.2 83 silly decomposeActions install erlpack@0.1.2 84 silly decomposeActions postinstall erlpack@0.1.2 85 silly decomposeActions finalize erlpack@0.1.2 86 silly decomposeActions refresh-package-json erlpack@0.1.2 87 silly install executeActions 88 silly doSerial global-install 42 89 verbose correctMkdir C:\Users\DavidM\AppData\Roaming\npm-cache\_locks correctMkdir not in flight; initializing 90 verbose lock using C:\Users\DavidM\AppData\Roaming\npm-cache\_locks\staging-c29ef0a37584848e.lock for C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging 91 silly doParallel extract 5 92 silly extract file-uri-to-path@1.0.0 93 silly extract bindings@1.5.0 94 silly extract bufferutil@4.0.1 95 silly extract nan@2.13.2 96 silly extract erlpack@0.1.2 97 silly tarball trying file-uri-to-path@1.0.0 by hash: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 98 silly tarball trying bindings@^1.2.1 by hash: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== 99 silly tarball trying bufferutil@latest by hash: sha512-xowrxvpxojqkagPcWRQVXZl0YXhRhAtBEIq3VoER1NH5Mw1n1o0ojdspp+GS2J//2gCVyrzQDApQ4unGF+QOoA== 100 silly tarball trying nan@^2.1.0 by hash: sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw== 101 silly tarball trying erlpack@latest by hash: sha1-zx9PdV0HKOvC0RsuPJK9Lag0UU4= 102 silly extract bindings@^1.2.1 extracted to C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging\bindings-9c3a0c13 (46ms) 103 silly extract file-uri-to-path@1.0.0 extracted to C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging\file-uri-to-path-5b1b7d65 (52ms) 104 silly extract bufferutil@latest extracted to C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging\bufferutil-0934ce38 (74ms) 105 silly extract nan@^2.1.0 extracted to C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging\nan-22b80c2c (86ms) 106 timing audit submit Completed in 1717ms 107 http fetch POST 200 https://registry.npmjs.org/-/npm/v1/security/audits/quick 1717ms 108 timing audit body Completed in 1ms 109 silly extract erlpack@latest extracted to C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging\erlpack-3d6ef24b (2150ms) 110 timing action:extract Completed in 2154ms 111 silly doReverseSerial unbuild 42 112 silly unbuild bufferutil@4.0.1 113 info lifecycle bufferutil@4.0.1~preuninstall: bufferutil@4.0.1 114 info lifecycle bufferutil@4.0.1~uninstall: bufferutil@4.0.1 115 verbose unbuild rmStuff bufferutil@4.0.1 from C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules 116 info lifecycle bufferutil@4.0.1~postuninstall: bufferutil@4.0.1 117 timing action:unbuild Completed in 2ms 118 silly doSerial remove 42 119 silly remove C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bufferutil 120 timing action:remove Completed in 8ms 121 silly doSerial move 42 122 silly doSerial finalize 42 123 silly finalize C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\file-uri-to-path 124 silly finalize C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bindings 125 silly finalize C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bufferutil 126 silly finalize C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\nan 127 silly finalize C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\erlpack 128 timing action:finalize Completed in 9ms 129 silly doParallel refresh-package-json 5 130 silly refresh-package-json C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\file-uri-to-path 131 silly refresh-package-json C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bindings 132 silly refresh-package-json C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bufferutil 133 silly refresh-package-json C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\nan 134 silly refresh-package-json C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\erlpack 135 timing action:refresh-package-json Completed in 45ms 136 silly doParallel preinstall 5 137 silly preinstall file-uri-to-path@1.0.0 138 info lifecycle file-uri-to-path@1.0.0~preinstall: file-uri-to-path@1.0.0 139 silly preinstall bindings@1.5.0 140 info lifecycle bindings@1.5.0~preinstall: bindings@1.5.0 141 silly preinstall bufferutil@4.0.1 142 info lifecycle bufferutil@4.0.1~preinstall: bufferutil@4.0.1 143 silly preinstall nan@2.13.2 144 info lifecycle nan@2.13.2~preinstall: nan@2.13.2 145 silly preinstall erlpack@0.1.2 146 info lifecycle erlpack@0.1.2~preinstall: erlpack@0.1.2 147 timing action:preinstall Completed in 1ms 148 silly doSerial build 42 149 silly build file-uri-to-path@1.0.0 150 info linkStuff file-uri-to-path@1.0.0 151 silly linkStuff file-uri-to-path@1.0.0 has C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules as its parent node_modules 152 silly build bindings@1.5.0 153 info linkStuff bindings@1.5.0 154 silly linkStuff bindings@1.5.0 has C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules as its parent node_modules 155 silly build bufferutil@4.0.1 156 info linkStuff bufferutil@4.0.1 157 silly linkStuff bufferutil@4.0.1 has C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules as its parent node_modules 158 silly build nan@2.13.2 159 info linkStuff nan@2.13.2 160 silly linkStuff nan@2.13.2 has C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules as its parent node_modules 161 silly build erlpack@0.1.2 162 info linkStuff erlpack@0.1.2 163 silly linkStuff erlpack@0.1.2 has C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules as its parent node_modules 164 timing action:build Completed in 1ms 165 silly doSerial global-link 42 166 silly doParallel update-linked 0 167 silly doSerial install 42 168 silly install file-uri-to-path@1.0.0 169 info lifecycle file-uri-to-path@1.0.0~install: file-uri-to-path@1.0.0 170 silly install bindings@1.5.0 171 info lifecycle bindings@1.5.0~install: bindings@1.5.0 172 silly install bufferutil@4.0.1 173 info lifecycle bufferutil@4.0.1~install: bufferutil@4.0.1 174 verbose lifecycle bufferutil@4.0.1~install: unsafe-perm in lifecycle true 175 verbose lifecycle bufferutil@4.0.1~install: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bufferutil\node_modules\.bin;C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\emacs\bin;C:\Program Files\dotnet\;C:\Program Files\nodejs\;C:\Users\DavidM\.cargo\bin;C:\Users\DavidM\AppData\Local\Microsoft\WindowsApps;;C:\Users\DavidM\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\DavidM\AppData\Roaming\npm;C:\texlive\2019\bin\win32 176 verbose lifecycle bufferutil@4.0.1~install: CWD: C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\bufferutil 177 silly lifecycle bufferutil@4.0.1~install: Args: [ '/d /s /c', 'node-gyp-build' ] 178 silly lifecycle bufferutil@4.0.1~install: Returned: code: 0 signal: null 179 silly install nan@2.13.2 180 info lifecycle nan@2.13.2~install: nan@2.13.2 181 silly install erlpack@0.1.2 182 info lifecycle erlpack@0.1.2~install: erlpack@0.1.2 183 verbose lifecycle erlpack@0.1.2~install: unsafe-perm in lifecycle true 184 verbose lifecycle erlpack@0.1.2~install: PATH: C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\erlpack\node_modules\.bin;C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\iCLS\;C:\Program Files\Intel\Intel(R) Management Engine Components\iCLS\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\emacs\bin;C:\Program Files\dotnet\;C:\Program Files\nodejs\;C:\Users\DavidM\.cargo\bin;C:\Users\DavidM\AppData\Local\Microsoft\WindowsApps;;C:\Users\DavidM\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\DavidM\AppData\Roaming\npm;C:\texlive\2019\bin\win32 185 verbose lifecycle erlpack@0.1.2~install: CWD: C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\erlpack 186 silly lifecycle erlpack@0.1.2~install: Args: [ '/d /s /c', 'node-gyp rebuild' ] 187 silly lifecycle erlpack@0.1.2~install: Returned: code: 7 signal: null 188 info lifecycle erlpack@0.1.2~install: Failed to exec install script 189 timing action:install Completed in 2951ms 190 verbose unlock done using C:\Users\DavidM\AppData\Roaming\npm-cache\_locks\staging-c29ef0a37584848e.lock for C:\Users\DavidM\Desktop\Projects\discord-bot\node_modules\.staging 191 timing stage:rollbackFailedOptional Completed in 65ms 192 timing stage:runTopLevelLifecycles Completed in 5733ms 193 silly saveTree discord-bot@1.0.0 193 silly saveTree +-- bufferutil@4.0.1 193 silly saveTree | `-- node-gyp-build@3.7.0 193 silly saveTree +-- discord.js@11.5.0 193 silly saveTree | +-- long@4.0.0 193 silly saveTree | +-- prism-media@0.0.3 193 silly saveTree | +-- snekfetch@3.6.4 193 silly saveTree | +-- tweetnacl@1.0.1 193 silly saveTree | `-- ws@6.2.1 193 silly saveTree | `-- async-limiter@1.0.0 193 silly saveTree `-- erlpack@0.1.2 193 silly saveTree +-- bindings@1.5.0 193 silly saveTree | `-- file-uri-to-path@1.0.0 193 silly saveTree `-- nan@2.13.2 194 warn discord.js@11.5.0 requires a peer of erlpack@discordapp/erlpack but none is installed. You must install peer dependencies yourself. 195 warn discord.js@11.5.0 requires a peer of libsodium-wrappers@^0.7.3 but none is installed. You must install peer dependencies yourself. 196 warn discord.js@11.5.0 requires a peer of node-opus@^0.2.7 but none is installed. You must install peer dependencies yourself. 197 warn discord.js@11.5.0 requires a peer of opusscript@^0.0.6 but none is installed. You must install peer dependencies yourself. 198 warn discord.js@11.5.0 requires a peer of sodium@^2.0.3 but none is installed. You must install peer dependencies yourself. 199 warn discord.js@11.5.0 requires a peer of @discordjs/uws@^10.149.0 but none is installed. You must install peer dependencies yourself. 200 warn discord-bot@1.0.0 No description 201 warn discord-bot@1.0.0 No repository field. 202 verbose stack Error: erlpack@0.1.2 install: `node-gyp rebuild` 202 verbose stack Exit status 7 202 verbose stack at EventEmitter.So when trying to install
bufferutils
anderlpack
modules for thediscord.js
module, I get the above error via log above. I am not sure if this is due to something missing in the configuration, or if its because thewinows-build-tools
module is misconfigured somehow (I followed the instructions to install them directly from the README). Let me know