Compare commits
34 Commits
Author | SHA1 | Date | |
---|---|---|---|
784aec1ec3 | |||
61b7bbb168 | |||
1d662ddef4 | |||
f7351c914e | |||
7132ae11a8 | |||
b195b8911b | |||
e331e870d9 | |||
3a6bd3b583 | |||
594bccfc82 | |||
d9f1d36d14 | |||
f12c4aabd8 | |||
b62f7d8b31 | |||
56cccb1b14 | |||
850df45d7f | |||
2b1f371d8a | |||
8196ca50a7 | |||
ad96661dda | |||
2fc6c3d358 | |||
0c74fb3343 | |||
d821a2efa6 | |||
66f2321d99 | |||
816f4f57fb | |||
9bdf3ec4c7 | |||
b9d4953bcd | |||
8c0fcdf5b7 | |||
a477cc00e7 | |||
00b9a742ab | |||
f5b8ab84cf | |||
4fc4efc0b9 | |||
30136f01a8 | |||
d1d85819d7 | |||
e267fce3bb | |||
f964b2737f | |||
6ac634e178 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
.nogit/
|
||||||
node_modules/
|
node_modules/
|
||||||
test/
|
test/
|
||||||
pages/
|
pages/
|
||||||
|
@ -7,15 +7,26 @@ cache:
|
|||||||
key: "$CI_BUILD_STAGE"
|
key: "$CI_BUILD_STAGE"
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
|
- mirror
|
||||||
- test
|
- test
|
||||||
- release
|
- release
|
||||||
- trigger
|
- trigger
|
||||||
- pages
|
- pages
|
||||||
|
|
||||||
|
mirror:
|
||||||
|
image: hosttoday/ht-docker-node:npmci
|
||||||
|
stage: mirror
|
||||||
|
script:
|
||||||
|
- npmci git mirror
|
||||||
|
tags:
|
||||||
|
- docker
|
||||||
|
|
||||||
testLEGACY:
|
testLEGACY:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test legacy
|
- npmci node install legacy
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
@ -24,7 +35,9 @@ testLEGACY:
|
|||||||
testLTS:
|
testLTS:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test lts
|
- npmci node install lts
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
@ -32,7 +45,9 @@ testLTS:
|
|||||||
testSTABLE:
|
testSTABLE:
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- npmci test stable
|
- npmci node install stable
|
||||||
|
- npmci npm install
|
||||||
|
- npmci npm test
|
||||||
coverage: /\d+.?\d+?\%\s*coverage/
|
coverage: /\d+.?\d+?\%\s*coverage/
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
@ -40,7 +55,8 @@ testSTABLE:
|
|||||||
release:
|
release:
|
||||||
stage: release
|
stage: release
|
||||||
script:
|
script:
|
||||||
- npmci publish
|
- npmci npm prepare
|
||||||
|
- npmci npm publish
|
||||||
only:
|
only:
|
||||||
- tags
|
- tags
|
||||||
tags:
|
tags:
|
||||||
|
23
dist/mod02/index.js
vendored
23
dist/mod02/index.js
vendored
@ -14,6 +14,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
const plugins = require("./mod02.plugins");
|
const plugins = require("./mod02.plugins");
|
||||||
const paths = require("../npmts.paths");
|
const paths = require("../npmts.paths");
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
|
let testTypeScriptConfig = {
|
||||||
|
target: 'ES5',
|
||||||
|
emitDecoratorMetadata: true,
|
||||||
|
experimentalDecorators: true,
|
||||||
|
lib: [
|
||||||
|
'DOM',
|
||||||
|
'ESNext'
|
||||||
|
]
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* runs mocha
|
* runs mocha
|
||||||
* @returns INpmtsConfig
|
* @returns INpmtsConfig
|
||||||
@ -31,12 +40,7 @@ let tap = function (configArg) {
|
|||||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
plugins.smartgulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript(testTypeScriptConfig),
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestableFiles(),
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
@ -47,12 +51,7 @@ let tap = function (configArg) {
|
|||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript(testTypeScriptConfig),
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestFiles(),
|
npmtsTapBuffer.pipeTestFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
|
25
dist/npmts.cli.js
vendored
25
dist/npmts.cli.js
vendored
@ -23,20 +23,35 @@ const NpmtsShip = require("./npmts.ship");
|
|||||||
* Since yarn is out and there is heavy caching going on,
|
* Since yarn is out and there is heavy caching going on,
|
||||||
* pure download stats are just not reliable enough for us anymore
|
* 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.
|
* 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.
|
* It is just an https call to our own Lossless Analytics API.
|
||||||
* Our privacy policy can be found here: https://lossless.gmbh/privacy.html
|
* Our privacy policy can be found here: https://lossless.gmbh/privacy.html
|
||||||
*/
|
*/
|
||||||
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts', 'UA-64087619-5');
|
let npmtsAnalytics = new plugins.smartanalytics.Analytics({
|
||||||
npmtsAnalytics.sendEvent('npm', 'exec', 'git.zone');
|
apiEndPoint: 'https://pubapi.lossless.one/analytics',
|
||||||
|
projectId: 'gitzone',
|
||||||
|
appName: 'npmts'
|
||||||
|
});
|
||||||
|
process.nextTick(() => __awaiter(this, void 0, void 0, function* () {
|
||||||
|
// make the analytics call
|
||||||
|
npmtsAnalytics.recordEvent('npmToolExecution', {
|
||||||
|
executionMode: (yield NpmtsConfig.configPromise).mode,
|
||||||
|
tsOptions: (yield NpmtsConfig.configPromise).tsOptions,
|
||||||
|
watch: (yield NpmtsConfig.configPromise).watch,
|
||||||
|
coverageTreshold: (yield NpmtsConfig.configPromise).coverageTreshold
|
||||||
|
}).catch(err => {
|
||||||
|
plugins.beautylog.warn('Lossless Analytics API not available...');
|
||||||
|
});
|
||||||
|
}));
|
||||||
exports.run = () => __awaiter(this, void 0, void 0, function* () {
|
exports.run = () => __awaiter(this, void 0, void 0, function* () {
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
|
plugins.beautylog.figletSync('NPMTS');
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
||||||
// check for updates
|
// check for updates
|
||||||
yield plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version);
|
yield plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version, 'http://gitzone.gitlab.io/npmts/changelog.html');
|
||||||
|
plugins.beautylog.log('---------------------------------------------');
|
||||||
let npmtsCli = new plugins.smartcli.Smartcli();
|
let npmtsCli = new plugins.smartcli.Smartcli();
|
||||||
npmtsCli.standardTask()
|
npmtsCli.standardTask()
|
||||||
.then((argvArg) => {
|
.then((argvArg) => {
|
||||||
plugins.beautylog.figletSync('NPMTS');
|
|
||||||
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version);
|
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version);
|
||||||
return NpmtsConfig.run(argvArg);
|
return NpmtsConfig.run(argvArg);
|
||||||
})
|
})
|
||||||
|
1
dist/npmts.config.d.ts
vendored
1
dist/npmts.config.d.ts
vendored
@ -23,3 +23,4 @@ export interface INpmtsConfig {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
export declare let run: (argvArg: any) => Promise<{}>;
|
export declare let run: (argvArg: any) => Promise<{}>;
|
||||||
|
export declare let configPromise: Promise<INpmtsConfig>;
|
||||||
|
8
dist/npmts.config.js
vendored
8
dist/npmts.config.js
vendored
@ -2,9 +2,9 @@
|
|||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
const paths = require("./npmts.paths");
|
const paths = require("./npmts.paths");
|
||||||
const q = require("smartq");
|
const smartq = require("smartq");
|
||||||
exports.run = function (argvArg) {
|
exports.run = function (argvArg) {
|
||||||
let done = q.defer();
|
let done = smartq.defer();
|
||||||
let defaultConfig = {
|
let defaultConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
@ -63,5 +63,9 @@ exports.run = function (argvArg) {
|
|||||||
}
|
}
|
||||||
plugins.beautylog.ok('build options are ready!');
|
plugins.beautylog.ok('build options are ready!');
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
|
configDeferred.resolve(config);
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
|
// config deferred usage
|
||||||
|
let configDeferred = smartq.defer();
|
||||||
|
exports.configPromise = configDeferred.promise;
|
||||||
|
26
docs/structure.md
Normal file
26
docs/structure.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
---
|
||||||
|
name: npmts project structure
|
||||||
|
description: how npmts projects are structured
|
||||||
|
---
|
||||||
|
# npmts - Project Structure
|
||||||
|
|
||||||
|
**locally**
|
||||||
|
|
||||||
|
```text
|
||||||
|
projectroot
|
||||||
|
|- .nogit/ # contains files that should not be checked into git - NOgit
|
||||||
|
|- dist/ # contains compiled js files and their corresponding typings - git
|
||||||
|
|- node_modules/ # contains the installed node modules - NOgit
|
||||||
|
|- test/ # contains the test files - git
|
||||||
|
|- ts/ # contains the source TypeScript files - git
|
||||||
|
|
|
||||||
|
|- .gitignore # the normal gitignore file
|
||||||
|
|- .gitlab-ci.yml # the gitlab ci yml file
|
||||||
|
|- npmextra.json # npmextra.json
|
||||||
|
|- package.json # the standard npm module package.json file
|
||||||
|
|- readme.md # the standard project readme
|
||||||
|
|- tslint.json # the standard tslint.json for TypeScript
|
||||||
|
|- yarn.lock # yarn.lock - the standard yarn.lock file
|
||||||
|
```
|
||||||
|
|
||||||
|
**in git**
|
18
package.json
18
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "8.0.8",
|
"version": "8.0.23",
|
||||||
"description": "best practice npm TypeScript modules",
|
"description": "best practice npm TypeScript modules",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
@ -35,34 +35,34 @@
|
|||||||
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/gulp-sourcemaps": "0.0.31",
|
"@types/gulp-sourcemaps": "0.0.31",
|
||||||
"@types/minimatch": "^3.0.0",
|
"@types/minimatch": "^3.0.1",
|
||||||
"@types/through2": "^2.0.33",
|
"@types/through2": "^2.0.33",
|
||||||
"beautylog": "^6.1.10",
|
"beautylog": "^6.1.10",
|
||||||
"depcheck": "^0.6.7",
|
"depcheck": "^0.6.7",
|
||||||
"early": "^2.1.1",
|
"early": "^2.1.1",
|
||||||
"gulp-function": "^2.2.9",
|
"gulp-function": "^2.2.9",
|
||||||
"gulp-sourcemaps": "^2.6.0",
|
"gulp-sourcemaps": "^2.6.1",
|
||||||
"gulp-typescript": "^3.2.1",
|
"gulp-typescript": "^3.2.2",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"npmextra": "^2.0.9",
|
"npmextra": "^2.0.9",
|
||||||
"projectinfo": "^3.0.2",
|
"projectinfo": "^3.0.4",
|
||||||
"smartanalytics": "^1.0.6",
|
"smartanalytics": "^2.0.9",
|
||||||
"smartchok": "^1.0.11",
|
"smartchok": "^1.0.11",
|
||||||
"smartcli": "^2.0.7",
|
"smartcli": "^2.0.7",
|
||||||
"smartcov": "^1.0.2",
|
"smartcov": "^1.0.2",
|
||||||
"smarterror": "^1.0.3",
|
"smarterror": "^1.0.3",
|
||||||
"smartfile": "^4.2.20",
|
"smartfile": "^4.2.26",
|
||||||
"smartgulp": "^1.0.6",
|
"smartgulp": "^1.0.6",
|
||||||
"smartpath": "^3.2.8",
|
"smartpath": "^3.2.8",
|
||||||
"smartq": "^1.1.6",
|
"smartq": "^1.1.6",
|
||||||
"smartstream": "^1.0.10",
|
"smartstream": "^1.0.10",
|
||||||
"smartstring": "^2.0.24",
|
"smartstring": "^2.0.24",
|
||||||
"smartsystem": "^2.0.2",
|
"smartsystem": "^2.0.2",
|
||||||
"smartupdate": "^1.0.4",
|
"smartupdate": "^1.0.12",
|
||||||
"tapbuffer": "^1.0.29",
|
"tapbuffer": "^1.0.29",
|
||||||
"through2": "^2.0.3",
|
"through2": "^2.0.3",
|
||||||
"tsn": "^2.0.15",
|
"tsn": "^2.0.15",
|
||||||
"typescript": "^2.4.2",
|
"typescript": "^2.5.2",
|
||||||
"typings-global": "^1.0.20"
|
"typings-global": "^1.0.20"
|
||||||
},
|
},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
|
@ -10,6 +10,16 @@ import * as q from 'smartq'
|
|||||||
import { INpmtsConfig } from '../npmts.config'
|
import { INpmtsConfig } from '../npmts.config'
|
||||||
import { Smartfile } from 'smartfile'
|
import { Smartfile } from 'smartfile'
|
||||||
|
|
||||||
|
let testTypeScriptConfig = {
|
||||||
|
target: 'ES5',
|
||||||
|
emitDecoratorMetadata: true,
|
||||||
|
experimentalDecorators: true,
|
||||||
|
lib: [
|
||||||
|
'DOM',
|
||||||
|
'ESNext'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* runs mocha
|
* runs mocha
|
||||||
* @returns INpmtsConfig
|
* @returns INpmtsConfig
|
||||||
@ -30,12 +40,7 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([ plugins.path.join(paths.cwd, './ts/**/*.ts') ]),
|
plugins.smartgulp.src([ plugins.path.join(paths.cwd, './ts/**/*.ts') ]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript(testTypeScriptConfig),
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestableFiles(),
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
@ -47,12 +52,7 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
plugins.smartgulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript(testTypeScriptConfig),
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestFiles(),
|
npmtsTapBuffer.pipeTestFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
|
@ -15,21 +15,38 @@ import * as NpmtsShip from './npmts.ship'
|
|||||||
* Since yarn is out and there is heavy caching going on,
|
* Since yarn is out and there is heavy caching going on,
|
||||||
* pure download stats are just not reliable enough for us anymore
|
* 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.
|
* 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.
|
* It is just an https call to our own Lossless Analytics API.
|
||||||
* Our privacy policy can be found here: https://lossless.gmbh/privacy.html
|
* Our privacy policy can be found here: https://lossless.gmbh/privacy.html
|
||||||
*/
|
*/
|
||||||
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts','UA-64087619-5')
|
let npmtsAnalytics = new plugins.smartanalytics.Analytics({
|
||||||
npmtsAnalytics.sendEvent('npm','exec','git.zone')
|
apiEndPoint: 'https://pubapi.lossless.one/analytics',
|
||||||
|
projectId: 'gitzone',
|
||||||
|
appName: 'npmts'
|
||||||
|
})
|
||||||
|
|
||||||
|
process.nextTick(async () => {
|
||||||
|
// make the analytics call
|
||||||
|
npmtsAnalytics.recordEvent('npmToolExecution', {
|
||||||
|
executionMode: (await NpmtsConfig.configPromise).mode,
|
||||||
|
tsOptions: (await NpmtsConfig.configPromise).tsOptions,
|
||||||
|
watch: (await NpmtsConfig.configPromise).watch,
|
||||||
|
coverageTreshold: (await NpmtsConfig.configPromise).coverageTreshold
|
||||||
|
}).catch(err => {
|
||||||
|
plugins.beautylog.warn('Lossless Analytics API not available...')
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
export let run = async () => {
|
export let run = async () => {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
|
|
||||||
|
plugins.beautylog.figletSync('NPMTS')
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot)
|
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot)
|
||||||
// check for updates
|
// check for updates
|
||||||
await plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version)
|
await plugins.smartupdate.standardHandler.check('npmts', npmtsProjectInfo.version, 'http://gitzone.gitlab.io/npmts/changelog.html')
|
||||||
|
plugins.beautylog.log('---------------------------------------------')
|
||||||
let npmtsCli = new plugins.smartcli.Smartcli()
|
let npmtsCli = new plugins.smartcli.Smartcli()
|
||||||
npmtsCli.standardTask()
|
npmtsCli.standardTask()
|
||||||
.then((argvArg) => {
|
.then((argvArg) => {
|
||||||
plugins.beautylog.figletSync('NPMTS')
|
|
||||||
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version)
|
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version)
|
||||||
return NpmtsConfig.run(argvArg)
|
return NpmtsConfig.run(argvArg)
|
||||||
})
|
})
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import plugins = require('./npmts.plugins')
|
import plugins = require('./npmts.plugins')
|
||||||
import paths = require('./npmts.paths')
|
import paths = require('./npmts.paths')
|
||||||
|
|
||||||
import * as q from 'smartq'
|
import * as smartq from 'smartq'
|
||||||
|
|
||||||
// interfaces
|
// interfaces
|
||||||
import { ITapbufferConfig } from 'tapbuffer'
|
import { ITapbufferConfig } from 'tapbuffer'
|
||||||
@ -32,7 +32,7 @@ export interface INpmtsConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export let run = function (argvArg) {
|
export let run = function (argvArg) {
|
||||||
let done = q.defer()
|
let done = smartq.defer()
|
||||||
let defaultConfig: INpmtsConfig = {
|
let defaultConfig: INpmtsConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
@ -104,5 +104,10 @@ export let run = function (argvArg) {
|
|||||||
|
|
||||||
plugins.beautylog.ok('build options are ready!')
|
plugins.beautylog.ok('build options are ready!')
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
|
configDeferred.resolve(config)
|
||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// config deferred usage
|
||||||
|
let configDeferred = smartq.defer<INpmtsConfig>()
|
||||||
|
export let configPromise = configDeferred.promise
|
||||||
|
@ -8,27 +8,27 @@ import { INpmtsConfig } from './npmts.config'
|
|||||||
|
|
||||||
let npmtsSmartchok: smartchok.Smartchok = null
|
let npmtsSmartchok: smartchok.Smartchok = null
|
||||||
export let run = (configArg: INpmtsConfig) => {
|
export let run = (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
if (configArg.watch && npmtsSmartchok === null) {
|
if (configArg.watch && npmtsSmartchok === null) {
|
||||||
let pathsToWatch: string[] = []
|
let pathsToWatch: string[] = []
|
||||||
for (let key in configArg.ts) {
|
for (let key in configArg.ts) {
|
||||||
pathsToWatch.push(key)
|
pathsToWatch.push(key)
|
||||||
}
|
|
||||||
for (let key in configArg.testTs) {
|
|
||||||
pathsToWatch.push(key)
|
|
||||||
}
|
|
||||||
npmtsSmartchok = new smartchok.Smartchok(pathsToWatch)
|
|
||||||
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
|
||||||
plugins.beautylog.info('now watching...')
|
|
||||||
changeObservableArg.subscribe(() => {
|
|
||||||
cli.run()
|
|
||||||
})
|
|
||||||
})
|
|
||||||
npmtsSmartchok.start()
|
|
||||||
done.resolve(configArg)
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.info('not watching')
|
|
||||||
done.resolve(configArg)
|
|
||||||
}
|
}
|
||||||
return done.promise
|
for (let key in configArg.testTs) {
|
||||||
|
pathsToWatch.push(key)
|
||||||
|
}
|
||||||
|
npmtsSmartchok = new smartchok.Smartchok(pathsToWatch)
|
||||||
|
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
||||||
|
plugins.beautylog.info('now watching...')
|
||||||
|
changeObservableArg.subscribe(() => {
|
||||||
|
cli.run()
|
||||||
|
})
|
||||||
|
})
|
||||||
|
npmtsSmartchok.start()
|
||||||
|
done.resolve(configArg)
|
||||||
|
} else {
|
||||||
|
plugins.beautylog.info('not watching')
|
||||||
|
done.resolve(configArg)
|
||||||
|
}
|
||||||
|
return done.promise
|
||||||
}
|
}
|
||||||
|
429
yarn.lock
429
yarn.lock
@ -27,22 +27,22 @@
|
|||||||
"@types/promises-a-plus" "*"
|
"@types/promises-a-plus" "*"
|
||||||
|
|
||||||
"@types/chai-string@^1.1.30":
|
"@types/chai-string@^1.1.30":
|
||||||
version "1.1.30"
|
version "1.1.31"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.1.30.tgz#4d8744b31a5a2295fc01c981ed1e2d4c8a070f0a"
|
resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.1.31.tgz#a22f75d713f69da8c5cf34f8bc808a62cd249405"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/chai" "*"
|
"@types/chai" "*"
|
||||||
|
|
||||||
"@types/chai@*":
|
"@types/chai@*":
|
||||||
version "4.0.3"
|
version "4.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.0.3.tgz#6c2264b195cd2bb4c95c108487e13df0c8567c3e"
|
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.0.4.tgz#fe86315d9a66827feeb16f73bc954688ec950e18"
|
||||||
|
|
||||||
"@types/chai@^3.4.35":
|
"@types/chai@^3.4.35":
|
||||||
version "3.5.2"
|
version "3.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.5.2.tgz#c11cd2817d3a401b7ba0f5a420f35c56139b1c1e"
|
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-3.5.2.tgz#c11cd2817d3a401b7ba0f5a420f35c56139b1c1e"
|
||||||
|
|
||||||
"@types/chokidar@^1.7.0":
|
"@types/chokidar@^1.7.0":
|
||||||
version "1.7.1"
|
version "1.7.3"
|
||||||
resolved "https://registry.yarnpkg.com/@types/chokidar/-/chokidar-1.7.1.tgz#f958c073fab94c2a9c67cca11ccdb80fd5c1b488"
|
resolved "https://registry.yarnpkg.com/@types/chokidar/-/chokidar-1.7.3.tgz#ca87a53aa596c01eb93237ab4055edf71dcb9ca6"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
@ -50,21 +50,15 @@
|
|||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/cron/-/cron-1.2.1.tgz#95c1e432d6106ca34c92f0743638bc786c073faa"
|
resolved "https://registry.yarnpkg.com/@types/cron/-/cron-1.2.1.tgz#95c1e432d6106ca34c92f0743638bc786c073faa"
|
||||||
|
|
||||||
"@types/fs-extra@0.x.x":
|
|
||||||
version "0.0.37"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-0.0.37.tgz#195f11bcd9a1b97d9e412c6b66899b545471a1f7"
|
|
||||||
dependencies:
|
|
||||||
"@types/node" "*"
|
|
||||||
|
|
||||||
"@types/fs-extra@4.x.x":
|
"@types/fs-extra@4.x.x":
|
||||||
version "4.0.0"
|
version "4.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-4.0.0.tgz#1dd742ad5c9bce308f7a52d02ebc01421bc9102f"
|
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-4.0.2.tgz#7b9b1bbf85962cbe029b5a83c9b530d7c75af3ba"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/glob@*":
|
"@types/glob@*":
|
||||||
version "5.0.31"
|
version "5.0.32"
|
||||||
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.31.tgz#6cb8500bd170750c1948f785cc5828e9cff0c36a"
|
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.32.tgz#aec5cfe987c72f099fdb1184452986aa506d5e8f"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/minimatch" "*"
|
"@types/minimatch" "*"
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
@ -79,35 +73,35 @@
|
|||||||
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.x.x", "@types/lodash@^4.14.50", "@types/lodash@^4.14.55", "@types/lodash@^4.14.64", "@types/lodash@^4.14.67", "@types/lodash@^4.14.68":
|
"@types/lodash@4.x.x", "@types/lodash@^4.14.50", "@types/lodash@^4.14.55", "@types/lodash@^4.14.64", "@types/lodash@^4.14.68", "@types/lodash@^4.14.74":
|
||||||
version "4.14.73"
|
version "4.14.74"
|
||||||
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.73.tgz#9837e47db8643ba5bcef2c7921f37d90f9c24213"
|
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.74.tgz#ac3bd8db988e7f7038e5d22bd76a7ba13f876168"
|
||||||
|
|
||||||
"@types/minimatch@*", "@types/minimatch@^3.0.0":
|
"@types/minimatch@*", "@types/minimatch@3.x.x", "@types/minimatch@^3.0.1":
|
||||||
version "3.0.0"
|
version "3.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.0.tgz#a8b68c324817169b6004b432a598478a5d8f025a"
|
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.1.tgz#b683eb60be358304ef146f5775db4c0e3696a550"
|
||||||
|
|
||||||
"@types/minimatch@2.x.x":
|
|
||||||
version "2.0.29"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-2.0.29.tgz#5002e14f75e2d71e564281df0431c8c1b4a2a36a"
|
|
||||||
|
|
||||||
"@types/node@*", "@types/node@^8.0.10":
|
"@types/node@*", "@types/node@^8.0.10":
|
||||||
version "8.0.22"
|
version "8.0.30"
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.22.tgz#9c6bfee1f45f5e9952ff6b487e657ecca48c7777"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.30.tgz#aa3c42946fc6357737eb215349fe728b38679d05"
|
||||||
|
|
||||||
|
"@types/open@^0.0.29":
|
||||||
|
version "0.0.29"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/open/-/open-0.0.29.tgz#3de910012674909db14d608d1fde44ffa7a9ecea"
|
||||||
|
|
||||||
"@types/promises-a-plus@*":
|
"@types/promises-a-plus@*":
|
||||||
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@0.0.32":
|
"@types/q@1.0.5", "@types/q@1.x.x":
|
||||||
version "0.0.32"
|
version "1.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/@types/q/-/q-0.0.32.tgz#bd284e57c84f1325da702babfc82a5328190c0c5"
|
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.0.5.tgz#02b9d43a1a8e7503d15ed2fecb15ebb18c519b1d"
|
||||||
|
|
||||||
"@types/q@1.x.x":
|
"@types/semver@^5.3.33":
|
||||||
version "1.0.3"
|
version "5.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.0.3.tgz#08e99d20f7abfc0fe202b6d5a0921bfafcdea8d0"
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-5.4.0.tgz#f3658535af7f1f502acd6da7daf405ffeb1f7ee4"
|
||||||
|
|
||||||
"@types/shelljs@^0.7.2":
|
"@types/shelljs@^0.7.4":
|
||||||
version "0.7.4"
|
version "0.7.4"
|
||||||
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.7.4.tgz#137b5f31306eaff4de120ffe5b9d74b297809cfc"
|
resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.7.4.tgz#137b5f31306eaff4de120ffe5b9d74b297809cfc"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -126,9 +120,9 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
"@types/vinyl@^2.0.0":
|
"@types/vinyl@^2.0.1":
|
||||||
version "2.0.0"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/vinyl/-/vinyl-2.0.0.tgz#fd213bf7f4136dde21fe1895500b12c186f8c268"
|
resolved "https://registry.yarnpkg.com/@types/vinyl/-/vinyl-2.0.1.tgz#6b414dfdcd4a785e8e76e87565ed29e79490d9b7"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/node" "*"
|
"@types/node" "*"
|
||||||
|
|
||||||
@ -153,8 +147,8 @@ acorn@4.X:
|
|||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
|
||||||
|
|
||||||
acorn@^5.0.3:
|
acorn@^5.0.3:
|
||||||
version "5.1.1"
|
version "5.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75"
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.2.tgz#911cb53e036807cf0fa778dc5d370fbd864246d7"
|
||||||
|
|
||||||
ajv@^4.9.1:
|
ajv@^4.9.1:
|
||||||
version "4.11.8"
|
version "4.11.8"
|
||||||
@ -199,8 +193,8 @@ anymatch@^1.3.0:
|
|||||||
normalize-path "^2.0.0"
|
normalize-path "^2.0.0"
|
||||||
|
|
||||||
aproba@^1.0.3:
|
aproba@^1.0.3:
|
||||||
version "1.1.2"
|
version "1.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1"
|
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
|
||||||
|
|
||||||
are-we-there-yet@~1.1.2:
|
are-we-there-yet@~1.1.2:
|
||||||
version "1.1.4"
|
version "1.1.4"
|
||||||
@ -339,12 +333,11 @@ bcrypt-pbkdf@^1.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
tweetnacl "^0.14.3"
|
tweetnacl "^0.14.3"
|
||||||
|
|
||||||
beautycolor@^1.0.10, beautycolor@^1.0.7, beautycolor@^1.0.9:
|
beautycolor@^1.0.11, beautycolor@^1.0.7, beautycolor@^1.0.9:
|
||||||
version "1.0.10"
|
version "1.0.11"
|
||||||
resolved "https://registry.yarnpkg.com/beautycolor/-/beautycolor-1.0.10.tgz#4b50758e59115839b3bb2bfe8aaaec9e29c747dd"
|
resolved "https://registry.yarnpkg.com/beautycolor/-/beautycolor-1.0.11.tgz#71c5568d5a7ed5c144d3a54f753ad1b08862aea5"
|
||||||
dependencies:
|
dependencies:
|
||||||
ansi-256-colors "^1.1.0"
|
ansi-256-colors "^1.1.0"
|
||||||
tapbundle "^1.1.1"
|
|
||||||
typings-global "^1.0.14"
|
typings-global "^1.0.14"
|
||||||
|
|
||||||
beautylog@5.0.12:
|
beautylog@5.0.12:
|
||||||
@ -395,10 +388,6 @@ binary-extensions@^1.0.0:
|
|||||||
version "1.10.0"
|
version "1.10.0"
|
||||||
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
|
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.10.0.tgz#9aeb9a6c5e88638aad171e167f5900abe24835d0"
|
||||||
|
|
||||||
bindings@^1.2.1:
|
|
||||||
version "1.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.3.0.tgz#b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7"
|
|
||||||
|
|
||||||
block-stream@*:
|
block-stream@*:
|
||||||
version "0.0.9"
|
version "0.0.9"
|
||||||
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
|
||||||
@ -543,8 +532,8 @@ cli-spinners@^0.1.2:
|
|||||||
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c"
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c"
|
||||||
|
|
||||||
cli-spinners@^1.0.0:
|
cli-spinners@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a"
|
resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.1.tgz#2675321c100f195b02877ac499e9911fa34b9783"
|
||||||
|
|
||||||
cli-table2@^0.2.0:
|
cli-table2@^0.2.0:
|
||||||
version "0.2.0"
|
version "0.2.0"
|
||||||
@ -638,16 +627,16 @@ convert-source-map@1.X, convert-source-map@^1.1.1:
|
|||||||
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
|
||||||
|
|
||||||
core-js@^2.4.0:
|
core-js@^2.4.0:
|
||||||
version "2.5.0"
|
version "2.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.0.tgz#569c050918be6486b3837552028ae0466b717086"
|
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.5.1.tgz#ae6874dc66937789b80754ff5428df66819ca50b"
|
||||||
|
|
||||||
core-util-is@1.0.2, core-util-is@~1.0.0:
|
core-util-is@1.0.2, core-util-is@~1.0.0:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
|
||||||
|
|
||||||
cron@^1.2.1:
|
cron@^1.2.1:
|
||||||
version "1.2.1"
|
version "1.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/cron/-/cron-1.2.1.tgz#3a86c09b41b8f261ac863a7cc85ea4735857eab2"
|
resolved "https://registry.yarnpkg.com/cron/-/cron-1.3.0.tgz#7e459968eaf94e1a445be796ce402166c234659d"
|
||||||
dependencies:
|
dependencies:
|
||||||
moment-timezone "^0.5.x"
|
moment-timezone "^0.5.x"
|
||||||
|
|
||||||
@ -707,10 +696,10 @@ dateformat@^1.0.11:
|
|||||||
meow "^3.3.0"
|
meow "^3.3.0"
|
||||||
|
|
||||||
dateformat@^2.0.0:
|
dateformat@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.0.0.tgz#2743e3abb5c3fc2462e527dca445e04e9f4dee17"
|
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062"
|
||||||
|
|
||||||
debug-fabulous@0.1.X:
|
debug-fabulous@>=0.1.1:
|
||||||
version "0.1.1"
|
version "0.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.1.1.tgz#1b970878c9fa4fbd1c88306eab323c830c58f1d6"
|
resolved "https://registry.yarnpkg.com/debug-fabulous/-/debug-fabulous-0.1.1.tgz#1b970878c9fa4fbd1c88306eab323c830c58f1d6"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -725,8 +714,8 @@ debug@2.3.0:
|
|||||||
ms "0.7.2"
|
ms "0.7.2"
|
||||||
|
|
||||||
debug@^2.1.3, debug@^2.2.0, debug@^2.6.8:
|
debug@^2.1.3, debug@^2.2.0, debug@^2.6.8:
|
||||||
version "2.6.8"
|
version "2.6.9"
|
||||||
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc"
|
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
|
||||||
dependencies:
|
dependencies:
|
||||||
ms "2.0.0"
|
ms "2.0.0"
|
||||||
|
|
||||||
@ -841,11 +830,11 @@ error-ex@^1.2.0:
|
|||||||
is-arrayish "^0.2.1"
|
is-arrayish "^0.2.1"
|
||||||
|
|
||||||
es-abstract@^1.5.1:
|
es-abstract@^1.5.1:
|
||||||
version "1.8.0"
|
version "1.8.2"
|
||||||
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.0.tgz#3b00385e85729932beffa9163bbea1234e932914"
|
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.8.2.tgz#25103263dc4decbda60e0c737ca32313518027ee"
|
||||||
dependencies:
|
dependencies:
|
||||||
es-to-primitive "^1.1.1"
|
es-to-primitive "^1.1.1"
|
||||||
function-bind "^1.1.0"
|
function-bind "^1.1.1"
|
||||||
has "^1.0.1"
|
has "^1.0.1"
|
||||||
is-callable "^1.1.3"
|
is-callable "^1.1.3"
|
||||||
is-regex "^1.0.4"
|
is-regex "^1.0.4"
|
||||||
@ -858,17 +847,13 @@ es-to-primitive@^1.1.1:
|
|||||||
is-date-object "^1.0.1"
|
is-date-object "^1.0.1"
|
||||||
is-symbol "^1.0.1"
|
is-symbol "^1.0.1"
|
||||||
|
|
||||||
es5-ext@^0.10.12, es5-ext@^0.10.13, es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2:
|
es5-ext@^0.10.12, es5-ext@^0.10.14, es5-ext@^0.10.30, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2:
|
||||||
version "0.10.27"
|
version "0.10.30"
|
||||||
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.27.tgz#bf926b058c62b1cb5de1a887930673b6aa6d9a66"
|
resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.30.tgz#7141a16836697dbabfaaaeee41495ce29f52c939"
|
||||||
dependencies:
|
dependencies:
|
||||||
es6-iterator "2"
|
es6-iterator "2"
|
||||||
es6-symbol "~3.1"
|
es6-symbol "~3.1"
|
||||||
|
|
||||||
es6-error@^4.0.2:
|
|
||||||
version "4.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.0.2.tgz#eec5c726eacef51b7f6b73c20db6e1b13b069c98"
|
|
||||||
|
|
||||||
es6-iterator@2, es6-iterator@^2.0.1:
|
es6-iterator@2, es6-iterator@^2.0.1:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
|
resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512"
|
||||||
@ -884,7 +869,7 @@ es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1:
|
|||||||
d "1"
|
d "1"
|
||||||
es5-ext "~0.10.14"
|
es5-ext "~0.10.14"
|
||||||
|
|
||||||
es6-weak-map@^2.0.1:
|
es6-weak-map@^2.0.2:
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
|
resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -924,7 +909,7 @@ esutils@^2.0.2:
|
|||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
|
||||||
|
|
||||||
event-emitter@^0.3.4:
|
event-emitter@^0.3.5:
|
||||||
version "0.3.5"
|
version "0.3.5"
|
||||||
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
|
resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1076,19 +1061,19 @@ fraction.js@4.0.2:
|
|||||||
version "4.0.2"
|
version "4.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.2.tgz#0eae896626f334b1bde763371347a83b5575d7f0"
|
resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.2.tgz#0eae896626f334b1bde763371347a83b5575d7f0"
|
||||||
|
|
||||||
fs-extra@^2.0.0, fs-extra@^2.1.2:
|
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:
|
||||||
graceful-fs "^4.1.2"
|
graceful-fs "^4.1.2"
|
||||||
jsonfile "^2.1.0"
|
jsonfile "^2.1.0"
|
||||||
|
|
||||||
fs-extra@^4.0.0:
|
fs-extra@^4.0.2:
|
||||||
version "4.0.1"
|
version "4.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.1.tgz#7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880"
|
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b"
|
||||||
dependencies:
|
dependencies:
|
||||||
graceful-fs "^4.1.2"
|
graceful-fs "^4.1.2"
|
||||||
jsonfile "^3.0.0"
|
jsonfile "^4.0.0"
|
||||||
universalify "^0.1.0"
|
universalify "^0.1.0"
|
||||||
|
|
||||||
fs.realpath@^1.0.0:
|
fs.realpath@^1.0.0:
|
||||||
@ -1119,9 +1104,9 @@ fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
|
|||||||
mkdirp ">=0.5 0"
|
mkdirp ">=0.5 0"
|
||||||
rimraf "2"
|
rimraf "2"
|
||||||
|
|
||||||
function-bind@^1.0.2, function-bind@^1.1.0:
|
function-bind@^1.0.2, function-bind@^1.1.1:
|
||||||
version "1.1.0"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771"
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||||
|
|
||||||
gauge@~2.7.3:
|
gauge@~2.7.3:
|
||||||
version "2.7.4"
|
version "2.7.4"
|
||||||
@ -1197,7 +1182,7 @@ glob@^5.0.15, glob@^5.0.3:
|
|||||||
once "^1.3.0"
|
once "^1.3.0"
|
||||||
path-is-absolute "^1.0.0"
|
path-is-absolute "^1.0.0"
|
||||||
|
|
||||||
glob@^7.0.0, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
|
glob@^7.0.0, glob@^7.0.5, glob@^7.1.2:
|
||||||
version "7.1.2"
|
version "7.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1241,16 +1226,16 @@ gulp-sourcemaps@1.6.0:
|
|||||||
through2 "^2.0.0"
|
through2 "^2.0.0"
|
||||||
vinyl "^1.0.0"
|
vinyl "^1.0.0"
|
||||||
|
|
||||||
gulp-sourcemaps@^2.6.0:
|
gulp-sourcemaps@^2.6.1:
|
||||||
version "2.6.0"
|
version "2.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.0.tgz#7ccce899a8a3bfca1593a3348d0fbf41dd3f51e5"
|
resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-2.6.1.tgz#833a4e28f0b8f4661075032cd782417f7cd8fb0b"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@gulp-sourcemaps/identity-map" "1.X"
|
"@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.1.X"
|
debug-fabulous ">=0.1.1"
|
||||||
detect-newline "2.X"
|
detect-newline "2.X"
|
||||||
graceful-fs "4.X"
|
graceful-fs "4.X"
|
||||||
source-map "0.X"
|
source-map "0.X"
|
||||||
@ -1258,9 +1243,9 @@ gulp-sourcemaps@^2.6.0:
|
|||||||
through2 "2.X"
|
through2 "2.X"
|
||||||
vinyl "1.X"
|
vinyl "1.X"
|
||||||
|
|
||||||
gulp-typescript@^3.2.1:
|
gulp-typescript@^3.2.2:
|
||||||
version "3.2.1"
|
version "3.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/gulp-typescript/-/gulp-typescript-3.2.1.tgz#52cd77e9c6844e3b9a8bddd88e884ceb46a5db79"
|
resolved "https://registry.yarnpkg.com/gulp-typescript/-/gulp-typescript-3.2.2.tgz#b7e5e1d3cb35f772e53e604026601826e2be77fc"
|
||||||
dependencies:
|
dependencies:
|
||||||
gulp-util "~3.0.7"
|
gulp-util "~3.0.7"
|
||||||
source-map "~0.5.3"
|
source-map "~0.5.3"
|
||||||
@ -1366,7 +1351,7 @@ has@^1.0.1:
|
|||||||
dependencies:
|
dependencies:
|
||||||
function-bind "^1.0.2"
|
function-bind "^1.0.2"
|
||||||
|
|
||||||
hawk@~3.1.3:
|
hawk@3.1.3, hawk@~3.1.3:
|
||||||
version "3.1.3"
|
version "3.1.3"
|
||||||
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1419,8 +1404,8 @@ ini@~1.3.0:
|
|||||||
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
|
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e"
|
||||||
|
|
||||||
interpret@^1.0.0:
|
interpret@^1.0.0:
|
||||||
version "1.0.3"
|
version "1.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90"
|
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0"
|
||||||
|
|
||||||
invariant@^2.2.2:
|
invariant@^2.2.2:
|
||||||
version "2.2.2"
|
version "2.2.2"
|
||||||
@ -1606,16 +1591,16 @@ javascript-natural-sort@0.7.1:
|
|||||||
resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59"
|
resolved "https://registry.yarnpkg.com/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz#f9e2303d4507f6d74355a73664d1440fb5a0ef59"
|
||||||
|
|
||||||
js-base64@^2.1.9:
|
js-base64@^2.1.9:
|
||||||
version "2.1.9"
|
version "2.3.2"
|
||||||
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce"
|
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.3.2.tgz#a79a923666372b580f8e27f51845c6f7e8fbfbaf"
|
||||||
|
|
||||||
js-tokens@^3.0.0, js-tokens@^3.0.2:
|
js-tokens@^3.0.0, js-tokens@^3.0.2:
|
||||||
version "3.0.2"
|
version "3.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
||||||
|
|
||||||
js-yaml@3.x, js-yaml@^3.2.7, js-yaml@^3.3.1, js-yaml@^3.4.2, js-yaml@^3.7.0, js-yaml@^3.9.1:
|
js-yaml@3.x, js-yaml@^3.10.0, js-yaml@^3.2.7, js-yaml@^3.3.1, js-yaml@^3.4.2:
|
||||||
version "3.9.1"
|
version "3.10.0"
|
||||||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0"
|
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
|
||||||
dependencies:
|
dependencies:
|
||||||
argparse "^1.0.7"
|
argparse "^1.0.7"
|
||||||
esprima "^4.0.0"
|
esprima "^4.0.0"
|
||||||
@ -1644,9 +1629,9 @@ jsonfile@^2.1.0:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
graceful-fs "^4.1.6"
|
graceful-fs "^4.1.6"
|
||||||
|
|
||||||
jsonfile@^3.0.0:
|
jsonfile@^4.0.0:
|
||||||
version "3.0.1"
|
version "4.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66"
|
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
graceful-fs "^4.1.6"
|
graceful-fs "^4.1.6"
|
||||||
|
|
||||||
@ -1695,20 +1680,6 @@ lcov-parse@0.0.10:
|
|||||||
version "0.0.10"
|
version "0.0.10"
|
||||||
resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
|
resolved "https://registry.yarnpkg.com/lcov-parse/-/lcov-parse-0.0.10.tgz#1b0b8ff9ac9c7889250582b70b71315d9da6d9a3"
|
||||||
|
|
||||||
leakage@^0.3.0:
|
|
||||||
version "0.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/leakage/-/leakage-0.3.0.tgz#15d698abdc76bbc6439601f4f3020e77e2d50c39"
|
|
||||||
dependencies:
|
|
||||||
es6-error "^4.0.2"
|
|
||||||
left-pad "^1.1.3"
|
|
||||||
memwatch-next "^0.3.0"
|
|
||||||
minimist "^1.2.0"
|
|
||||||
pretty-bytes "^4.0.2"
|
|
||||||
|
|
||||||
left-pad@^1.1.3:
|
|
||||||
version "1.1.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.1.3.tgz#612f61c033f3a9e08e939f1caebeea41b6f3199a"
|
|
||||||
|
|
||||||
levn@~0.3.0:
|
levn@~0.3.0:
|
||||||
version "0.3.0"
|
version "0.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
|
||||||
@ -1717,18 +1688,18 @@ levn@~0.3.0:
|
|||||||
type-check "~0.3.2"
|
type-check "~0.3.2"
|
||||||
|
|
||||||
lik@^1.0.30, lik@^1.0.32, lik@^1.0.38:
|
lik@^1.0.30, lik@^1.0.32, lik@^1.0.38:
|
||||||
version "1.0.38"
|
version "1.0.42"
|
||||||
resolved "https://registry.yarnpkg.com/lik/-/lik-1.0.38.tgz#ccff0abd3d9236a5e4b7d80d514c5c210f18469b"
|
resolved "https://registry.yarnpkg.com/lik/-/lik-1.0.42.tgz#e77604fac257c1b3552779c443de08c09b6e5332"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/lodash" "^4.14.67"
|
"@types/lodash" "^4.14.74"
|
||||||
"@types/minimatch" "2.x.x"
|
"@types/minimatch" "3.x.x"
|
||||||
"@types/q" "1.x.x"
|
"@types/q" "1.x.x"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
minimatch "^3.0.4"
|
minimatch "^3.0.4"
|
||||||
q "^1.5.0"
|
q "^1.5.0"
|
||||||
rxjs "^5.4.1"
|
rxjs "^5.4.3"
|
||||||
smartq "^1.1.1"
|
smartq "^1.1.6"
|
||||||
typings-global "^1.0.19"
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
load-json-file@^1.0.0:
|
load-json-file@^1.0.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
@ -1892,8 +1863,8 @@ map-obj@^1.0.0, map-obj@^1.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
|
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
|
||||||
|
|
||||||
mathjs@^3.10.3:
|
mathjs@^3.10.3:
|
||||||
version "3.16.1"
|
version "3.16.3"
|
||||||
resolved "https://registry.yarnpkg.com/mathjs/-/mathjs-3.16.1.tgz#ba69b6344ed10b19c17af568a4b718a85eee9900"
|
resolved "https://registry.yarnpkg.com/mathjs/-/mathjs-3.16.3.tgz#74f21d553d4cb1a82b480541ae1fcb0bd0f6f0aa"
|
||||||
dependencies:
|
dependencies:
|
||||||
complex.js "2.0.4"
|
complex.js "2.0.4"
|
||||||
decimal.js "7.2.3"
|
decimal.js "7.2.3"
|
||||||
@ -1910,24 +1881,17 @@ mem@^1.1.0:
|
|||||||
mimic-fn "^1.0.0"
|
mimic-fn "^1.0.0"
|
||||||
|
|
||||||
memoizee@^0.4.3, memoizee@^0.4.5:
|
memoizee@^0.4.3, memoizee@^0.4.5:
|
||||||
version "0.4.5"
|
version "0.4.11"
|
||||||
resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.5.tgz#1bc3ea1e4be056dd475d521979d7be3d5e5b21c8"
|
resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.11.tgz#bde9817663c9e40fdb2a4ea1c367296087ae8c8f"
|
||||||
dependencies:
|
dependencies:
|
||||||
d "1"
|
d "1"
|
||||||
es5-ext "^0.10.13"
|
es5-ext "^0.10.30"
|
||||||
es6-weak-map "^2.0.1"
|
es6-weak-map "^2.0.2"
|
||||||
event-emitter "^0.3.4"
|
event-emitter "^0.3.5"
|
||||||
is-promise "^2.1"
|
is-promise "^2.1"
|
||||||
lru-queue "0.1"
|
lru-queue "0.1"
|
||||||
next-tick "1"
|
next-tick "1"
|
||||||
timers-ext "0.1"
|
timers-ext "^0.1.2"
|
||||||
|
|
||||||
memwatch-next@^0.3.0:
|
|
||||||
version "0.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/memwatch-next/-/memwatch-next-0.3.0.tgz#2111050f9a906e0aa2d72a4ec0f0089c78726f8f"
|
|
||||||
dependencies:
|
|
||||||
bindings "^1.2.1"
|
|
||||||
nan "^2.3.2"
|
|
||||||
|
|
||||||
meow@^3.3.0:
|
meow@^3.3.0:
|
||||||
version "3.7.0"
|
version "3.7.0"
|
||||||
@ -1968,15 +1932,15 @@ micromatch@^2.1.5, micromatch@^2.3.7:
|
|||||||
parse-glob "^3.0.4"
|
parse-glob "^3.0.4"
|
||||||
regex-cache "^0.4.2"
|
regex-cache "^0.4.2"
|
||||||
|
|
||||||
mime-db@~1.29.0:
|
mime-db@~1.30.0:
|
||||||
version "1.29.0"
|
version "1.30.0"
|
||||||
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878"
|
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01"
|
||||||
|
|
||||||
mime-types@^2.1.12, mime-types@~2.1.7:
|
mime-types@^2.1.12, mime-types@~2.1.7:
|
||||||
version "2.1.16"
|
version "2.1.17"
|
||||||
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
|
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
|
||||||
dependencies:
|
dependencies:
|
||||||
mime-db "~1.29.0"
|
mime-db "~1.30.0"
|
||||||
|
|
||||||
mimic-fn@^1.0.0:
|
mimic-fn@^1.0.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
@ -2012,7 +1976,7 @@ moment-timezone@^0.5.x:
|
|||||||
dependencies:
|
dependencies:
|
||||||
moment ">= 2.9.0"
|
moment ">= 2.9.0"
|
||||||
|
|
||||||
"moment@>= 2.9.0":
|
"moment@>= 2.9.0", moment@^2.18.1:
|
||||||
version "2.18.1"
|
version "2.18.1"
|
||||||
resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
|
resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
|
||||||
|
|
||||||
@ -2030,9 +1994,9 @@ multipipe@^0.1.2:
|
|||||||
dependencies:
|
dependencies:
|
||||||
duplexer2 "0.0.2"
|
duplexer2 "0.0.2"
|
||||||
|
|
||||||
nan@^2.3.0, nan@^2.3.2:
|
nan@^2.3.0:
|
||||||
version "2.6.2"
|
version "2.7.0"
|
||||||
resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45"
|
resolved "https://registry.yarnpkg.com/nan/-/nan-2.7.0.tgz#d95bf721ec877e08db276ed3fc6eb78f9083ad46"
|
||||||
|
|
||||||
native-promise-only@^0.8.1:
|
native-promise-only@^0.8.1:
|
||||||
version "0.8.1"
|
version "0.8.1"
|
||||||
@ -2043,14 +2007,15 @@ next-tick@1:
|
|||||||
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
|
resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c"
|
||||||
|
|
||||||
node-pre-gyp@^0.6.36:
|
node-pre-gyp@^0.6.36:
|
||||||
version "0.6.36"
|
version "0.6.38"
|
||||||
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786"
|
resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.38.tgz#e92a20f83416415bb4086f6d1fb78b3da73d113d"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
hawk "3.1.3"
|
||||||
mkdirp "^0.5.1"
|
mkdirp "^0.5.1"
|
||||||
nopt "^4.0.1"
|
nopt "^4.0.1"
|
||||||
npmlog "^4.0.2"
|
npmlog "^4.0.2"
|
||||||
rc "^1.1.7"
|
rc "^1.1.7"
|
||||||
request "^2.81.0"
|
request "2.81.0"
|
||||||
rimraf "^2.6.1"
|
rimraf "^2.6.1"
|
||||||
semver "^5.3.0"
|
semver "^5.3.0"
|
||||||
tar "^2.2.1"
|
tar "^2.2.1"
|
||||||
@ -2165,6 +2130,10 @@ onetime@^2.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
mimic-fn "^1.0.0"
|
mimic-fn "^1.0.0"
|
||||||
|
|
||||||
|
open@^0.0.5:
|
||||||
|
version "0.0.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/open/-/open-0.0.5.tgz#42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc"
|
||||||
|
|
||||||
optimist@^0.6.1:
|
optimist@^0.6.1:
|
||||||
version "0.6.1"
|
version "0.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
|
resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
|
||||||
@ -2332,24 +2301,20 @@ preserve@^0.2.0:
|
|||||||
version "0.2.0"
|
version "0.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
|
||||||
|
|
||||||
pretty-bytes@^4.0.2:
|
|
||||||
version "4.0.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-4.0.2.tgz#b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9"
|
|
||||||
|
|
||||||
process-nextick-args@^1.0.6, process-nextick-args@~1.0.6:
|
process-nextick-args@^1.0.6, process-nextick-args@~1.0.6:
|
||||||
version "1.0.7"
|
version "1.0.7"
|
||||||
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
|
||||||
|
|
||||||
projectinfo@^3.0.2:
|
projectinfo@^3.0.4:
|
||||||
version "3.0.2"
|
version "3.0.4"
|
||||||
resolved "https://registry.yarnpkg.com/projectinfo/-/projectinfo-3.0.2.tgz#87edb5ccab792481226c558151b81ccfa9e070df"
|
resolved "https://registry.yarnpkg.com/projectinfo/-/projectinfo-3.0.4.tgz#ca7326b47cbee8e0aa07ed7aecdf05d9709941c5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/q" "0.0.32"
|
"@types/q" "1.0.5"
|
||||||
q "^1.4.1"
|
q "^1.5.0"
|
||||||
smartfile "4.1.6"
|
smartfile "^4.2.26"
|
||||||
smartpath "^3.2.8"
|
smartpath "^3.2.8"
|
||||||
smartstring "2.0.24"
|
smartstring "^2.0.24"
|
||||||
typings-global "^1.0.14"
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
pseudomap@^1.0.2:
|
pseudomap@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
@ -2481,11 +2446,10 @@ regenerator-runtime@^0.11.0:
|
|||||||
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
|
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz#7e54fe5b5ccd5d6624ea6255c3473be090b802e1"
|
||||||
|
|
||||||
regex-cache@^0.4.2:
|
regex-cache@^0.4.2:
|
||||||
version "0.4.3"
|
version "0.4.4"
|
||||||
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"
|
resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
|
||||||
dependencies:
|
dependencies:
|
||||||
is-equal-shallow "^0.1.3"
|
is-equal-shallow "^0.1.3"
|
||||||
is-primitive "^2.0.0"
|
|
||||||
|
|
||||||
remap-istanbul@^0.9.5:
|
remap-istanbul@^0.9.5:
|
||||||
version "0.9.5"
|
version "0.9.5"
|
||||||
@ -2524,7 +2488,7 @@ replace-ext@^1.0.0:
|
|||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
|
resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb"
|
||||||
|
|
||||||
request@^2.81.0:
|
request@2.81.0:
|
||||||
version "2.81.0"
|
version "2.81.0"
|
||||||
resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
|
resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2602,12 +2566,12 @@ right-align@^0.1.1:
|
|||||||
align-text "^0.1.1"
|
align-text "^0.1.1"
|
||||||
|
|
||||||
rimraf@2, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.6.1:
|
rimraf@2, rimraf@^2.3.3, rimraf@^2.5.1, rimraf@^2.6.1:
|
||||||
version "2.6.1"
|
version "2.6.2"
|
||||||
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d"
|
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
|
||||||
dependencies:
|
dependencies:
|
||||||
glob "^7.0.5"
|
glob "^7.0.5"
|
||||||
|
|
||||||
rxjs@^5.3.1, rxjs@^5.4.1, rxjs@^5.4.2:
|
rxjs@^5.3.1, rxjs@^5.4.1, rxjs@^5.4.2, rxjs@^5.4.3:
|
||||||
version "5.4.3"
|
version "5.4.3"
|
||||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f"
|
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2621,7 +2585,7 @@ seed-random@2.2.0:
|
|||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/seed-random/-/seed-random-2.2.0.tgz#2a9b19e250a817099231a5b99a4daf80b7fbed54"
|
resolved "https://registry.yarnpkg.com/seed-random/-/seed-random-2.2.0.tgz#2a9b19e250a817099231a5b99a4daf80b7fbed54"
|
||||||
|
|
||||||
"semver@2 || 3 || 4 || 5", semver@^5.3.0:
|
"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1:
|
||||||
version "5.4.1"
|
version "5.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e"
|
||||||
|
|
||||||
@ -2655,9 +2619,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.6:
|
smartanalytics@^2.0.9:
|
||||||
version "1.0.6"
|
version "2.0.9"
|
||||||
resolved "https://registry.yarnpkg.com/smartanalytics/-/smartanalytics-1.0.6.tgz#5094a29a53f4e005951680365f20d7125fc713f9"
|
resolved "https://registry.yarnpkg.com/smartanalytics/-/smartanalytics-2.0.9.tgz#6fcd3ec0cf3ecdddd5d3f8033308ab070a1e3471"
|
||||||
dependencies:
|
dependencies:
|
||||||
smartq "^1.1.1"
|
smartq "^1.1.1"
|
||||||
smartrequest "^1.0.4"
|
smartrequest "^1.0.4"
|
||||||
@ -2748,32 +2712,15 @@ smartevent@^1.0.1:
|
|||||||
smartq "^1.1.1"
|
smartq "^1.1.1"
|
||||||
typings-global "^1.0.16"
|
typings-global "^1.0.16"
|
||||||
|
|
||||||
smartfile@4.1.6:
|
smartfile@^4.1.4, smartfile@^4.2.15, smartfile@^4.2.17, smartfile@^4.2.20, smartfile@^4.2.26:
|
||||||
version "4.1.6"
|
version "4.2.26"
|
||||||
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.1.6.tgz#d71026aefef99233c56766c3c6c11afc41a19b3a"
|
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.2.26.tgz#800f08b1089e153b7fd8e0ba165da465a071d407"
|
||||||
dependencies:
|
|
||||||
"@types/fs-extra" "0.x.x"
|
|
||||||
"@types/vinyl" "^2.0.0"
|
|
||||||
fs-extra "^2.0.0"
|
|
||||||
glob "^7.1.1"
|
|
||||||
js-yaml "^3.7.0"
|
|
||||||
require-reload "0.2.2"
|
|
||||||
smartpath "^3.2.7"
|
|
||||||
smartq "^1.0.4"
|
|
||||||
smartrequest "^1.0.4"
|
|
||||||
typings-global "^1.0.14"
|
|
||||||
vinyl "^2.0.1"
|
|
||||||
vinyl-file "^3.0.0"
|
|
||||||
|
|
||||||
smartfile@^4.1.4, smartfile@^4.2.15, smartfile@^4.2.17, smartfile@^4.2.20:
|
|
||||||
version "4.2.20"
|
|
||||||
resolved "https://registry.yarnpkg.com/smartfile/-/smartfile-4.2.20.tgz#abc37c04fb7b3afea68fa295dfb80083361a8028"
|
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/fs-extra" "4.x.x"
|
"@types/fs-extra" "4.x.x"
|
||||||
"@types/vinyl" "^2.0.0"
|
"@types/vinyl" "^2.0.1"
|
||||||
fs-extra "^4.0.0"
|
fs-extra "^4.0.2"
|
||||||
glob "^7.1.2"
|
glob "^7.1.2"
|
||||||
js-yaml "^3.9.1"
|
js-yaml "^3.10.0"
|
||||||
require-reload "0.2.2"
|
require-reload "0.2.2"
|
||||||
smartpath "^3.2.8"
|
smartpath "^3.2.8"
|
||||||
smartq "^1.1.6"
|
smartq "^1.1.6"
|
||||||
@ -2824,15 +2771,23 @@ smartlodash@^1.0.1:
|
|||||||
"@types/node" "^8.0.10"
|
"@types/node" "^8.0.10"
|
||||||
lodash "^4.17.4"
|
lodash "^4.17.4"
|
||||||
|
|
||||||
smartnpm@^1.0.4:
|
smartnpm@^1.0.5:
|
||||||
version "1.0.4"
|
version "1.0.5"
|
||||||
resolved "https://registry.yarnpkg.com/smartnpm/-/smartnpm-1.0.4.tgz#026ce3b3f3b46ec546de51908a0d408848466c0d"
|
resolved "https://registry.yarnpkg.com/smartnpm/-/smartnpm-1.0.5.tgz#52d79269b41b93a17d87bf71b83b26006dd46088"
|
||||||
dependencies:
|
dependencies:
|
||||||
beautycolor "^1.0.9"
|
beautycolor "^1.0.9"
|
||||||
beautylog "^6.1.10"
|
beautylog "^6.1.10"
|
||||||
smartrequest "^1.0.6"
|
smartrequest "^1.0.6"
|
||||||
typings-global "^1.0.16"
|
typings-global "^1.0.16"
|
||||||
|
|
||||||
|
smartopen@^1.0.3:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/smartopen/-/smartopen-1.0.3.tgz#11a5835b50103e09fc9702ec9a884605ad7e584d"
|
||||||
|
dependencies:
|
||||||
|
"@types/open" "^0.0.29"
|
||||||
|
open "^0.0.5"
|
||||||
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
smartparam@0.1.1:
|
smartparam@0.1.1:
|
||||||
version "0.1.1"
|
version "0.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/smartparam/-/smartparam-0.1.1.tgz#51c526bf38b0965007b21edd3e96c7e179c93591"
|
resolved "https://registry.yarnpkg.com/smartparam/-/smartparam-0.1.1.tgz#51c526bf38b0965007b21edd3e96c7e179c93591"
|
||||||
@ -2865,15 +2820,15 @@ smartrequest@^1.0.4, smartrequest@^1.0.6:
|
|||||||
typings-global "^1.0.17"
|
typings-global "^1.0.17"
|
||||||
|
|
||||||
smartshell@^1.0.13, smartshell@^1.0.6:
|
smartshell@^1.0.13, smartshell@^1.0.6:
|
||||||
version "1.0.13"
|
version "1.0.18"
|
||||||
resolved "https://registry.yarnpkg.com/smartshell/-/smartshell-1.0.13.tgz#277b34e6624df70003e0e3a6c900cd5ebab7eb92"
|
resolved "https://registry.yarnpkg.com/smartshell/-/smartshell-1.0.18.tgz#b84ccc65cedf3a875bf676cec78ee07f4b4aa9e5"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/shelljs" "^0.7.2"
|
"@types/shelljs" "^0.7.4"
|
||||||
"@types/which" "^1.0.28"
|
"@types/which" "^1.0.28"
|
||||||
shelljs "^0.7.8"
|
shelljs "^0.7.8"
|
||||||
smartq "^1.1.6"
|
smartq "^1.1.6"
|
||||||
typings-global "^1.0.19"
|
typings-global "^1.0.20"
|
||||||
which "^1.2.14"
|
which "^1.3.0"
|
||||||
|
|
||||||
smartstream@^1.0.10, smartstream@^1.0.8:
|
smartstream@^1.0.10, smartstream@^1.0.8:
|
||||||
version "1.0.10"
|
version "1.0.10"
|
||||||
@ -2884,7 +2839,7 @@ smartstream@^1.0.10, smartstream@^1.0.8:
|
|||||||
through2 "^2.0.3"
|
through2 "^2.0.3"
|
||||||
typings-global "^1.0.19"
|
typings-global "^1.0.19"
|
||||||
|
|
||||||
smartstring@2.0.24, smartstring@^2.0.24:
|
smartstring@^2.0.24:
|
||||||
version "2.0.24"
|
version "2.0.24"
|
||||||
resolved "https://registry.yarnpkg.com/smartstring/-/smartstring-2.0.24.tgz#dc1c5efb738c10a2d7daeea3d800ad2ecc65a26c"
|
resolved "https://registry.yarnpkg.com/smartstring/-/smartstring-2.0.24.tgz#dc1c5efb738c10a2d7daeea3d800ad2ecc65a26c"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2900,23 +2855,34 @@ smartsystem@^2.0.2:
|
|||||||
systemjs "^0.20.17"
|
systemjs "^0.20.17"
|
||||||
typings-global "^1.0.20"
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
smarttime@^1.0.6:
|
smarttime@^1.0.10:
|
||||||
version "1.0.6"
|
version "1.0.10"
|
||||||
resolved "https://registry.yarnpkg.com/smarttime/-/smarttime-1.0.6.tgz#0412a021cff88e8e41b766103a2d9e42fe816ddc"
|
resolved "https://registry.yarnpkg.com/smarttime/-/smarttime-1.0.10.tgz#6bbcc0e31fb60bb085ad49c126436a5665d1b92a"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
moment "^2.18.1"
|
||||||
typings-global "^1.0.16"
|
typings-global "^1.0.16"
|
||||||
|
|
||||||
smartupdate@^1.0.4:
|
smartupdate@^1.0.12:
|
||||||
version "1.0.4"
|
version "1.0.12"
|
||||||
resolved "https://registry.yarnpkg.com/smartupdate/-/smartupdate-1.0.4.tgz#73a587569c3788c8b04a3dd6422a6837373416c0"
|
resolved "https://registry.yarnpkg.com/smartupdate/-/smartupdate-1.0.12.tgz#d583b532de240ad6dde7d88d2cadfa4463625ecb"
|
||||||
dependencies:
|
dependencies:
|
||||||
beautycolor "^1.0.10"
|
beautycolor "^1.0.11"
|
||||||
beautylog "^6.1.10"
|
beautylog "^6.1.10"
|
||||||
npmextra "^2.0.9"
|
npmextra "^2.0.9"
|
||||||
smartnpm "^1.0.4"
|
smartnpm "^1.0.5"
|
||||||
smarttime "^1.0.6"
|
smartopen "^1.0.3"
|
||||||
|
smarttime "^1.0.10"
|
||||||
|
smartversion "^1.0.3"
|
||||||
typings-global "^1.0.20"
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
|
smartversion@^1.0.3:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/smartversion/-/smartversion-1.0.3.tgz#8b6b1553594a4df7fac8495bc2802b4a6f84a27c"
|
||||||
|
dependencies:
|
||||||
|
"@types/semver" "^5.3.33"
|
||||||
|
semver "^5.4.1"
|
||||||
|
typings-global "^1.0.16"
|
||||||
|
|
||||||
sntp@1.x.x:
|
sntp@1.x.x:
|
||||||
version "1.0.9"
|
version "1.0.9"
|
||||||
resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
|
resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198"
|
||||||
@ -2933,8 +2899,8 @@ source-map-resolve@^0.3.0:
|
|||||||
urix "~0.1.0"
|
urix "~0.1.0"
|
||||||
|
|
||||||
source-map-support@^0.4.15:
|
source-map-support@^0.4.15:
|
||||||
version "0.4.15"
|
version "0.4.18"
|
||||||
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1"
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
|
||||||
dependencies:
|
dependencies:
|
||||||
source-map "^0.5.6"
|
source-map "^0.5.6"
|
||||||
|
|
||||||
@ -2943,8 +2909,8 @@ source-map-url@~0.3.0:
|
|||||||
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"
|
resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.3.0.tgz#7ecaf13b57bcd09da8a40c5d269db33799d4aaf9"
|
||||||
|
|
||||||
source-map@0.X, source-map@>=0.5.6, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
|
source-map@0.X, source-map@>=0.5.6, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3:
|
||||||
version "0.5.6"
|
version "0.5.7"
|
||||||
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412"
|
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
|
||||||
|
|
||||||
source-map@^0.1.38:
|
source-map@^0.1.38:
|
||||||
version "0.1.43"
|
version "0.1.43"
|
||||||
@ -3119,8 +3085,8 @@ symbol-observable@^1.0.1:
|
|||||||
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
|
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d"
|
||||||
|
|
||||||
systemjs@^0.20.17:
|
systemjs@^0.20.17:
|
||||||
version "0.20.17"
|
version "0.20.19"
|
||||||
resolved "https://registry.yarnpkg.com/systemjs/-/systemjs-0.20.17.tgz#b3143bb7e02d2f41b9a640351a06024b7b63ae59"
|
resolved "https://registry.yarnpkg.com/systemjs/-/systemjs-0.20.19.tgz#c2b9e79c19f4bea53a19b1ed3f974ffb463be949"
|
||||||
|
|
||||||
tap-mocha-reporter@^3.0.6:
|
tap-mocha-reporter@^3.0.6:
|
||||||
version "3.0.6"
|
version "3.0.6"
|
||||||
@ -3164,17 +3130,6 @@ tapbuffer@^1.0.29:
|
|||||||
tap-mocha-reporter "^3.0.6"
|
tap-mocha-reporter "^3.0.6"
|
||||||
typings-global "^1.0.20"
|
typings-global "^1.0.20"
|
||||||
|
|
||||||
tapbundle@^1.1.1:
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.yarnpkg.com/tapbundle/-/tapbundle-1.1.1.tgz#ec4172c0e82a77b1f6133fef2606311ede28a62d"
|
|
||||||
dependencies:
|
|
||||||
early "^2.1.1"
|
|
||||||
leakage "^0.3.0"
|
|
||||||
smartchai "^1.0.3"
|
|
||||||
smartdelay "^1.0.3"
|
|
||||||
smartq "^1.1.1"
|
|
||||||
typings-global "^1.0.19"
|
|
||||||
|
|
||||||
tar-pack@^3.4.0:
|
tar-pack@^3.4.0:
|
||||||
version "3.4.0"
|
version "3.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
|
resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984"
|
||||||
@ -3250,7 +3205,7 @@ time-stamp@^1.0.0:
|
|||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
|
resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
|
||||||
|
|
||||||
timers-ext@0.1:
|
timers-ext@0.1, timers-ext@^0.1.2:
|
||||||
version "0.1.2"
|
version "0.1.2"
|
||||||
resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204"
|
resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.2.tgz#61cc47a76c1abd3195f14527f978d58ae94c5204"
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -3272,8 +3227,8 @@ to-fast-properties@^1.0.3:
|
|||||||
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
|
||||||
|
|
||||||
tough-cookie@~2.3.0:
|
tough-cookie@~2.3.0:
|
||||||
version "2.3.2"
|
version "2.3.3"
|
||||||
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a"
|
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
|
||||||
dependencies:
|
dependencies:
|
||||||
punycode "^1.4.1"
|
punycode "^1.4.1"
|
||||||
|
|
||||||
@ -3322,9 +3277,9 @@ typed-function@0.10.5:
|
|||||||
version "0.10.5"
|
version "0.10.5"
|
||||||
resolved "https://registry.yarnpkg.com/typed-function/-/typed-function-0.10.5.tgz#2e0f18abd065219fab694a446a65c6d1981832c0"
|
resolved "https://registry.yarnpkg.com/typed-function/-/typed-function-0.10.5.tgz#2e0f18abd065219fab694a446a65c6d1981832c0"
|
||||||
|
|
||||||
typescript@^2.1.5, typescript@^2.4.2:
|
typescript@^2.1.5, typescript@^2.5.2:
|
||||||
version "2.4.2"
|
version "2.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.4.2.tgz#f8395f85d459276067c988aa41837a8f82870844"
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.2.tgz#038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34"
|
||||||
|
|
||||||
typings-global@^1.0.14, typings-global@^1.0.16, typings-global@^1.0.17, typings-global@^1.0.19, typings-global@^1.0.20, typings-global@^1.0.3:
|
typings-global@^1.0.14, typings-global@^1.0.16, typings-global@^1.0.17, typings-global@^1.0.19, typings-global@^1.0.20, typings-global@^1.0.3:
|
||||||
version "1.0.20"
|
version "1.0.20"
|
||||||
@ -3477,7 +3432,7 @@ which-module@^2.0.0:
|
|||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
||||||
|
|
||||||
which@^1.1.1, which@^1.2.14, which@^1.2.4, which@^1.2.9:
|
which@^1.1.1, which@^1.2.4, which@^1.2.9, which@^1.3.0:
|
||||||
version "1.3.0"
|
version "1.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Reference in New Issue
Block a user