mirror of
https://github.com/rio-labs/rio.git
synced 2025-12-30 09:49:44 -06:00
10 lines
195 B
Python
10 lines
195 B
Python
"""
|
|
This script updates all dependencies and dev-dependencies in the package.json to
|
|
the newest version.
|
|
"""
|
|
|
|
from ._utils import npm, npx
|
|
|
|
npx("npm-check-updates", "-u")
|
|
npm("install")
|