babel-plugin-flow-comments
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "babel-plugin-flow-comments", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Turn flow type annotations into comments", | ||
@@ -5,0 +5,0 @@ "repository": "babel-plugins/babel-plugin-flow-comments", |
@@ -0,1 +1,3 @@ | ||
type T = /*test*/ number; | ||
type T2 = /* *-/ */ number; | ||
type CustomType = { | ||
@@ -2,0 +4,0 @@ /** This is some documentation. */ |
"use strict"; | ||
/*:: type T = /*test*-/ number;*/ | ||
/*:: type T2 = /* *-ESCAPED/ *-/ number;*/ | ||
/*:: type CustomType = { | ||
/** This is some documentation. // | ||
/** This is some documentation. *-/ | ||
name: string; | ||
};*/ |
5206
109