summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar ematipico <ematipico@users.noreply.github.com> 2023-08-04 14:02:02 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-04 14:02:02 +0000
commit60616bb7172d70f495d5631036643ec45de29e67 (patch)
tree98455d993df4956ec48b2f2ecc7536987b1bf4b3
parentf844238c9b5c44fdb60fdd9c2c4df1cc87ef6892 (diff)
downloadastro-60616bb7172d70f495d5631036643ec45de29e67.tar.gz
astro-60616bb7172d70f495d5631036643ec45de29e67.tar.zst
astro-60616bb7172d70f495d5631036643ec45de29e67.zip
[ci] format
-rw-r--r--packages/astro/src/content/types-generator.ts2
-rw-r--r--packages/astro/src/content/vite-plugin-content-imports.ts2
-rw-r--r--packages/astro/src/jsx/babel.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/src/content/types-generator.ts b/packages/astro/src/content/types-generator.ts
index dcd517b15..238e32c5f 100644
--- a/packages/astro/src/content/types-generator.ts
+++ b/packages/astro/src/content/types-generator.ts
@@ -5,8 +5,8 @@ import * as path from 'node:path';
import { fileURLToPath, pathToFileURL } from 'node:url';
import { normalizePath, type ViteDevServer } from 'vite';
import type { AstroSettings, ContentEntryType } from '../@types/astro.js';
-import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
+import { AstroErrorData } from '../core/errors/index.js';
import { info, warn, type LogOptions } from '../core/logger/core.js';
import { isRelativePath } from '../core/path.js';
import { CONTENT_TYPES_FILE, VIRTUAL_MODULE_ID } from './consts.js';
diff --git a/packages/astro/src/content/vite-plugin-content-imports.ts b/packages/astro/src/content/vite-plugin-content-imports.ts
index 855878a5c..a659dd4a0 100644
--- a/packages/astro/src/content/vite-plugin-content-imports.ts
+++ b/packages/astro/src/content/vite-plugin-content-imports.ts
@@ -12,8 +12,8 @@ import type {
DataEntryModule,
DataEntryType,
} from '../@types/astro.js';
-import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
+import { AstroErrorData } from '../core/errors/index.js';
import { escapeViteEnvReferences } from '../vite-plugin-utils/index.js';
import { CONTENT_FLAG, DATA_FLAG } from './consts.js';
import {
diff --git a/packages/astro/src/jsx/babel.ts b/packages/astro/src/jsx/babel.ts
index 86b97a495..6ae8ebe1c 100644
--- a/packages/astro/src/jsx/babel.ts
+++ b/packages/astro/src/jsx/babel.ts
@@ -1,7 +1,7 @@
import type { PluginObj } from '@babel/core';
import * as t from '@babel/types';
-import { AstroErrorData } from '../core/errors/index.js';
import { AstroError } from '../core/errors/errors.js';
+import { AstroErrorData } from '../core/errors/index.js';
import { resolvePath } from '../core/util.js';
import type { PluginMetadata } from '../vite-plugin-astro/types';