0.2.0 • Published 2 years ago

code-frame-error v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

code-frame-error

just an error with a code frame

Install

npm install code-frame-error
# yarn add code-frame-error

Use

import CodeFrameError, { File } from 'code-frame-error';
import type { BabelCodeFrameOptions } from '@babel/code-frame';

const file: File = {
  name: 'text.txt',
  rawLines: 'lorem ipsum sit amet',
  location: {
    start: { line: 1, column: 13 },
    end: { line: 1, column: 16 },
  },
};
const err = new CodeFrameError('Unexpected sit, expected dolor', file);

const options: BabelCodeFrameOptions = {};
console.log(err.toString(options));
/*

CodeFrameError: Unexpected sit, expected dolor

text.txt:1:13
> 1 | lorem ipsum sit amet
    |             ^^^

*/

console.log(err instanceof Error);
/* true */