generated from cotes2020/chirpy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New post: Update all your package.json dependencies interactively
- Loading branch information
1 parent
1e02700
commit b057362
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
_posts/2024-07-04-update-all-your-package-json-dependencies-interactively.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Update all your package.json dependencies interactively | ||
author: lamngockhuong | ||
date: 2024-07-04 11:30:00 +0700 | ||
categories: [NodeJS] | ||
tags: [javascript, yarn, pnpm, npm, package, dependencies] | ||
image: | ||
path: /posts/2023/10/js.png | ||
width: 800 | ||
height: 500 | ||
--- | ||
|
||
## Yarn | ||
|
||
```bash | ||
yarn upgrade-interactive | ||
``` | ||
|
||
## Pnpm | ||
|
||
```bash | ||
pnpm update --interactive [--recursive] [--latest] [--prod] [--dev] | ||
``` |