CI Status

My personal blog built with Next.js

Development

yarn run dev

Updating @typescript-eslint/*

This package has @typescript-eslint/eslint-plugin as a direct dependency and @typescript-eslint/parser as an indirect dependency. According to eslint-config-standard-with-typescript, the installed versions of these packages should be the same.

To achieve this, we execute the following procedure to upgrade these packages.

# Upgrade direct dependencies (modifies package.json and yarn.lock)
yarn up '@typescript-eslint/*'
# Upgrade all dependencies (modifies yarn.lock only)
yarn up --recursive '@typescript-eslint/*'