-
|
I tried updating to v1.17.0 (from v1.16.0) just now and I ran into a build error. Has anyone else encountered this? I used these steps to upgrade: $ git pull
$ git checkout v1.17.0
$ npm install
$ npm run buildThe build task does not complete. Instead I am getting this error: Does anyone have any thoughts or advice? Interestingly I tried running those same steps for v1.16.0 again and I am getting the same error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I turns out that I ran |
Beta Was this translation helpful? Give feedback.
I turns out that I ran
npm installwithout first removing the existingpackage-lock.jsonfile which ultimately led to a dependency mismatch. Removing thepackage-lock.jsonfile before running the installation step resolved the problem.