summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Ben Holmes <bholmesdev@users.noreply.github.com> 2024-08-26 21:54:39 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-08-26 21:54:39 +0000
commitb81b70332d639ac0522cebfa11771aa5d8c81f7c (patch)
treef7d4159eabbbdaea3aefa4270a6624e46141aae3
parent20d47aa85a3a0d7ac3390f749715d92de830cf3e (diff)
downloadastro-b81b70332d639ac0522cebfa11771aa5d8c81f7c.tar.gz
astro-b81b70332d639ac0522cebfa11771aa5d8c81f7c.tar.zst
astro-b81b70332d639ac0522cebfa11771aa5d8c81f7c.zip
[ci] format
Diffstat (limited to '')
-rw-r--r--packages/astro/src/@types/astro.ts2
-rw-r--r--packages/astro/src/actions/runtime/virtual/shared.ts6
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts
index 0ebbdef01..182345112 100644
--- a/packages/astro/src/@types/astro.ts
+++ b/packages/astro/src/@types/astro.ts
@@ -54,8 +54,8 @@ import type {
} from '../transitions/events.js';
import type { DeepPartial, OmitIndexSignature, Simplify } from '../type-utils.js';
import type {
- SUPPORTED_MARKDOWN_FILE_EXTENSIONS,
REDIRECT_STATUS_CODES,
+ SUPPORTED_MARKDOWN_FILE_EXTENSIONS,
} from './../core/constants.js';
export type { AstroIntegrationLogger, ToolbarServerHelpers };
diff --git a/packages/astro/src/actions/runtime/virtual/shared.ts b/packages/astro/src/actions/runtime/virtual/shared.ts
index be9f063b9..01f9bd4e6 100644
--- a/packages/astro/src/actions/runtime/virtual/shared.ts
+++ b/packages/astro/src/actions/runtime/virtual/shared.ts
@@ -1,14 +1,14 @@
import { parse as devalueParse, stringify as devalueStringify } from 'devalue';
import type { z } from 'zod';
+import { REDIRECT_STATUS_CODES } from '../../../core/constants.js';
+import { ActionsReturnedInvalidDataError } from '../../../core/errors/errors-data.js';
+import { AstroError } from '../../../core/errors/errors.js';
import { ACTION_QUERY_PARAMS as _ACTION_QUERY_PARAMS } from '../../consts.js';
import type {
ErrorInferenceObject,
MaybePromise,
ActionAPIContext as _ActionAPIContext,
} from '../utils.js';
-import { REDIRECT_STATUS_CODES } from '../../../core/constants.js';
-import { ActionsReturnedInvalidDataError } from '../../../core/errors/errors-data.js';
-import { AstroError } from '../../../core/errors/errors.js';
export type ActionAPIContext = _ActionAPIContext;
export const ACTION_QUERY_PARAMS = _ACTION_QUERY_PARAMS;