You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use typescript-formatter as an essential building block for Schemats. We recently discovered that the formatted output from typescript-formatter would miss some letters in the 3rd line of the output. Some discussion around this happened on SweetIQ/schemats#37
I've created an example isolating the issue.
Input file ab.ts
/** * AUTO-GENERATED FILE @ 2016-12-07 13:17:46 - DO NOT EDIT! * * This file was generated with schemats node package: * $ schemats generate -c postgres://username:password@localhost/test -t users -o ./test/osm.ts * * Re-run the command above. */exportnamespacecta_situationcompte_scoFields{exporttypesco_id=number;exporttypesco_total_debit=number;exporttypesco_total_credit=number;exporttypesco_nb_ecritures=number;exporttypepst_id=number;exporttypecpt_id=number;}
Output from tsfmt
/** * AUTO-GENERATED FILE @ 2016-12-07 13:17:46 - DO NOT EDIT! * * This file was generated with schemats node package: * $ schemats generate -c postgres://username:password@localhost/test -t users -o ./test/osm.ts * * Re-run the command above. */exportnamespacecta_situationcompte_scoFields{exporttypesco_id=number;extypesco_total_debit=number;exporttypesco_total_credit=number;exporttypesco_nb_ecritures=number;exporttypepst_id=number;exporttypecpt_id=number;}
On the 3rd line of the output there's missing letter for the token export
Please help us :)
The text was updated successfully, but these errors were encountered:
Hi,
We use typescript-formatter as an essential building block for Schemats. We recently discovered that the formatted output from typescript-formatter would miss some letters in the 3rd line of the output. Some discussion around this happened on SweetIQ/schemats#37
I've created an example isolating the issue.
Input file
ab.ts
Output from tsfmt
On the 3rd line of the output there's missing letter for the token
export
Please help us :)
The text was updated successfully, but these errors were encountered: