Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
d5d0052ecf | |||
9caa301f40 | |||
5fb2f3a81f | |||
873c7af7a4 | |||
5e82218d92 | |||
354b1b1bf7 |
@ -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)
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://git.zone)
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
process.env.CLI_CALL = 'true'
|
||||||
var index = require("../{{pathToIndex}}");
|
var index = require("../{{pathToIndex}}");
|
15
dist/npmts.cli.js
vendored
15
dist/npmts.cli.js
vendored
@ -7,8 +7,19 @@ const NpmtsConfig = require("./npmts.config");
|
|||||||
const NpmtsMods = require("./npmts.mods");
|
const NpmtsMods = require("./npmts.mods");
|
||||||
const NpmtsWatch = require("./npmts.watch");
|
const NpmtsWatch = require("./npmts.watch");
|
||||||
const NpmtsShip = require("./npmts.ship");
|
const NpmtsShip = require("./npmts.ship");
|
||||||
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts', 'UA-64087619-2');
|
/**
|
||||||
npmtsAnalytics.sendEvent('npm', 'exec', 'push.rocks');
|
* 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-5');
|
||||||
|
npmtsAnalytics.sendEvent('npm', 'exec', 'git.zone');
|
||||||
exports.run = () => {
|
exports.run = () => {
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.0.5",
|
"version": "7.0.8",
|
||||||
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
@ -7,8 +7,19 @@ import * as NpmtsMods from './npmts.mods'
|
|||||||
import * as NpmtsWatch from './npmts.watch'
|
import * as NpmtsWatch from './npmts.watch'
|
||||||
import * as NpmtsShip from './npmts.ship'
|
import * as NpmtsShip from './npmts.ship'
|
||||||
|
|
||||||
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts','UA-64087619-2')
|
/**
|
||||||
npmtsAnalytics.sendEvent('npm','exec','push.rocks')
|
* 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-5')
|
||||||
|
npmtsAnalytics.sendEvent('npm','exec','git.zone')
|
||||||
|
|
||||||
export let run = () => {
|
export let run = () => {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
|
Reference in New Issue
Block a user