Skip to content

ninoseki/vscode-mogami

Repository files navigation

vscode-mogami

A VS Code extension for checking the latest version of each dependency.

img

Supported Formats

Python

Private Source

  • requirements.txt: --index-url is supported.
  • pyproject.toml: Poetry's tool.poetry.source is supported.

Known Limitations

pip's pyproject.toml should have line-break-separated dependencies and optional-dependencies.

Good

dependencies = [
  "httpx",
  "django>2.1"
]

Bad

dependencies = ["httpx", "django>2.1"]

Ruby

  • Gemfile
  • *.gemspec

Private Source

  • Gemfile: source is supported.

Configuration

Key Default Desc.
vscode-mogami.enableCodeLens true Whether to enable CodeLens or not.
vscode-mogami.concurrency 5 Concurrency (a number of concurrent requests) to get package data.
vscode-mogami.usePrivateSource true Whether to use a private source (repository) if it's set or not.
vscode-mogami.showPrerelease false Whether to show a prerelease version or not.

Alternatives