diff --git a/README.md b/README.md index bc2ad0f..2d3372a 100644 --- a/README.md +++ b/README.md @@ -36,4 +36,4 @@ This works on your machine and in CI. There is a prebuild docker image available > MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) | By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html) -[![repo-footer](https://gitzone.gitlab.io/assets/repo-footer.svg)](https://push.rocks) +[![repo-footer](https://gitzone.gitlab.io/assets/repo-footer.svg)](https://git.zone) diff --git a/dist/npmts.cli.js b/dist/npmts.cli.js index 1184f2c..78981dc 100644 --- a/dist/npmts.cli.js +++ b/dist/npmts.cli.js @@ -7,8 +7,19 @@ const NpmtsConfig = require("./npmts.config"); const NpmtsMods = require("./npmts.mods"); const NpmtsWatch = require("./npmts.watch"); const NpmtsShip = require("./npmts.ship"); +/** + * smartanalytics + * this data is fully anonymized (no Ips or any other personal information is tracked). + * It just keeps track which of our tools are really used... + * ... so we know where to spend our limited resources for improving them. + * Since yarn is out and there is heavy caching going on, + * pure download stats are just not reliable enough for us anymore + * Feel free to dig into the smartanalytics package, if you are interested in how it works. + * It is just an https call to Google Analytics. + * Our privacy policy can be found here: https://lossless.gmbh/privacy.html + */ let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts', 'UA-64087619-2'); -npmtsAnalytics.sendEvent('npm', 'exec', 'push.rocks'); +npmtsAnalytics.sendEvent('npmts', 'exec', 'git.zone'); exports.run = () => { let done = q.defer(); let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot); diff --git a/ts/npmts.cli.ts b/ts/npmts.cli.ts index 5efff32..2a99e4e 100644 --- a/ts/npmts.cli.ts +++ b/ts/npmts.cli.ts @@ -7,8 +7,19 @@ import * as NpmtsMods from './npmts.mods' import * as NpmtsWatch from './npmts.watch' import * as NpmtsShip from './npmts.ship' +/** + * smartanalytics + * this data is fully anonymized (no Ips or any other personal information is tracked). + * It just keeps track which of our tools are really used... + * ... so we know where to spend our limited resources for improving them. + * Since yarn is out and there is heavy caching going on, + * pure download stats are just not reliable enough for us anymore + * Feel free to dig into the smartanalytics package, if you are interested in how it works. + * It is just an https call to Google Analytics. + * Our privacy policy can be found here: https://lossless.gmbh/privacy.html + */ let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts','UA-64087619-2') -npmtsAnalytics.sendEvent('npm','exec','push.rocks') +npmtsAnalytics.sendEvent('npmts','exec','git.zone') export let run = () => { let done = q.defer()