@markw65/prettier-plugin-monkeyc 1.0.26 → 1.0.27
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/README.md +4 -0
- package/build/src/estree-types.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ interface BaseNode {
|
|
|
17
17
|
}
|
|
18
18
|
export declare type Node = Identifier | DottedName | ScopedName | Literal | Program | SwitchCase | InstanceOfCase | CatchClause | CatchClauses | VariableDeclarator | EnumStringBody | EnumStringMember | Statement | Expression | Property | Declaration | ImportStatement | AsTypeSpec | AttributeList | Attributes | TypeSpecList | TypeSpecPart | ClassElement | ClassBody | MethodDefinition | Comment;
|
|
19
19
|
export interface Comment extends BaseNode {
|
|
20
|
-
type: "Line" | "Block";
|
|
20
|
+
type: "Line" | "Block" | "MultiLine";
|
|
21
21
|
value: string;
|
|
22
22
|
}
|
|
23
23
|
interface SourceLocation {
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"prepack": "webpack --mode production"
|
|
24
24
|
},
|
|
25
25
|
"name": "@markw65/prettier-plugin-monkeyc",
|
|
26
|
-
"version": "1.0.
|
|
26
|
+
"version": "1.0.27",
|
|
27
27
|
"description": "A prettier plugin for Garmin monkey-c",
|
|
28
28
|
"main": "build/prettier-plugin-monkeyc.cjs",
|
|
29
29
|
"types": "build/src/prettier-plugin-monkeyc.d.ts",
|