mindful-timer
Advanced tools
Comparing version 0.2.1 to 0.3.0
{ | ||
"name": "mindful-timer", | ||
"version": "0.2.1", | ||
"version": "0.3.0", | ||
"description": "Pomodoro timer", | ||
@@ -5,0 +5,0 @@ "scripts": {}, |
# Mindful Timer ✨✨✨ | ||
`npm -g mindful-timer` | ||
`npm i -g mindful-timer` | ||
Simple Pomodoro timer | ||
Simple Pomodoro timer (**Only Mac OS**) | ||
- Keeps Do Not Disturb mode during the work | ||
- Shows system alert instead of usual notification | ||
**Only Mac OS** | ||
## Usage: | ||
@@ -15,1 +13,3 @@ `mindful-timer start [work timer duration]` | ||
`mindful-timer log [day|week|month|quarter|year|full]` | ||
`mindful-timer stats [day|week|month|quarter|year|full]` |
const {startCommand} = require("./commands/start"); | ||
const {logCommand} = require("./commands/log"); | ||
const {statsCommand} = require("./commands/stats"); | ||
@@ -10,2 +11,3 @@ async function runCli() { | ||
.command(logCommand.signature, logCommand.description, logCommand.configure, logCommand.run) | ||
.command(statsCommand.signature, statsCommand.description, statsCommand.configure, statsCommand.run) | ||
.help() | ||
@@ -12,0 +14,0 @@ .argv; |
@@ -77,3 +77,4 @@ const {DateTime} = require("luxon"); | ||
run, | ||
} | ||
}, | ||
getSessions | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13788
14
365