@diplodoc/cli 5.11.5 → 5.11.6

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.
@@ -14727,18 +14727,18 @@ var Extension = class {
14727
14727
  apply(program) {
14728
14728
  (0, import_program.getHooks)(program).BeforeAnyRun.tap("ArcadiaVcsConnector", (run) => {
14729
14729
  (0, import_vcs.getHooks)(run.vcs).VcsConnector.tapPromise(
14730
- "ArcadiaVcsConnector",
14730
+ { name: "ArcadiaVcsConnector", stage: 10 },
14731
14731
  async (_connector) => {
14732
14732
  const connector = new ArcadiaVcsConnector(run);
14733
14733
  return connector.init();
14734
14734
  }
14735
14735
  );
14736
14736
  });
14737
- (0, import_program.getHooks)(program).Command.tap("ArcadiaVcsConnector", async (command) => {
14737
+ (0, import_program.getHooks)(program).Command.tap("ArcadiaVcsConnector", (command) => {
14738
14738
  command.addOption(options.vcsScopes);
14739
14739
  command.addOption(options.vcsInitialCommit);
14740
14740
  });
14741
- (0, import_program.getHooks)(program).Config.tapPromise("ArcadiaVcsConnector", async (config, args) => {
14741
+ (0, import_program.getHooks)(program).Config.tap("ArcadiaVcsConnector", (config, args) => {
14742
14742
  if (!config.vcs.enabled) {
14743
14743
  return config;
14744
14744
  }