@whook/create 12.1.0 → 13.1.0

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.
@@ -1,3 +1,4 @@
1
+ /* eslint-disable @typescript-eslint/no-explicit-any */
1
2
  import { describe, it, beforeEach, jest, expect } from '@jest/globals';
2
3
  import _inquirer from 'inquirer';
3
4
  import initAuthor from './author.js';
@@ -26,7 +26,7 @@ export default autoService(async function initAuthor({
26
26
  readGitProperty({ exec, log }, 'user.email'),
27
27
  ]).catch((err) => {
28
28
  log('debug', 'Could not get author from Git');
29
- log('debug-stack', printStackTrace(err));
29
+ log('debug-stack', printStackTrace(err as Error));
30
30
  return [];
31
31
  });
32
32