type errors
This commit is contained in:
parent
be44679420
commit
8490b00609
|
@ -5,6 +5,11 @@ import { Plugin } from 'rollup';
|
||||||
import { createFilter, dataToEsm } from '@rollup/pluginutils';
|
import { createFilter, dataToEsm } from '@rollup/pluginutils';
|
||||||
import { RollupJsonOptions } from '@rollup/plugin-json';
|
import { RollupJsonOptions } from '@rollup/plugin-json';
|
||||||
|
|
||||||
|
interface Json5SyntaxError extends SyntaxError {
|
||||||
|
lineNumber: number;
|
||||||
|
columnNumber: number;
|
||||||
|
}
|
||||||
|
|
||||||
export default function json5(options: RollupJsonOptions = {}): Plugin {
|
export default function json5(options: RollupJsonOptions = {}): Plugin {
|
||||||
const filter = createFilter(options.include, options.exclude);
|
const filter = createFilter(options.include, options.exclude);
|
||||||
const indent = 'indent' in options ? options.indent : '\t';
|
const indent = 'indent' in options ? options.indent : '\t';
|
||||||
|
@ -27,9 +32,12 @@ export default function json5(options: RollupJsonOptions = {}): Plugin {
|
||||||
map: { mappings: '' },
|
map: { mappings: '' },
|
||||||
};
|
};
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
const message = 'Could not parse JSON file';
|
if (!(err instanceof SyntaxError)) {
|
||||||
const position = parseInt(/[\d]/.exec(err.message)[0], 10);
|
throw err;
|
||||||
this.warn({ message, id, position });
|
}
|
||||||
|
const message = 'Could not parse JSON5 file';
|
||||||
|
const { lineNumber, columnNumber } = err as Json5SyntaxError;
|
||||||
|
this.warn({ message, id, loc: { line: lineNumber, column: columnNumber } });
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue