教材の内容に関係のない質問や教材とは異なる環境・バージョンで進めている場合のエラーなど、教材に関係しない質問は推奨していないため回答できない場合がございます。
その場合、teratailなどの外部サイトを利用して質問することをおすすめします。教材の誤字脱字や追記・改善の要望は「文章の間違いや改善点の指摘」からお願いします。
vue.draggableをインストールをしようとすると、
脆弱性のエラーが起こり、
npm audit fix
でも修正できず、
該当のパッケージのバージョンを手動で修正し、npmをインストールし直しましたが、どうしても脆弱性のエラーが解決できません。
rm -rf node_modules/
でモジュール削除し、npm install
とやりましたが、やり方が違うのか、他の原因があるのでしょうか。
インストールをしたのですが、下記のように表示されます。
ーーーーーーーーーーーーー
nakayamanatsumi@nakayamanatsuminoMacBook-Pro my-trello % npm i -S vuedraggable
up to date, audited 1243 packages in 4s
86 packages are looking for funding
run npm fund
for details
11 moderate severity vulnerabilities
To address issues that do not require attention, run:
npm audit fix
To address all issues (including breaking changes), run:
npm audit fix --force
Run npm audit
for details.
ーーーーーーーーーーーーーーーーーー
表題の通り、Vue.Draggableにエラーが発生しました。
ログは以下です。何が悪いのかご教示願います。
npm ERR! path D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729
npm ERR! code EPERM
npm ERR! errno -4048
npm ERR! syscall rename
npm ERR! Error: EPERM: operation not permitted, rename 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729' -> 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json'
npm ERR! { [Error: EPERM: operation not permitted, rename 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729' -> 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json']
npm ERR! cause:
npm ERR! { Error: EPERM: operation not permitted, rename 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729' -> 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json'
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'rename',
npm ERR! path:
npm ERR! 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729',
npm ERR! dest:
npm ERR! 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json' },
npm ERR! stack:
npm ERR! 'Error: EPERM: operation not permitted, rename 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729' -> 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json'',
npm ERR! errno: -4048,
npm ERR! code: 'EPERM',
npm ERR! syscall: 'rename',
npm ERR! path:
npm ERR! 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json.3301477729',
npm ERR! dest:
npm ERR! 'D:\work\PLM1\my-kanban\node_modules\fill-range\package.json',
npm ERR! parent: 'my-kanban' }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It's possible that the file was already in use (by a text editor or antivirus),
npm ERR! or that you lack permissions to access it.
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).
npm ERR! A complete log of this run can be found in:
宜しくお願い致します。