简体   繁体   中英

Nuxt build failure with core-js dependencies not found in ./node_modules/bootstrap-vue/:varisouspath

When I build my nuxt.js project, it spits out friendly error which is not so friendly.. I have done clean install (deleted package.lock and node_modules) installed core-js@2 and @babel/runtime-corejs2, but still getting these errors.

 ERROR  Failed to compile with 4 errors        friendly-errors 11:29:16

These dependencies were not found:             friendly-errors 11:29:16
                                               friendly-errors 11:29:16
* core-js/library/fn/array/from in ./node_modules/bootstrap-vue/es/utils/array.js
* core-js/library/fn/array/is-array in ./node_modules/bootstrap-vue/es/utils/array.js
* core-js/library/fn/object/assign in ./node_modules/bootstrap-vue/es/utils/object.js
* core-js/library/fn/object/is in ./node_modules/bootstrap-vue/es/utils/object.js
                                               friendly-errors 11:29:16
To install them, you can run: npm install --save core-js/library/fn/array/from core-js/library/fn/array/is-array core-js/library/fn/object/assign core-js/library/fn/object/is
ℹ Waiting for file changes
npm installl core-js@2 @babel/runtime-corejs2

will fix your issue

Had this exact issue on a CI build today. The issue turned out to be using v6 of node. Updating it to v9 fixed the issue.

I'm no expert on Nuxt syntax but you should give the upgrade a try. For me it was a matter of of updating:

image: node:6

to

image: node:9

for my docker image.

as mentioned in the article, https://github.com/cdqa-suite/cdQA-annotator/issues/37

"npm run serve" from the parent folder, not src folder will do the job

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM