@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.
package/lib/index.js CHANGED
@@ -1525,7 +1525,7 @@ exports.CliHttpClient = CliHttpClient_1 = class CliHttpClient extends CliHttpLog
1525
1525
  }
1526
1526
 
1527
1527
  static getParamsSerializer(params) {
1528
- return querystring__default['default'].stringify(core.cleanObject(params));
1528
+ return querystring.stringify(core.cleanObject(params));
1529
1529
  }
1530
1530
 
1531
1531
  async $onInit() {
@@ -1851,7 +1851,7 @@ exports.CliPlugins = class CliPlugins {
1851
1851
  const tasks = plugins.map(plugin => {
1852
1852
  return {
1853
1853
  title: `Run plugin '${chalk__default['default'].cyan(plugin)}'`,
1854
- task: () => this.cliHooks.emit(CommandStoreKeys.ADD, plugin)
1854
+ task: () => this.cliHooks.emit(CommandStoreKeys.ADD, plugin, ctx)
1855
1855
  };
1856
1856
  });
1857
1857
  return [...tasks, {