Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clocker

Package Overview
Dependencies
Maintainers
3
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clocker - npm Package Compare versions

Comparing version 1.16.9 to 1.17.0

18

bin/index.js

@@ -53,2 +53,3 @@ #!/usr/bin/env node

.option('-d, --datadir <path>')
.option('-t, --type <value>', 'use latest of type instead of stamp')
.option('-m, --message <value>')

@@ -237,3 +238,18 @@ .action(stop)

clocker.stop(stamp, data, nil)
if (cmd.type) {
if (stamp) {
ifError(new Error(`stamp can't be used together with '--type' option`))
}
var filter = getFilter(cmd)
clocker.data(filter, function (err, entries) {
ifError(err)
if (entries.length === 0) {
ifError(new Error(`no matching entries found`))
}
stamp = entries[entries.length - 1].key
clocker.stop(stamp, data, nil)
})
} else {
clocker.stop(stamp, data, nil)
}
}

@@ -240,0 +256,0 @@

2

package.json
{
"name": "clocker",
"version": "1.16.9",
"version": "1.17.0",
"description": "track project hours",

@@ -5,0 +5,0 @@ "bin": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc