Files
rio/scripts/update_js_dependencies.py
2025-09-27 13:51:00 +02:00

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")