-
Notifications
You must be signed in to change notification settings - Fork 19
Home
Rob Bayliss edited this page Apr 27, 2019
·
4 revisions
Welcome to the Drupal-Scaffold wiki!
Here you will find fixes for specific, known issues:
As of 4/27/2019, our PHP images were bumped to use NodeJS version 10 (from version 6). This can cause some specific issues during CI builds. The known errors we have seen are:
-
gulp build[1499]: ../src/node_contextify.cc:626:static void node::contextify::ContextifyScript::New(const v8::FunctionCallbackInfo<v8::Value>&): Assertion
args[1]->IsString()' failed.(during
gulp build`).
The fix for these errors is pretty straightforward:
- Make sure you are running on NodeJS v10 (using
nvm
from your host system, or using the newest version of the LastcallMedia/PHP containers). - Try running
yarn upgrade
to regenerate the lockfile.yarn upgrade
MAY reorder dependencies inpackage.json
, which shouldn't be a problem, but you should checkpackage.json
before committing to be sure that nothing unexpected changed.
The PR to bump yarn.lock
for the v10 upgrade on this repo can be seen here.