🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@delega-dev/cli

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@delega-dev/cli - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
+1
-1
dist/commands/tasks.js

@@ -53,3 +53,3 @@ import { Command } from "commander";

.argument("<content>", "Task content")
.option("--priority <n>", "Priority 1-4 (default: 1)", parseInt, 1)
.option("--priority <n>", "Priority 1-4 (default: 1)", (v) => parseInt(v, 10), 1)
.option("--labels <labels>", "Comma-separated labels")

@@ -56,0 +56,0 @@ .option("--due <date>", "Due date (YYYY-MM-DD)")

{
"name": "@delega-dev/cli",
"version": "1.0.1",
"version": "1.0.2",
"description": "CLI for Delega task API",

@@ -5,0 +5,0 @@ "type": "module",

@@ -18,3 +18,3 @@ ```

```bash
npm install -g delega-cli
npm install -g @delega-dev/cli
```

@@ -21,0 +21,0 @@

@@ -86,3 +86,3 @@ import { Command } from "commander";

.argument("<content>", "Task content")
.option("--priority <n>", "Priority 1-4 (default: 1)", parseInt, 1)
.option("--priority <n>", "Priority 1-4 (default: 1)", (v: string) => parseInt(v, 10), 1)
.option("--labels <labels>", "Comma-separated labels")

@@ -89,0 +89,0 @@ .option("--due <date>", "Due date (YYYY-MM-DD)")