@tsed/cli-core 3.20.14 → 3.20.15

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
@@ -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, {