Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
8d8cdde15d | |||
dc98d893b1 | |||
6070249cd2 | |||
05ce3e133d | |||
5f5a421453 | |||
d5d0052ecf | |||
9caa301f40 | |||
5fb2f3a81f | |||
873c7af7a4 | |||
5e82218d92 | |||
354b1b1bf7 | |||
467670863a | |||
07195d207d | |||
b60bb25b0f |
@ -51,7 +51,7 @@ pages:
|
|||||||
image: hosttoday/ht-docker-node:npmci
|
image: hosttoday/ht-docker-node:npmci
|
||||||
stage: pages
|
stage: pages
|
||||||
script:
|
script:
|
||||||
- npmci command yarn add npmpage
|
- npmci command yarn global add npmpage
|
||||||
- npmci command npmpage
|
- npmci command npmpage
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
|
@ -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);
|
||||||
|
3
dist/npmts.plugins.d.ts
vendored
3
dist/npmts.plugins.d.ts
vendored
@ -7,7 +7,6 @@ import * as projectinfo from 'projectinfo';
|
|||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as smartanalytics from 'smartanalytics';
|
import * as smartanalytics from 'smartanalytics';
|
||||||
import * as smartcli from 'smartcli';
|
import * as smartcli from 'smartcli';
|
||||||
import * as smartenv from 'smartenv';
|
|
||||||
import * as smartfile from 'smartfile';
|
import * as smartfile from 'smartfile';
|
||||||
import * as smartpath from 'smartpath';
|
import * as smartpath from 'smartpath';
|
||||||
import * as smartstream from 'smartstream';
|
import * as smartstream from 'smartstream';
|
||||||
@ -15,4 +14,4 @@ import * as smartstring from 'smartstring';
|
|||||||
import * as smartsystem from 'smartsystem';
|
import * as smartsystem from 'smartsystem';
|
||||||
import * as through2 from 'through2';
|
import * as through2 from 'through2';
|
||||||
export declare let sourceMapSupport: any;
|
export declare let sourceMapSupport: any;
|
||||||
export { beautylog, depcheck, lodash, npmextra, projectinfo, path, smartanalytics, smartcli, smartenv, smartfile, smartpath, smartstream, smartstring, smartsystem, through2 };
|
export { beautylog, depcheck, lodash, npmextra, projectinfo, path, smartanalytics, smartcli, smartfile, smartpath, smartstream, smartstring, smartsystem, through2 };
|
||||||
|
2
dist/npmts.plugins.js
vendored
2
dist/npmts.plugins.js
vendored
@ -17,8 +17,6 @@ const smartanalytics = require("smartanalytics");
|
|||||||
exports.smartanalytics = smartanalytics;
|
exports.smartanalytics = smartanalytics;
|
||||||
const smartcli = require("smartcli");
|
const smartcli = require("smartcli");
|
||||||
exports.smartcli = smartcli;
|
exports.smartcli = smartcli;
|
||||||
const smartenv = require("smartenv");
|
|
||||||
exports.smartenv = smartenv;
|
|
||||||
const smartfile = require("smartfile");
|
const smartfile = require("smartfile");
|
||||||
exports.smartfile = smartfile;
|
exports.smartfile = smartfile;
|
||||||
const smartpath = require("smartpath");
|
const smartpath = require("smartpath");
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.0.4",
|
"version": "7.0.10",
|
||||||
"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": {
|
||||||
@ -43,16 +43,15 @@
|
|||||||
"early": "^2.0.38",
|
"early": "^2.0.38",
|
||||||
"gulp": "3.9.1",
|
"gulp": "3.9.1",
|
||||||
"gulp-function": "^2.2.3",
|
"gulp-function": "^2.2.3",
|
||||||
"gulp-sourcemaps": "^2.5.0",
|
"gulp-sourcemaps": "^2.6.0",
|
||||||
"gulp-typescript": "^3.1.6",
|
"gulp-typescript": "^3.1.6",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"npmextra": "^2.0.5",
|
"npmextra": "^2.0.5",
|
||||||
"projectinfo": "^3.0.2",
|
"projectinfo": "^3.0.2",
|
||||||
"smartanalytics": "^1.0.3",
|
"smartanalytics": "^1.0.5",
|
||||||
"smartchok": "^1.0.5",
|
"smartchok": "^1.0.8",
|
||||||
"smartcli": "^2.0.1",
|
"smartcli": "^2.0.1",
|
||||||
"smartcov": "^1.0.2",
|
"smartcov": "^1.0.2",
|
||||||
"smartenv": "2.0.0",
|
|
||||||
"smartfile": "^4.1.9",
|
"smartfile": "^4.1.9",
|
||||||
"smartpath": "^3.2.8",
|
"smartpath": "^3.2.8",
|
||||||
"smartq": "^1.1.1",
|
"smartq": "^1.1.1",
|
||||||
|
@ -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)
|
@ -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()
|
||||||
|
@ -8,7 +8,6 @@ import * as projectinfo from 'projectinfo'
|
|||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
import * as smartanalytics from 'smartanalytics'
|
import * as smartanalytics from 'smartanalytics'
|
||||||
import * as smartcli from 'smartcli'
|
import * as smartcli from 'smartcli'
|
||||||
import * as smartenv from 'smartenv'
|
|
||||||
import * as smartfile from 'smartfile'
|
import * as smartfile from 'smartfile'
|
||||||
import * as smartpath from 'smartpath'
|
import * as smartpath from 'smartpath'
|
||||||
import * as smartstream from 'smartstream'
|
import * as smartstream from 'smartstream'
|
||||||
@ -26,7 +25,6 @@ export {
|
|||||||
path,
|
path,
|
||||||
smartanalytics,
|
smartanalytics,
|
||||||
smartcli,
|
smartcli,
|
||||||
smartenv,
|
|
||||||
smartfile,
|
smartfile,
|
||||||
smartpath,
|
smartpath,
|
||||||
smartstream,
|
smartstream,
|
||||||
|
152
yarn.lock
152
yarn.lock
@ -2,6 +2,16 @@
|
|||||||
# yarn lockfile v1
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@gulp-sourcemaps/identity-map@1.X":
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/identity-map/-/identity-map-1.0.0.tgz#3eedeaecd6bf6f3b7cf11bc2cc616e270584dd89"
|
||||||
|
dependencies:
|
||||||
|
acorn "^5.0.3"
|
||||||
|
css "^2.2.1"
|
||||||
|
normalize-path "^2.1.1"
|
||||||
|
source-map "^0.5.6"
|
||||||
|
through2 "^2.0.3"
|
||||||
|
|
||||||
"@gulp-sourcemaps/map-sources@1.X":
|
"@gulp-sourcemaps/map-sources@1.X":
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda"
|
resolved "https://registry.yarnpkg.com/@gulp-sourcemaps/map-sources/-/map-sources-1.0.0.tgz#890ae7c5d8c877f6d384860215ace9d7ec945bda"
|
||||||
@ -26,9 +36,9 @@
|
|||||||
version "3.4.35"
|
version "3.4.35"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.4.35.tgz#e8d65f83492d2944f816fc620741821c28a8c900"
|
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.4.35.tgz#e8d65f83492d2944f816fc620741821c28a8c900"
|
||||||
|
|
||||||
"@types/chokidar@^1.4.31":
|
"@types/chokidar@^1.6.0":
|
||||||
version "1.4.31"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chokidar/-/chokidar-1.4.31.tgz#d4891791f429896eefa701aea5cec1fceececf83"
|
resolved "https://registry.yarnpkg.com/@types/chokidar/-/chokidar-1.6.0.tgz#db1843360d548f267ef38a35f938fe22433c5287"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
@ -56,10 +66,14 @@
|
|||||||
version "0.4.29"
|
version "0.4.29"
|
||||||
resolved "https://registry.yarnpkg.com/@types/istanbul/-/istanbul-0.4.29.tgz#29c8cbb747ac57280965545dc58514ba0dbb99af"
|
resolved "https://registry.yarnpkg.com/@types/istanbul/-/istanbul-0.4.29.tgz#29c8cbb747ac57280965545dc58514ba0dbb99af"
|
||||||
|
|
||||||
"@types/lodash@^4.14.35", "@types/lodash@^4.14.50", "@types/lodash@^4.14.55":
|
"@types/lodash@^4.14.50", "@types/lodash@^4.14.55":
|
||||||
version "4.14.58"
|
version "4.14.58"
|
||||||
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.58.tgz#18d45863b6119c1ffffe935c1f51fe044c8c4102"
|
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.58.tgz#18d45863b6119c1ffffe935c1f51fe044c8c4102"
|
||||||
|
|
||||||
|
"@types/lodash@^4.14.62":
|
||||||
|
version "4.14.62"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.62.tgz#8674f9861582148a60b7a89cb260f11378d11683"
|
||||||
|
|
||||||
"@types/minimatch@2.x.x", "@types/minimatch@^2.0.29":
|
"@types/minimatch@2.x.x", "@types/minimatch@^2.0.29":
|
||||||
version "2.0.29"
|
version "2.0.29"
|
||||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-2.0.29.tgz#5002e14f75e2d71e564281df0431c8c1b4a2a36a"
|
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-2.0.29.tgz#5002e14f75e2d71e564281df0431c8c1b4a2a36a"
|
||||||
@ -82,7 +96,7 @@
|
|||||||
version "0.0.27"
|
version "0.0.27"
|
||||||
resolved "https://registry.yarnpkg.com/@types/promises-a-plus/-/promises-a-plus-0.0.27.tgz#c64651134614c84b8f5d7114ce8901d36a609780"
|
resolved "https://registry.yarnpkg.com/@types/promises-a-plus/-/promises-a-plus-0.0.27.tgz#c64651134614c84b8f5d7114ce8901d36a609780"
|
||||||
|
|
||||||
"@types/q@*", "@types/q@^1.x.x", "@types/q@x.x.x":
|
"@types/q@*", "@types/q@1.x.x", "@types/q@^1.x.x", "@types/q@x.x.x":
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.0.0.tgz#57e5465d665b370d4217e69b344b20faa6b724f5"
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.0.0.tgz#57e5465d665b370d4217e69b344b20faa6b724f5"
|
||||||
|
|
||||||
@ -120,6 +134,10 @@ acorn@4.X:
|
|||||||
version "4.0.11"
|
version "4.0.11"
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.11.tgz#edcda3bd937e7556410d42ed5860f67399c794c0"
|
||||||
|
|
||||||
|
acorn@^5.0.3:
|
||||||
|
version "5.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.0.3.tgz#c460df08491463f028ccb82eab3730bf01087b3d"
|
||||||
|
|
||||||
align-text@^0.1.1, align-text@^0.1.3:
|
align-text@^0.1.1, align-text@^0.1.3:
|
||||||
version "0.1.4"
|
version "0.1.4"
|
||||||
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
|
||||||
@ -601,7 +619,7 @@ cryptiles@2.x.x:
|
|||||||
dependencies:
|
dependencies:
|
||||||
boom "2.x.x"
|
boom "2.x.x"
|
||||||
|
|
||||||
css@2.X:
|
css@2.X, css@^2.2.1:
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc"
|
resolved "https://registry.yarnpkg.com/css/-/css-2.2.1.tgz#73a4c81de85db664d4ee674f7d47085e3b2d55dc"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -632,12 +650,11 @@ dateformat@^2.0.0:
|
|||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17"
|
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17"
|
||||||
|
|
||||||
debug-fabulous@0.0.X:
|
debug-fabulous@0.1.X:
|
||||||
version "0.0.4"
|
version "0.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.0.4.tgz#fa071c5d87484685424807421ca4b16b0b1a0763"
|
resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.1.0.tgz#ad0ea07a5d519324fb55842a8f34ee59c7f8ff6c"
|
||||||
dependencies:
|
dependencies:
|
||||||
debug "2.X"
|
debug "2.X"
|
||||||
lazy-debug-legacy "0.0.X"
|
|
||||||
object-assign "4.1.0"
|
object-assign "4.1.0"
|
||||||
|
|
||||||
debug@2.X, debug@^2.1.3, debug@^2.2.0:
|
debug@2.X, debug@^2.1.3, debug@^2.2.0:
|
||||||
@ -1008,14 +1025,7 @@ fs-exists-sync@^0.1.0:
|
|||||||
version "0.1.0"
|
version "0.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
|
resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add"
|
||||||
|
|
||||||
fs-extra@^2.0.0:
|
fs-extra@^2.0.0, fs-extra@^2.1.2:
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.0.0.tgz#337352bded4a0b714f3eb84de8cea765e9d37600"
|
|
||||||
dependencies:
|
|
||||||
graceful-fs "^4.1.2"
|
|
||||||
jsonfile "^2.1.0"
|
|
||||||
|
|
||||||
fs-extra@^2.1.2:
|
|
||||||
version "2.1.2"
|
version "2.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
|
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-2.1.2.tgz#046c70163cef9aad46b0e4a7fa467fb22d71de35"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1255,19 +1265,20 @@ gulp-sourcemaps@1.6.0:
|
|||||||
through2 "^2.0.0"
|
through2 "^2.0.0"
|
||||||
vinyl "^1.0.0"
|
vinyl "^1.0.0"
|
||||||
|
|
||||||
gulp-sourcemaps@^2.5.0:
|
gulp-sourcemaps@^2.6.0:
|
||||||
version "2.5.0"
|
version "2.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.5.0.tgz#8270a25148357ac73597bd0c6bd43177e982a3af"
|
resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.0.tgz#7ccce899a8a3bfca1593a3348d0fbf41dd3f51e5"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
"@gulp-sourcemaps/identity-map" "1.X"
|
||||||
"@gulp-sourcemaps/map-sources" "1.X"
|
"@gulp-sourcemaps/map-sources" "1.X"
|
||||||
acorn "4.X"
|
acorn "4.X"
|
||||||
convert-source-map "1.X"
|
convert-source-map "1.X"
|
||||||
css "2.X"
|
css "2.X"
|
||||||
debug-fabulous "0.0.X"
|
debug-fabulous "0.1.X"
|
||||||
detect-newline "2.X"
|
detect-newline "2.X"
|
||||||
graceful-fs "4.X"
|
graceful-fs "4.X"
|
||||||
source-map "0.X"
|
source-map "0.X"
|
||||||
strip-bom "3.X"
|
strip-bom-string "1.X"
|
||||||
through2 "2.X"
|
through2 "2.X"
|
||||||
vinyl "1.X"
|
vinyl "1.X"
|
||||||
|
|
||||||
@ -1685,10 +1696,6 @@ lazy-cache@^1.0.3:
|
|||||||
version "1.0.4"
|
version "1.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
|
||||||
|
|
||||||
lazy-debug-legacy@0.0.X:
|
|
||||||
version "0.0.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/lazy-debug-legacy/-/lazy-debug-legacy-0.0.1.tgz#537716c0776e4cf79e3ed1b621f7658c2911b1b1"
|
|
||||||
|
|
||||||
lazystream@^1.0.0:
|
lazystream@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4"
|
resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4"
|
||||||
@ -1726,17 +1733,17 @@ liftoff@^2.1.0:
|
|||||||
rechoir "^0.6.2"
|
rechoir "^0.6.2"
|
||||||
resolve "^1.1.7"
|
resolve "^1.1.7"
|
||||||
|
|
||||||
lik@^1.0.24, lik@^1.0.27:
|
lik@^1.0.24, lik@^1.0.27, lik@^1.0.30:
|
||||||
version "1.0.27"
|
version "1.0.30"
|
||||||
resolved "https://registry.yarnpkg.com/lik/-/lik-1.0.27.tgz#699a336225109c8b9ccb9d3dd32d7016d1532c8f"
|
resolved "https://registry.yarnpkg.com/lik/-/lik-1.0.30.tgz#488485088fc0dca9d08ba9744796d1dbf6b1eca4"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/lodash" "^4.14.35"
|
"@types/lodash" "^4.14.62"
|
||||||
"@types/minimatch" "2.x.x"
|
"@types/minimatch" "2.x.x"
|
||||||
"@types/q" "0.x.x"
|
"@types/q" "1.x.x"
|
||||||
lodash "^4.16.1"
|
lodash "^4.17.4"
|
||||||
minimatch "^3.0.3"
|
minimatch "^3.0.3"
|
||||||
q "^1.4.1"
|
q "^1.5.0"
|
||||||
rxjs "^5.0.0-beta.12"
|
rxjs "^5.3.0"
|
||||||
typings-global "^1.0.14"
|
typings-global "^1.0.14"
|
||||||
|
|
||||||
load-json-file@^1.0.0:
|
load-json-file@^1.0.0:
|
||||||
@ -1864,7 +1871,7 @@ lodash@^3.10.1:
|
|||||||
version "3.10.1"
|
version "3.10.1"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6"
|
||||||
|
|
||||||
lodash@^4.11.1, lodash@^4.13.1, lodash@^4.16.1, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.5.1:
|
lodash@^4.11.1, lodash@^4.13.1, lodash@^4.17.2, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.5.1:
|
||||||
version "4.17.4"
|
version "4.17.4"
|
||||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
||||||
|
|
||||||
@ -2067,9 +2074,11 @@ normalize-package-data@^2.3.2:
|
|||||||
semver "2 || 3 || 4 || 5"
|
semver "2 || 3 || 4 || 5"
|
||||||
validate-npm-package-license "^3.0.1"
|
validate-npm-package-license "^3.0.1"
|
||||||
|
|
||||||
normalize-path@^2.0.1:
|
normalize-path@^2.0.1, normalize-path@^2.1.1:
|
||||||
version "2.0.1"
|
version "2.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.0.1.tgz#47886ac1662760d4261b7d979d241709d3ce3f7a"
|
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
|
||||||
|
dependencies:
|
||||||
|
remove-trailing-separator "^1.0.1"
|
||||||
|
|
||||||
npmextra@^2.0.5:
|
npmextra@^2.0.5:
|
||||||
version "2.0.5"
|
version "2.0.5"
|
||||||
@ -2312,6 +2321,10 @@ q@^1.4.1:
|
|||||||
version "1.4.1"
|
version "1.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e"
|
resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e"
|
||||||
|
|
||||||
|
q@^1.5.0:
|
||||||
|
version "1.5.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
|
||||||
|
|
||||||
qs@~6.3.0:
|
qs@~6.3.0:
|
||||||
version "6.3.1"
|
version "6.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.1.tgz#918c0b3bcd36679772baf135b1acb4c1651ed79d"
|
resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.1.tgz#918c0b3bcd36679772baf135b1acb4c1651ed79d"
|
||||||
@ -2523,9 +2536,9 @@ rimraf@2, rimraf@^2.3.3, rimraf@~2.5.1, rimraf@~2.5.4:
|
|||||||
dependencies:
|
dependencies:
|
||||||
glob "^7.0.5"
|
glob "^7.0.5"
|
||||||
|
|
||||||
rxjs@^5.0.0-beta.12, rxjs@^5.0.1, rxjs@^5.1.1:
|
rxjs@^5.0.1, rxjs@^5.3.0:
|
||||||
version "5.2.0"
|
version "5.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.2.0.tgz#db537de8767c05fa73721587a29e0085307d318b"
|
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.3.0.tgz#d88ccbdd46af290cbdb97d5d8055e52453fabe2d"
|
||||||
dependencies:
|
dependencies:
|
||||||
symbol-observable "^1.0.1"
|
symbol-observable "^1.0.1"
|
||||||
|
|
||||||
@ -2573,9 +2586,9 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
|
|||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
|
||||||
|
|
||||||
smartanalytics@^1.0.3:
|
smartanalytics@^1.0.5:
|
||||||
version "1.0.3"
|
version "1.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/smartanalytics/-/smartanalytics-1.0.3.tgz#02b49051fe1e6ed415516de39bd38ff61b35e033"
|
resolved "https://registry.yarnpkg.com/smartanalytics/-/smartanalytics-1.0.5.tgz#ff94fe6ca3f32470ac5eadf6840fd74066554613"
|
||||||
dependencies:
|
dependencies:
|
||||||
smartq "^1.1.1"
|
smartq "^1.1.1"
|
||||||
smartrequest "^1.0.4"
|
smartrequest "^1.0.4"
|
||||||
@ -2592,19 +2605,20 @@ smartchai@^1.0.3:
|
|||||||
chai-as-promised "^6.0.0"
|
chai-as-promised "^6.0.0"
|
||||||
chai-string "^1.3.0"
|
chai-string "^1.3.0"
|
||||||
|
|
||||||
smartchok@^1.0.5:
|
smartchok@^1.0.8:
|
||||||
version "1.0.5"
|
version "1.0.8"
|
||||||
resolved "https://registry.yarnpkg.com/smartchok/-/smartchok-1.0.5.tgz#b65822bddd978caeec047868d51d5700ed64b855"
|
resolved "https://registry.yarnpkg.com/smartchok/-/smartchok-1.0.8.tgz#12f41395a1da3b6824c70b0a6e90edfd1ba402e0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/chokidar" "^1.4.31"
|
"@types/chokidar" "^1.6.0"
|
||||||
"@types/q" x.x.x
|
"@types/q" x.x.x
|
||||||
chokidar "^1.6.1"
|
chokidar "^1.6.1"
|
||||||
lik "^1.0.27"
|
lik "^1.0.30"
|
||||||
q "^1.4.1"
|
q "^1.5.0"
|
||||||
rxjs "^5.1.1"
|
rxjs "^5.3.0"
|
||||||
|
smartipc "^1.0.9"
|
||||||
typings-global "^1.0.14"
|
typings-global "^1.0.14"
|
||||||
|
|
||||||
smartcli@2.0.1:
|
smartcli@^2.0.1:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/smartcli/-/smartcli-2.0.1.tgz#4cbc0cf5d88ccadb7546897853b0d24f7793e5a1"
|
resolved "https://registry.yarnpkg.com/smartcli/-/smartcli-2.0.1.tgz#4cbc0cf5d88ccadb7546897853b0d24f7793e5a1"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2618,7 +2632,7 @@ smartcli@2.0.1:
|
|||||||
typings-global "^1.0.14"
|
typings-global "^1.0.14"
|
||||||
yargs "^6.4.0"
|
yargs "^6.4.0"
|
||||||
|
|
||||||
smartcov@1.0.2:
|
smartcov@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/smartcov/-/smartcov-1.0.2.tgz#d81bed707fc6191a39a71384fb66ddd1f41dac1f"
|
resolved "https://registry.yarnpkg.com/smartcov/-/smartcov-1.0.2.tgz#d81bed707fc6191a39a71384fb66ddd1f41dac1f"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2629,15 +2643,6 @@ smartcov@1.0.2:
|
|||||||
smartq "^1.1.1"
|
smartq "^1.1.1"
|
||||||
typings-global "^1.0.14"
|
typings-global "^1.0.14"
|
||||||
|
|
||||||
smartenv@2.0.0, smartenv@^2.0.0:
|
|
||||||
version "2.0.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartenv/-/smartenv-2.0.0.tgz#ede4e2044efcf9bec318388bb1dab53024ee3d16"
|
|
||||||
dependencies:
|
|
||||||
"@types/q" "0.x.x"
|
|
||||||
lodash "^4.17.2"
|
|
||||||
q "^1.4.1"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
|
|
||||||
smartenv@^1.2.2, smartenv@^1.2.5:
|
smartenv@^1.2.2, smartenv@^1.2.5:
|
||||||
version "1.2.5"
|
version "1.2.5"
|
||||||
resolved "https://registry.yarnpkg.com/smartenv/-/smartenv-1.2.5.tgz#5e50343ec4653953ef24929fc548cd74ea53205c"
|
resolved "https://registry.yarnpkg.com/smartenv/-/smartenv-1.2.5.tgz#5e50343ec4653953ef24929fc548cd74ea53205c"
|
||||||
@ -2646,6 +2651,15 @@ smartenv@^1.2.2, smartenv@^1.2.5:
|
|||||||
lodash "^4.11.1"
|
lodash "^4.11.1"
|
||||||
q "^1.4.1"
|
q "^1.4.1"
|
||||||
|
|
||||||
|
smartenv@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/smartenv/-/smartenv-2.0.0.tgz#ede4e2044efcf9bec318388bb1dab53024ee3d16"
|
||||||
|
dependencies:
|
||||||
|
"@types/q" "0.x.x"
|
||||||
|
lodash "^4.17.2"
|
||||||
|
q "^1.4.1"
|
||||||
|
typings-global "^1.0.14"
|
||||||
|
|
||||||
smartfile@4.1.6:
|
smartfile@4.1.6:
|
||||||
version "4.1.6"
|
version "4.1.6"
|
||||||
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.1.6.tgz#d71026aefef99233c56766c3c6c11afc41a19b3a"
|
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.1.6.tgz#d71026aefef99233c56766c3c6c11afc41a19b3a"
|
||||||
@ -2908,9 +2922,9 @@ strip-bom-stream@^2.0.0:
|
|||||||
first-chunk-stream "^2.0.0"
|
first-chunk-stream "^2.0.0"
|
||||||
strip-bom "^2.0.0"
|
strip-bom "^2.0.0"
|
||||||
|
|
||||||
strip-bom@3.X:
|
strip-bom-string@1.X:
|
||||||
version "3.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
|
resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
|
||||||
|
|
||||||
strip-bom@^1.0.0:
|
strip-bom@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
@ -3117,11 +3131,7 @@ typed-promisify@^0.3.0:
|
|||||||
version "0.3.0"
|
version "0.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/typed-promisify/-/typed-promisify-0.3.0.tgz#1ba0af5e444c87d8047406f18ce49092a1191853"
|
resolved "https://registry.yarnpkg.com/typed-promisify/-/typed-promisify-0.3.0.tgz#1ba0af5e444c87d8047406f18ce49092a1191853"
|
||||||
|
|
||||||
typescript@^2.1.5:
|
typescript@^2.1.5, typescript@^2.2.2:
|
||||||
version "2.2.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.1.tgz#4862b662b988a4c8ff691cc7969622d24db76ae9"
|
|
||||||
|
|
||||||
typescript@^2.2.2:
|
|
||||||
version "2.2.2"
|
version "2.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.2.tgz#606022508479b55ffa368b58fee963a03dfd7b0c"
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.2.2.tgz#606022508479b55ffa368b58fee963a03dfd7b0c"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user