nestjs-console
Advanced tools
Comparing version 3.0.5 to 3.0.6
@@ -7,2 +7,12 @@ # Changelog | ||
## [3.0.6] - 2020-06-10 | ||
### Fixed | ||
- Fix: command accept multiple arguments https://github.com/Pop-Code/nestjs-console/issues/148 (thanks to https://github.com/tzellman) | ||
### Changed | ||
- Update dependencies | ||
## [3.0.5] - 2020-05-05 | ||
@@ -160,3 +170,4 @@ | ||
[unreleased]: https://github.com/Pop-Code/nestjs-console/compare/v3.0.5...HEAD | ||
[unreleased]: https://github.com/Pop-Code/nestjs-console/compare/v3.0.6...HEAD | ||
[3.0.6]: https://github.com/Pop-Code/nestjs-console/compare/v3.0.5...v3.0.6 | ||
[3.0.5]: https://github.com/Pop-Code/nestjs-console/compare/v3.0.4...v3.0.5 | ||
@@ -163,0 +174,0 @@ [3.0.5]: https://github.com/Pop-Code/nestjs-console/compare/v3.0.3...v3.0.5 |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.AbstractBootstrapConsole = void 0; | ||
const module_1 = require("../module"); | ||
@@ -14,0 +15,0 @@ const service_1 = require("../service"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.BootstrapConsole = void 0; | ||
const core_1 = require("@nestjs/core"); | ||
@@ -4,0 +5,0 @@ const abstract_1 = require("./abstract"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.COMMAND_METADATA_NAME = exports.CONSOLE_METADATA_NAME = exports.CLI_SERVICE_TOKEN = void 0; | ||
exports.CLI_SERVICE_TOKEN = 'nests-console.Cli'; | ||
@@ -4,0 +5,0 @@ exports.CONSOLE_METADATA_NAME = 'nests-console.Console'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Console = exports.Command = exports.InjectCli = void 0; | ||
const common_1 = require("@nestjs/common"); | ||
@@ -4,0 +5,0 @@ const constants_1 = require("./constants"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.formatResponse = exports.createSpinner = void 0; | ||
const ora = require("ora"); | ||
@@ -4,0 +5,0 @@ const prettier_1 = require("prettier"); |
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./bootstrap/abstract")); | ||
__export(require("./bootstrap/console")); | ||
__export(require("./constants")); | ||
__export(require("./decorators")); | ||
__export(require("./helpers")); | ||
__export(require("./module")); | ||
__export(require("./scanner")); | ||
__export(require("./service")); | ||
__exportStar(require("./bootstrap/abstract"), exports); | ||
__exportStar(require("./bootstrap/console"), exports); | ||
__exportStar(require("./constants"), exports); | ||
__exportStar(require("./decorators"), exports); | ||
__exportStar(require("./helpers"), exports); | ||
__exportStar(require("./module"), exports); | ||
__exportStar(require("./scanner"), exports); | ||
__exportStar(require("./service"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -12,2 +12,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConsoleModule = void 0; | ||
const common_1 = require("@nestjs/common"); | ||
@@ -14,0 +15,0 @@ const constants_1 = require("./constants"); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConsoleScanner = void 0; | ||
const constants_1 = require("./constants"); | ||
@@ -4,0 +5,0 @@ class ConsoleScanner { |
@@ -25,2 +25,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ConsoleService = void 0; | ||
const common_1 = require("@nestjs/common"); | ||
@@ -98,3 +99,3 @@ const commander = require("commander"); | ||
if (args.length > 1) { | ||
command.arguments(args[1]); | ||
command.arguments(args.slice(1).join(' ')); | ||
} | ||
@@ -101,0 +102,0 @@ command.storeOptionsAsProperties(false); |
{ | ||
"name": "nestjs-console", | ||
"version": "3.0.5", | ||
"version": "3.0.6", | ||
"description": "A NestJS module that provide a cli", | ||
@@ -27,24 +27,24 @@ "keywords": [ | ||
"devDependencies": { | ||
"@nestjs/common": "7.0.9", | ||
"@nestjs/core": "7.0.9", | ||
"@nestjs/platform-express": "7.0.9", | ||
"@nestjs/testing": "7.0.9", | ||
"@types/jest": "25.2.1", | ||
"@nestjs/common": "7.1.3", | ||
"@nestjs/core": "7.1.3", | ||
"@nestjs/platform-express": "7.1.3", | ||
"@nestjs/testing": "7.1.3", | ||
"@types/jest": "25.2.3", | ||
"@types/node": "14.0.12", | ||
"codecov": "3.7.0", | ||
"commander": "5.1.0", | ||
"jest": "26.0.1", | ||
"reflect-metadata": "0.1.13", | ||
"rxjs": "6.5.5", | ||
"ts-jest": "26.1.0", | ||
"ts-node": "8.10.2", | ||
"tsconfig-paths": "3.9.0", | ||
"typedoc": "0.17.7", | ||
"typescript": "3.9.5", | ||
"@typescript-eslint/eslint-plugin": "2.31.0", | ||
"@typescript-eslint/parser": "2.31.0", | ||
"@types/node": "13.13.4", | ||
"codecov": "3.6.5", | ||
"commander": "5.1.0", | ||
"eslint": "6.8.0", | ||
"eslint-plugin-import": "2.20.2", | ||
"eslint-plugin-prefer-arrow": "1.2.1", | ||
"eslint-config-prettier": "6.11.0", | ||
"jest": "25.5.4", | ||
"reflect-metadata": "0.1.13", | ||
"rxjs": "6.5.5", | ||
"ts-jest": "25.4.0", | ||
"ts-node": "8.10.1", | ||
"tsconfig-paths": "3.9.0", | ||
"typedoc": "0.17.6", | ||
"typescript": "3.8.3" | ||
"eslint-config-prettier": "6.11.0" | ||
}, | ||
@@ -51,0 +51,0 @@ "scripts": { |
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
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55825
464