gulp - internalBinding is not defined

前端 未结 8 1593
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 14:19

I\'m getting this error when I try to run the command gulp watch-bs for my UnderStrap child theme for WordPress. I\'ve been using this command for a year with no pr

8条回答
  •  不知归路
    2021-02-01 14:55

    I had the same error after upgrading node to v10.16.0

    I ran the following which solved my issue:

    rm -rf node_modules
    rm package-lock.json
    npm cache clean --force
    npm install 
    

    After closer inspection, it would seem that the generated tree in package-lock was outdated.

提交回复
热议问题