@tsed/cli-core 3.20.13 → 3.20.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@ import execa from 'execa';
17
17
  import Fs, { existsSync } from 'fs-extra';
18
18
  import readPkgUp from 'read-pkg-up';
19
19
  import axios from 'axios';
20
- import querystring from 'querystring';
20
+ import querystring, { stringify } from 'querystring';
21
21
  import tunnel from 'tunnel';
22
22
  import { camelCase, snakeCase } from 'change-case';
23
23
  import parse from 'url-parse';
@@ -1490,7 +1490,7 @@ let CliHttpClient = CliHttpClient_1 = class CliHttpClient extends CliHttpLogClie
1490
1490
  }
1491
1491
 
1492
1492
  static getParamsSerializer(params) {
1493
- return querystring.stringify(cleanObject(params));
1493
+ return stringify(cleanObject(params));
1494
1494
  }
1495
1495
 
1496
1496
  async $onInit() {
@@ -1816,7 +1816,7 @@ let CliPlugins = class CliPlugins {
1816
1816
  const tasks = plugins.map(plugin => {
1817
1817
  return {
1818
1818
  title: `Run plugin '${chalk.cyan(plugin)}'`,
1819
- task: () => this.cliHooks.emit(CommandStoreKeys.ADD, plugin)
1819
+ task: () => this.cliHooks.emit(CommandStoreKeys.ADD, plugin, ctx)
1820
1820
  };
1821
1821
  });
1822
1822
  return [...tasks, {