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

ackee-report

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ackee-report - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

7

CHANGELOG.md

@@ -7,2 +7,9 @@ # Changelog

## [v0.6.2] - 2020-11-22
### Changed
- pages and referrers are now links in the email and rss feed
- press enter to skip optional config options
## [v0.6.1] - 2020-11-21

@@ -9,0 +16,0 @@

2

package.json
{
"name": "ackee-report",
"version": "0.6.1",
"version": "0.6.2",
"description": "CLI tool to generate performance reports of websites using the self-hosted analytics tool Ackee.",

@@ -5,0 +5,0 @@ "bin": "./src/index.js",

@@ -14,4 +14,6 @@ const Configstore = require('configstore')

const text = field.split('.').join(' ')
let value = prompt(`${ text }: `)
if (value.length < 1) {
const required = !field.includes('email')
const output = text + (required ? ' (required):' : ' (press enter to skip):')
let value = prompt(output)
if (value.length < 1 && required) {
value = verifyField(field)

@@ -26,4 +28,3 @@ }

if (!(config.get('ackee.token') || (config.get('ackee.username') && config.get('ackee.password')))) {
const token = prompt('Ackee token (press enter to skip): ')
const token = prompt('ackee token (press enter to skip): ')
if (token.length < 1) {

@@ -37,3 +38,2 @@

}
}

@@ -40,0 +40,0 @@

@@ -29,3 +29,7 @@ const fs = require('fs')

field.forEach((item) => {
list += (`<p>${ item.id } - ${ item.count } times</p>`)
if (items[idx] === 'pages' || items[idx] === 'referrers') {
list += (`<p><a href="${ item.id }">${ item.id }</a> - ${ item.count } times</p>`)
} else {
list += (`<p>${ item.id } - ${ item.count } times</p>`)
}
})

@@ -32,0 +36,0 @@

Sorry, the diff of this file is not supported yet

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