A collection of personal and technical notes.
Check the current version of a Next.js project being used.
yarn list next
Check the current version of Webpack of a Next.js project being used.
yarn list webpack
Install a module as a production dependency.
yarn add <module>@<version>
Install a module as a development dependency.
yarn add <module>@<version> --dev
Set to specific Yarn 1 release.
yarn set version 1.22.10