Skip to main content

Built and signed on GitHub Actions

CLI to increment the semantic version of the package in the current directory

This package works with Deno
This package works with Deno
JSR Score
70%
Published
2 months ago (0.1.1)
Package root>deno.json
{ "name": "@kellnerd/bump", "version": "0.1.1", "exports": "./cli.ts", "imports": { "@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.7", "@std/semver": "jsr:@std/semver@^1.0.3" }, "fmt": { "exclude": [ "**/*.md" ] }, "lint": { "rules": { "exclude": [ "no-slow-types" ] } }, "publish": { "exclude": [ "deno.lock", ".github/", ".vscode/" ] }, "tasks": { "ok": "deno fmt --check && deno lint", "bump": "deno run -R=deno.json -W=deno.json --allow-run=git cli.ts -c 'chore: Release version ' -t v" } }