mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
[ci] format
This commit is contained in:
parent
3ec41f284c
commit
43dda86ce2
3 changed files with 5 additions and 7 deletions
|
@ -69,12 +69,11 @@ export function collectErrorMetadata(e: any): ErrorWithMetadata {
|
|||
(e as any).stack = eol.lf((e as any).stack);
|
||||
}
|
||||
|
||||
|
||||
if (e.name === 'YAMLException') {
|
||||
const err = e as SSRError;
|
||||
err.loc = { file: (e as any).id, line: (e as any).mark.line, column: (e as any).mark.column }
|
||||
err.loc = { file: (e as any).id, line: (e as any).mark.line, column: (e as any).mark.column };
|
||||
err.message = (e as any).reason;
|
||||
|
||||
|
||||
if (!err.frame) {
|
||||
try {
|
||||
const fileContents = fs.readFileSync(err.loc.file!, 'utf8');
|
||||
|
|
|
@ -8,9 +8,9 @@ import { fileURLToPath } from 'url';
|
|||
import type { Plugin } from 'vite';
|
||||
import type { AstroConfig } from '../@types/astro';
|
||||
import { pagesVirtualModuleId } from '../core/app/index.js';
|
||||
import { collectErrorMetadata } from '../core/errors.js';
|
||||
import { prependForwardSlash } from '../core/path.js';
|
||||
import { resolvePages, viteID } from '../core/util.js';
|
||||
import { collectErrorMetadata } from '../core/errors.js';
|
||||
import { PAGE_SSR_SCRIPT_ID } from '../vite-plugin-scripts/index.js';
|
||||
import { getFileInfo } from '../vite-plugin-utils/index.js';
|
||||
|
||||
|
@ -26,7 +26,7 @@ function safeMatter(source: string, id: string) {
|
|||
return matter(source);
|
||||
} catch (e) {
|
||||
(e as any).id = id;
|
||||
throw collectErrorMetadata(e)
|
||||
throw collectErrorMetadata(e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
||||
"dev": "astro-scripts dev \"src/**/*.ts\""
|
||||
},
|
||||
"dependencies": {
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"astro": "workspace:*",
|
||||
"astro-scripts": "workspace:*"
|
||||
|
|
Loading…
Reference in a new issue