/node_modules
folder) and your local packages (packages you create or change at your will, and reside in /packages
folder). For more info you can check the page Learning Frontity - Packages.frontity
, @frontity/core
or @frontity/tiny-router
, and all your dependencies, are included in this part. These can be treated as common npm packages, so you can use the following command to update your package.json
to the latest versions:-t minor
switch ensures that only minor updates will be applied. This avoids introducing potential breaking changes that a major update might introduce. See here for more info.package.json
and all your dependencies in node_modules
, including the Frontity packages installed in node_modules
.packages
folder, are supposed to be modified by the users, so any dependency won't be updated when you update your project dependencies.packages
folder.npm install
there:package.json
of your project.package.json
files of your local packages.node_modules
folders of:package-lock.json
file of:npm install
again.