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 +2 -2
- package/index.cjs +1 -1
- package/index.d.ts +1 -3
- package/index.mjs +1660 -663
- package/package.json +1 -1
- package/plugins/acorn.js +12 -12
- package/plugins/acorn.mjs +12 -12
- package/plugins/angular.d.ts +1 -1
- package/plugins/angular.js +2 -2
- package/plugins/angular.mjs +2 -2
- package/plugins/babel.js +11 -11
- package/plugins/babel.mjs +11 -11
- package/plugins/flow.js +17 -17
- package/plugins/flow.mjs +17 -17
- package/plugins/glimmer.js +22 -22
- package/plugins/glimmer.mjs +22 -22
- package/plugins/graphql.js +15 -15
- package/plugins/graphql.mjs +15 -15
- package/plugins/html.d.ts +2 -2
- package/plugins/html.js +16 -16
- package/plugins/html.mjs +16 -16
- package/plugins/markdown.d.ts +1 -1
- package/plugins/markdown.js +47 -47
- package/plugins/markdown.mjs +47 -47
- package/plugins/meriyah.js +5 -5
- package/plugins/meriyah.mjs +5 -5
- package/plugins/postcss.js +44 -44
- package/plugins/postcss.mjs +44 -44
- package/plugins/typescript.js +19 -19
- package/plugins/typescript.mjs +19 -19
- package/plugins/yaml.js +104 -104
- package/plugins/yaml.mjs +104 -104
- package/standalone.js +15 -15
- package/standalone.mjs +15 -15
package/LICENSE
CHANGED
|
@@ -429,7 +429,7 @@ Author: Alex Bell <alex@bellandwhistle.net>
|
|
|
429
429
|
|
|
430
430
|
----------------------------------------
|
|
431
431
|
|
|
432
|
-
### @typescript-eslint/types@v5.
|
|
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.
|
|
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.
|
|
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;
|