-
Notifications
You must be signed in to change notification settings - Fork 0
How to update dependencies
Mitsuyoshi Yamazaki edited this page Jul 30, 2022
·
1 revision
see also: https://github.com/mitsuyoshi-yamazaki/ALifeLab/wiki/Dependencies
$ yarn upgrade --latest
warning [email protected]: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-commonjs.
warning [email protected]: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-node-resolve.
$ yarn remove rollup-plugin-commonjs
$ yarn remove rollup-plugin-node-resolve
$ yarn add "@rollup/plugin-commonjs" --dev
$ yarn add "rollup-plugin-commonjs" --dev
$ yarn add "@rollup/plugin-node-resolve" --dev
$ yarn add "rollup-plugin-node-resolve" --dev
$ yarn upgrade --latest