Revert "Add debug log output"

This reverts commit d1d4bae1fb.
This commit is contained in:
Kris De Volder
2020-01-22 16:51:25 -08:00
parent 327235ee75
commit 0308784e28
13 changed files with 19 additions and 9490 deletions

View File

@@ -1,23 +0,0 @@
vscode-extension-vscode
The MIT License (MIT)
Copyright (c) Microsoft Corporation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -1,17 +0,0 @@
# vscode-extension-vscode
## ⚠️ Use @types/vscode and vscode-test instead ⚠️
The funcionality of `vscode` module has been splitted into `@types/vscode` and `vscode-test`. They have fewer dependencies, allow greater flexibility in writing tests and will continue to receive updates. Although `vscode` will continue to work, we suggest that you migrate to `@types/vscode` and `vscode-test`.
[Release Notes](https://code.visualstudio.com/updates/v1_36#_splitting-vscode-package-into-typesvscode-and-vscodetest) | [Migration Guide](https://code.visualstudio.com/api/working-with-extensions/testing-extension#migrating-from-vscode)
---
The `vscode` NPM module provides VS Code extension authors tools to write extensions. It provides the `vscode.d.ts` node module (all accessible API for extensions) as well as commands for compiling and testing extensions.
For more information around extension authoring for VS Code, please see http://code.visualstudio.com/docs/extensions/overview
# License
[MIT](LICENSE)

View File

@@ -1,6 +0,0 @@
#!/usr/bin/env node
console.log('The vscode extension module got updated to TypeScript 2.0.x.');
console.log('Please see https://code.visualstudio.com/updates/v1_6#_extension-authoring for instruction on how to migrate your extension.');
process.exit(1);

View File

@@ -1,135 +0,0 @@
#!/usr/bin/env node
var semver = require('semver');
var fs = require('fs');
var path = require('path');
var shared = require('../lib/shared');
process.on('uncaughtException', function (err) {
exitWithError(err);
});
var engine = process.env.npm_package_engines_vscode;
if (!engine) {
exitWithError('Missing VSCode engine declaration in package.json.');
}
var vscodeDtsTypescriptPath = path.join(path.dirname(__dirname), 'vscode.d.ts');
console.log('Detected VS Code engine version: ' + engine);
getURLMatchingEngine(engine, function (_, data) {
console.log('Fetching vscode.d.ts from: ' + data.url);
shared.getContents(data.url, process.env.GITHUB_TOKEN, null, function (error, contents) {
if (error) {
exitWithError(error);
}
if (contents === 'Not Found') {
exitWithError(new Error('Could not find vscode.d.ts at the provided URL. Please report this to https://github.com/Microsoft/vscode/issues'));
}
if (data.version !== '*' && semver.lt(data.version, '1.7.0')) {
// Older versions of vscode.d.ts need a massage to play nice.
contents = vscodeDtsToTypescript(contents);
}
fs.writeFileSync(vscodeDtsTypescriptPath, contents);
console.log('vscode.d.ts successfully installed!\n');
});
});
function vscodeDtsToTypescript(contents) {
var markerHit = false;
var lines = contents.split('\n').filter(function (line) {
if (!markerHit && (line === '// when used for JS*' || line === 'declare module \'vscode\' {')) {
markerHit = true;
}
return !markerHit;
});
lines.unshift('/// <reference path="./thenable.d.ts" />');
lines.push('export = vscode;'); // this is to enable TS module resolution support
return lines.join('\n');
}
function getURLMatchingEngine(engine, callback) {
if (engine === '*') {
// master
return callback(null, {
url: 'https://raw.githubusercontent.com/Microsoft/vscode/master/src/vs/vscode.d.ts',
version: '*'
});
}
shared.getContents('https://vscode-update.azurewebsites.net/api/releases/stable', null, { "X-API-Version": "2" }, function (error, tagsRaw) {
if (error) {
exitWithError(error);
}
var tagsAndCommits;
try {
tagsAndCommits = JSON.parse(tagsRaw);
} catch (error) {
exitWithError(error);
}
var mapTagsToCommits = Object.create(null);
for (var i = 0; i < tagsAndCommits.length; i++) {
var tagAndCommit = tagsAndCommits[i];
mapTagsToCommits[tagAndCommit.version] = tagAndCommit.id;
}
var tags = Object.keys(mapTagsToCommits);
var tag = minSatisfying(tags, engine);
// check if master is on the version specified
if (!tag) {
return shared.getContents('https://raw.githubusercontent.com/Microsoft/vscode/master/package.json', process.env.GITHUB_TOKEN, null, function (error, packageJson) {
if (error) {
exitWithError(error);
}
var version = JSON.parse(packageJson).version;
if (semver.satisfies(version, engine)) {
// master
return callback(null, {
url: 'https://raw.githubusercontent.com/Microsoft/vscode/master/src/vs/vscode.d.ts',
version: version
});
}
exitWithError('Could not find satifying VSCode for version ' + engine + ' in the tags: [' + tags.join(', ') + '] or on master: ' + version);
});
}
console.log('Found minimal version that qualifies engine range: ' + tag);
return callback(null, {
url: 'https://raw.githubusercontent.com/Microsoft/vscode/' + mapTagsToCommits[tag] + '/src/vs/vscode.d.ts',
version: tag
});
});
}
function minSatisfying(versions, range) {
return versions.filter(function (version) {
try {
return semver.satisfies(version, range);
} catch (error) {
return false; // version might be invalid so we return as not matching
}
}).sort(function (a, b) {
return semver.compare(a, b);
})[0] || null;
}
function exitWithError(error) {
console.error('Error installing vscode.d.ts: ' + error.toString());
process.exit(1);
}

View File

@@ -1,78 +0,0 @@
#!/usr/bin/env node
const path = require('path');
const cp = require('child_process');
const fs = require('fs');
const downloadAndUnzipVSCode = require('vscode-test').downloadAndUnzipVSCode;
var testsFolder;
if (process.env.CODE_TESTS_PATH) {
testsFolder = process.env.CODE_TESTS_PATH;
} else if (fs.existsSync(path.join(process.cwd(), 'out', 'test'))) {
testsFolder = path.join(process.cwd(), 'out', 'test'); // TS extension
} else {
testsFolder = path.join(process.cwd(), 'test'); // JS extension
}
var testsWorkspace = process.env.CODE_TESTS_WORKSPACE || testsFolder;
var extensionsFolder = process.env.CODE_EXTENSIONS_PATH || process.cwd();
var locale = process.env.CODE_LOCALE || 'en';
var userDataDir = process.env.CODE_TESTS_DATA_DIR;
console.log('### VS Code Extension Test Run ###');
console.log('');
console.log('Current working directory: ' + process.cwd());
function runTests(executablePath) {
var args = [
testsWorkspace,
'--extensionDevelopmentPath=' + extensionsFolder,
'--extensionTestsPath=' + testsFolder,
'--locale=' + locale,
];
if (userDataDir) {
args.push('--user-data-dir=' + userDataDir);
}
if (process.env.CODE_DISABLE_EXTENSIONS) {
args.push('--disable-extensions');
}
console.log('Running extension tests: ' + [executablePath, args.join(' ')].join(' '));
var cmd = cp.spawn(executablePath, args);
cmd.stdout.on('data', function (data) {
console.log(data.toString());
});
cmd.stderr.on('data', function (data) {
console.error(data.toString());
});
cmd.on('error', function (data) {
console.log('Failed to execute tests: ' + data.toString());
});
cmd.on('close', function (code) {
console.log('Tests exited with code: ' + code);
if (code !== 0) {
process.exit(code); // propagate exit code to outer runner
}
});
}
function downloadExecutableAndRunTests() {
downloadAndUnzipVSCode(process.env.CODE_VERSION).then(executablePath => {
runTests(executablePath)
}).catch(err => {
console.error('Failed to run test with error:')
console.log(err);
process.exit(1);
})
}
downloadExecutableAndRunTests()

View File

@@ -1,48 +0,0 @@
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
var request = require('request');
var URL = require('url-parse');
function getContents(url, token, headers, callback) {
console.log("getContents "+url);
request.get(toRequestOptions(url, token, headers), function (error, response, body) {
if (!error && response && response.statusCode >= 400) {
error = new Error('Request returned status code: ' + response.statusCode + '\nDetails: ' + response.body);
}
if (error) {
console.log("FAILED getContents "+url);
} else {
console.log("SUCCESS getContents "+url);
}
callback(error, body);
});
}
exports.getContents = getContents;
function toRequestOptions(url, token, headers) {
headers = headers || {
'user-agent': 'nodejs'
};
if (token) {
headers['Authorization'] = 'token ' + token;
}
var parsedUrl = new URL(url);
var options = {
url: url,
headers: headers
};
// We need to test the absence of true here because there is an npm bug that will not set boolean
// env variables if they are set to false.
if (process.env.npm_config_strict_ssl !== 'true') {
options.strictSSL = false;
}
if (process.env.npm_config_proxy && parsedUrl.protocol === 'http:') {
options.proxy = process.env.npm_config_proxy;
}
else if (process.env.npm_config_https_proxy && parsedUrl.protocol === 'https:') {
options.proxy = process.env.npm_config_https_proxy;
}
return options;
}
exports.toRequestOptions = toRequestOptions;

View File

@@ -1,125 +0,0 @@
declare module 'vscode/lib/testrunner' {
export function configure(options: MochaSetupOptions): void;
interface MochaSetupOptions {
/**
* Milliseconds to wait before considering a test slow
*
* @type {Number}
*/
slow?: number;
/**
* Enable timeouts
*
* @type {Boolean}
*/
enableTimeouts?: boolean;
/**
* Timeout in milliseconds
*
* @type {Number}
*/
timeout?: number;
/**
* UI name "bdd", "tdd", "exports" etc
*
* @type {String}
*/
ui?: string;
/**
* Array of accepted globals
*
* @type {Array} globals
*/
globals?: any[];
/**
* Reporter instance (function or string), defaults to `mocha.reporters.spec`
*
* @type {String | Function}
*/
reporter?: any;
/**
* Reporter settings object
*
* @type {Object}
*/
reporterOptions?: any;
/**
* Bail on the first test failure
*
* @type {Boolean}
*/
bail?: boolean;
/**
* Ignore global leaks
*
* @type {Boolean}
*/
ignoreLeaks?: boolean;
/**
* grep string or regexp to filter tests with, if a string it is escaped
*
* @type {RegExp | String}
*/
grep?: any;
/**
* Use colored output from test results
*
* @type {Boolean}
*/
useColors?: boolean;
/**
* Tests marked only fail the suite
*
* @type {Boolean}
*/
forbidOnly?: boolean;
/**
* Pending tests and tests marked skip fail the suite
*
* @type {Boolean}
*/
forbidPending?: boolean;
/**
* Number of times to retry failed tests
*
* @type {Number}
*/
retries?: number;
/**
* Display long stack-trace on failing
*
* @type {Boolean}
*/
fullStackTrace?: boolean;
/**
* Delay root suite execution
*
* @type {Boolean}
*/
delay?: boolean;
/**
* Use inline diffs rather than +/-
*
* @type {Boolean}
*/
useInlineDiffs?: boolean;
}
}

View File

@@ -1,44 +0,0 @@
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
'use strict';
Object.defineProperty(exports, "__esModule", { value: true });
var paths = require("path");
var glob = require("glob");
// Linux: prevent a weird NPE when mocha on Linux requires the window size from the TTY
// Since we are not running in a tty environment, we just implement the method statically
var tty = require('tty');
if (!tty.getWindowSize) {
tty.getWindowSize = function () { return [80, 75]; };
}
var Mocha = require("mocha");
var mocha = new Mocha({
ui: 'tdd',
useColors: true
});
function configure(opts) {
mocha = new Mocha(opts);
}
exports.configure = configure;
function run(testsRoot, clb) {
// Enable source map support
require('source-map-support').install();
// Glob test files
glob('**/**.test.js', { cwd: testsRoot }, function (error, files) {
if (error) {
return clb(error);
}
try {
// Fill into Mocha
files.forEach(function (f) { return mocha.addFile(paths.join(testsRoot, f)); });
// Run the tests
mocha.run(function (failures) {
clb(null, failures);
});
}
catch (error) {
return clb(error);
}
});
}
exports.run = run;

View File

@@ -1,72 +0,0 @@
{
"_args": [
[
"vscode@1.1.36",
"/home/kdvolder/git/sts4/vscode-extensions/vscode-manifest-yaml"
]
],
"_development": true,
"_from": "vscode@1.1.36",
"_id": "vscode@1.1.36",
"_inBundle": false,
"_integrity": "sha512-cGFh9jmGLcTapCpPCKvn8aG/j9zVQ+0x5hzYJq5h5YyUXVGa1iamOaB2M2PZXoumQPES4qeAP1FwkI0b6tL4bQ==",
"_location": "/vscode",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "vscode@1.1.36",
"name": "vscode",
"escapedName": "vscode",
"rawSpec": "1.1.36",
"saveSpec": null,
"fetchSpec": "1.1.36"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/vscode/-/vscode-1.1.36.tgz",
"_spec": "1.1.36",
"_where": "/home/kdvolder/git/sts4/vscode-extensions/vscode-manifest-yaml",
"author": {
"name": "Visual Studio Code Team"
},
"bin": {
"vscode-install": "bin/install"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-vscode/issues"
},
"dependencies": {
"glob": "^7.1.2",
"mocha": "^5.2.0",
"request": "^2.88.0",
"semver": "^5.4.1",
"source-map-support": "^0.5.0",
"url-parse": "^1.4.4",
"vscode-test": "^0.4.1"
},
"description": "## ⚠️ Use @types/vscode and vscode-test instead ⚠️",
"devDependencies": {
"@types/glob": "^5.0.33",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.8"
},
"engines": {
"node": ">=8.9.3"
},
"homepage": "https://github.com/Microsoft/vscode-extension-vscode#readme",
"license": "MIT",
"name": "vscode",
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/vscode-extension-vscode.git"
},
"scripts": {
"compile": "tsc -p ./",
"prepare": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"typings": "vscode.d.ts",
"version": "1.1.36"
}

View File

@@ -1,5 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
interface Thenable<T> extends PromiseLike<T> {}

View File

@@ -1,27 +0,0 @@
THIRD-PARTY SOFTWARE NOTICES AND INFORMATION
For Microsoft vscode-extension-vscode
This project incorporates material from the project(s) listed below (collectively, “Third Party Code”). Microsoft is not the original author of the Third Party Code. The original copyright notice and license under which Microsoft received such Third Party Code are set out below. This Third Party Code is licensed to you under their original license terms set forth below. Microsoft reserves all other rights not expressly granted, whether by implication, estoppel or otherwise.
1. DefinitelyTyped version 0.0.1 (https://github.com/borisyankov/DefinitelyTyped)
This project is licensed under the MIT license.
Copyrights are respective of each contributor listed at the beginning of each definition file.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,12 @@
{
"name": "vscode-manifest-yaml",
"version": "1.15.0",
"version": "1.12.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@pivotal-tools/commons-vscode": {
"version": "file:../commons-vscode/pivotal-tools-commons-vscode-0.2.3.tgz",
"integrity": "sha512-6z0NHCD5DeQDdqLlyawE72CqB9KS9f4PcPzJWOO9ixFsygPjlwRRCBdeW4i5BuMn6sEiTt5o1UYhKlUTW853TQ==",
"integrity": "sha512-vOm87l2O+Yy/ucCi+9/rFoP5JkV8lVP5J2Evip0PJdZR99H369rynveHdl+KkGEqzoRK22A4Bmtu/yRxqfGJ2Q==",
"requires": {
"@pivotal-tools/jvm-launch-utils": "0.0.14",
"deep-equal": "^1.0.1",
@@ -225,9 +225,9 @@
}
},
"deep-equal": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.0.tgz",
"integrity": "sha512-ZbfWJq/wN1Z273o7mUSjILYqehAktR2NVoSrOukDkU9kg2v/Uv89yU4Cvz8seJeAmtN5oqiefKq8FPuXOboqLw==",
"requires": {
"is-arguments": "^1.0.4",
"is-date-object": "^1.0.1",
@@ -322,34 +322,6 @@
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
"dev": true
},
"es-abstract": {
"version": "1.17.4",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz",
"integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==",
"requires": {
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"has": "^1.0.3",
"has-symbols": "^1.0.1",
"is-callable": "^1.1.5",
"is-regex": "^1.0.5",
"object-inspect": "^1.7.0",
"object-keys": "^1.1.1",
"object.assign": "^4.1.0",
"string.prototype.trimleft": "^2.1.1",
"string.prototype.trimright": "^2.1.1"
}
},
"es-to-primitive": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
"requires": {
"is-callable": "^1.1.4",
"is-date-object": "^1.0.1",
"is-symbol": "^1.0.2"
}
},
"es6-promise": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
@@ -491,11 +463,6 @@
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"has-symbols": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
"integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="
},
"he": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz",
@@ -568,30 +535,17 @@
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz",
"integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA=="
},
"is-callable": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
"integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q=="
},
"is-date-object": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
"integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
"integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY="
},
"is-regex": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
"integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
"integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
"requires": {
"has": "^1.0.3"
}
},
"is-symbol": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
"integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
"requires": {
"has-symbols": "^1.0.1"
"has": "^1.0.1"
}
},
"is-typedarray": {
@@ -787,32 +741,16 @@
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
"dev": true
},
"object-inspect": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz",
"integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw=="
},
"object-is": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.2.tgz",
"integrity": "sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ=="
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz",
"integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY="
},
"object-keys": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
},
"object.assign": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
"integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
"requires": {
"define-properties": "^1.1.2",
"function-bind": "^1.1.1",
"has-symbols": "^1.0.0",
"object-keys": "^1.0.11"
}
},
"once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
@@ -940,12 +878,11 @@
}
},
"regexp.prototype.flags": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz",
"integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==",
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz",
"integrity": "sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==",
"requires": {
"define-properties": "^1.1.3",
"es-abstract": "^1.17.0-next.1"
"define-properties": "^1.1.2"
}
},
"request": {
@@ -1038,24 +975,6 @@
"tweetnacl": "~0.14.0"
}
},
"string.prototype.trimleft": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz",
"integrity": "sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag==",
"requires": {
"define-properties": "^1.1.3",
"function-bind": "^1.1.1"
}
},
"string.prototype.trimright": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz",
"integrity": "sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g==",
"requires": {
"define-properties": "^1.1.3",
"function-bind": "^1.1.1"
}
},
"string_decoder": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz",