ackee-report
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -7,2 +7,8 @@ # Changelog | ||
## [v0.6.1] - 2020-11-21 | ||
### Fixed | ||
- list domains command didn't work after v0.6.0 | ||
## [v0.6.0] - 2020-11-21 | ||
@@ -9,0 +15,0 @@ |
{ | ||
"name": "ackee-report", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "CLI tool to generate performance reports of websites using the self-hosted analytics tool Ackee.", | ||
@@ -5,0 +5,0 @@ "bin": "./src/index.js", |
@@ -5,3 +5,3 @@ const axios = require('axios') | ||
class Ackee { | ||
constructor({ range, limit }) { | ||
constructor(input) { | ||
const config = Config.get('ackee') | ||
@@ -12,4 +12,4 @@ | ||
this.password = config.password | ||
this.range = range | ||
this.limit = limit | ||
this.range = input && input.range | ||
this.limit = input && input.limit | ||
@@ -16,0 +16,0 @@ const endpoint = this._endpoint(config.server) |
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
78594