@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 CHANGED
@@ -226,3 +226,7 @@ Accept and fix a few more illegal programs
226
226
 
227
227
  - Fix bug parsing case instanceof (it only allowed a plain identifier)
228
228
  - Fix more estree types
229
+
230
+ #### 1.0.27
231
+
232
+ - More nits in estree-types.
@@ -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",
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",