prettier 3.0.0-alpha.10 → 3.0.0-alpha.11

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/LICENSE CHANGED
@@ -429,7 +429,7 @@ Author: Alex Bell <alex@bellandwhistle.net>
429
429
 
430
430
  ----------------------------------------
431
431
 
432
- ### @typescript-eslint/types@v5.58.0
432
+ ### @typescript-eslint/types@v5.59.0
433
433
 
434
434
  > Types for the TypeScript-ESTree AST spec
435
435
 
@@ -460,7 +460,7 @@ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
460
460
 
461
461
  ----------------------------------------
462
462
 
463
- ### @typescript-eslint/typescript-estree@v5.58.0
463
+ ### @typescript-eslint/typescript-estree@v5.59.0
464
464
 
465
465
  > A parser that converts TypeScript source code into an ESTree compatible form
466
466
 
package/index.cjs CHANGED
@@ -639,7 +639,7 @@ var init_public = __esm({
639
639
  // src/main/version.evaluate.cjs
640
640
  var require_version_evaluate = __commonJS({
641
641
  "src/main/version.evaluate.cjs"(exports2, module2) {
642
- module2.exports = "3.0.0-alpha.10";
642
+ module2.exports = "3.0.0-alpha.11";
643
643
  }
644
644
  });
645
645
 
package/index.d.ts CHANGED
@@ -449,9 +449,7 @@ export interface ParserOptions<T = any> extends RequiredOptions {
449
449
 
450
450
  export interface Plugin<T = any> {
451
451
  languages?: SupportLanguage[] | undefined;
452
- parsers?:
453
- | { [parserName: string]: Parser<T> | (() => Promise<Parser<T>>) }
454
- | undefined;
452
+ parsers?: { [parserName: string]: Parser<T> } | undefined;
455
453
  printers?: { [astFormat: string]: Printer<T> } | undefined;
456
454
  options?: SupportOptions | undefined;
457
455
  defaultOptions?: Partial<RequiredOptions> | undefined;