Socket
Socket
Sign inDemoInstall

@microsoft/ts-command-line

Package Overview
Dependencies
Maintainers
2
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/ts-command-line - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

17

CHANGELOG.json

@@ -5,2 +5,19 @@ {

{
"version": "2.0.1",
"tag": "@microsoft/ts-command-line_v2.0.1",
"date": "Thu, 25 May 2017 21:09:42 GMT",
"comments": {
"patch": [
{
"comment": "Dependency version change"
}
],
"dependency": [
{
"comment": "Updating dependency \"@microsoft/sp-build-node\" from `~1.0.0` to `~1.1.0`"
}
]
}
},
{
"version": "2.0.0",

@@ -7,0 +24,0 @@ "tag": "@microsoft/ts-command-line_v2.0.0",

9

CHANGELOG.md
# Change Log - @microsoft/ts-command-line
This log was last generated on Wed, 22 Feb 2017 21:16:36 GMT and should not be manually modified.
This log was last generated on Tue, 06 Jun 2017 01:30:31 GMT and should not be manually modified.
## 2.0.1
Thu, 25 May 2017 21:09:42 GMT
### Patches
- Dependency version change
## 2.0.0

@@ -6,0 +13,0 @@ Fri, 17 Feb 2017 23:09:23 GMT

17

lib/CommandLineAction.js

@@ -5,7 +5,13 @@ /**

"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var CommandLineParameterProvider_1 = require("./CommandLineParameterProvider");

@@ -40,5 +46,4 @@ /**

exports.CommandLineAction = CommandLineAction;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = CommandLineAction;
//# sourceMappingURL=CommandLineAction.js.map

@@ -5,3 +5,4 @@ /**

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=CommandLineDefinition.js.map
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var CommandLineParameter = (function () {

@@ -8,0 +14,0 @@ function CommandLineParameter(key, converter) {

@@ -5,2 +5,3 @@ /**

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var colors = require("colors");

@@ -94,5 +95,4 @@ var CommandLineParameter_1 = require("./CommandLineParameter");

CommandLineParameterProvider._keyCounter = 0;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = CommandLineParameterProvider;
//# sourceMappingURL=CommandLineParameterProvider.js.map

@@ -29,3 +29,3 @@ import CommandLineAction from './CommandLineAction';

*
* @param args the command-line arugments to be parsed; if omitted, then
* @param args the command-line arguments to be parsed; if omitted, then
* the process.argv will be used

@@ -32,0 +32,0 @@ */

@@ -5,7 +5,13 @@ /**

"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var argparse = require("argparse");

@@ -53,3 +59,3 @@ var colors = require("colors");

*
* @param args the command-line arugments to be parsed; if omitted, then
* @param args the command-line arguments to be parsed; if omitted, then
* the process.argv will be used

@@ -90,5 +96,4 @@ */

}(CommandLineParameterProvider_1.default));
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = CommandLineParser;
//# sourceMappingURL=CommandLineParser.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var CommandLineAction_1 = require("./CommandLineAction");

@@ -3,0 +4,0 @@ exports.CommandLineAction = CommandLineAction_1.default;

{
"name": "@microsoft/ts-command-line",
"version": "2.0.0",
"version": "2.0.1",
"description": "An object-oriented command-line parser for TypeScript",

@@ -17,3 +17,3 @@ "main": "lib/index.js",

"colors": "~1.1.2",
"@types/node": "6.0.62"
"@types/node": "6.0.64"
},

@@ -25,4 +25,4 @@ "devDependencies": {

"mocha": "~2.5.3",
"@microsoft/sp-build-node": "~1.0.0"
"@microsoft/sp-build-node": "~1.1.0"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc