mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] format
This commit is contained in:
parent
c0c509b6bf
commit
87066c648a
10 changed files with 14 additions and 14 deletions
|
@ -11,6 +11,7 @@ import type {
|
|||
import type * as babel from '@babel/core';
|
||||
import type * as rollup from 'rollup';
|
||||
import type * as vite from 'vite';
|
||||
import type { Accept, ActionClient, InputSchema } from '../actions/runtime/virtual/server.js';
|
||||
import type { RemotePattern } from '../assets/utils/remotePattern.js';
|
||||
import type { AssetsPrefix, SerializedSSRManifest } from '../core/app/types.js';
|
||||
import type { PageBuildData } from '../core/build/types.js';
|
||||
|
@ -46,7 +47,6 @@ import type {
|
|||
} from '../transitions/events.js';
|
||||
import type { DeepPartial, OmitIndexSignature, Simplify, WithRequired } from '../type-utils.js';
|
||||
import type { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './../core/constants.js';
|
||||
import type { Accept, ActionClient, InputSchema } from '../actions/runtime/virtual/server.js';
|
||||
|
||||
export type { AstroIntegrationLogger, ToolbarServerHelpers };
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { mkdir, readFile, writeFile } from 'node:fs/promises';
|
||||
import type { Plugin as VitePlugin } from 'vite';
|
||||
import type { AstroIntegration } from '../@types/astro.js';
|
||||
import { ACTIONS_TYPES_FILE, RESOLVED_VIRTUAL_MODULE_ID, VIRTUAL_MODULE_ID } from './consts.js';
|
||||
import type { Plugin as VitePlugin } from 'vite';
|
||||
|
||||
export default function astroActions(): AstroIntegration {
|
||||
return {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import type { APIContext, MiddlewareNext } from '../../@types/astro.js';
|
||||
import { defineMiddleware } from '../../core/middleware/index.js';
|
||||
import { ApiContextStorage } from './store.js';
|
||||
import { formContentTypes, getAction, hasContentType } from './utils.js';
|
||||
import { callSafely } from './virtual/shared.js';
|
||||
import type { APIContext, MiddlewareNext } from '../../@types/astro.js';
|
||||
|
||||
export type Locals = {
|
||||
_actionsInternal: {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { AsyncLocalStorage } from 'node:async_hooks';
|
||||
import type { APIContext } from '../../@types/astro.js';
|
||||
import { AstroError } from '../../core/errors/errors.js';
|
||||
import { AsyncLocalStorage } from 'node:async_hooks';
|
||||
|
||||
export type ActionAPIContext = Omit<APIContext, 'getActionResult' | 'props'>;
|
||||
export const ApiContextStorage = new AsyncLocalStorage<ActionAPIContext>();
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
import { z } from 'zod';
|
||||
import { getApiContext } from '../store.js';
|
||||
import { hasContentType, type MaybePromise } from '../utils.js';
|
||||
import { type MaybePromise, hasContentType } from '../utils.js';
|
||||
import {
|
||||
ActionError,
|
||||
ActionInputError,
|
||||
callSafely,
|
||||
type ErrorInferenceObject,
|
||||
type SafeResult,
|
||||
callSafely,
|
||||
} from './shared.js';
|
||||
|
||||
export * from './shared.js';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { AstroError } from '../core/errors/errors.js';
|
||||
import type { APIContext } from '../@types/astro.js';
|
||||
import { AstroError } from '../core/errors/errors.js';
|
||||
import type { Locals } from './runtime/middleware.js';
|
||||
|
||||
function hasActionsInternal(locals: APIContext['locals']): locals is Locals {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
import { createGetActionResult } from '../actions/utils.js';
|
||||
import type {
|
||||
APIContext,
|
||||
AstroGlobal,
|
||||
|
@ -11,6 +10,7 @@ import type {
|
|||
SSRResult,
|
||||
} from '../@types/astro.js';
|
||||
import type { ActionAPIContext } from '../actions/runtime/store.js';
|
||||
import { createGetActionResult } from '../actions/utils.js';
|
||||
import {
|
||||
computeCurrentLocale,
|
||||
computePreferredLocale,
|
||||
|
|
|
@ -4,10 +4,10 @@ import { fileURLToPath } from 'node:url';
|
|||
import { bold } from 'kleur/colors';
|
||||
import { type Plugin, normalizePath } from 'vite';
|
||||
import type { AstroSettings } from '../@types/astro.js';
|
||||
import { ACTIONS_TYPES_FILE } from '../actions/consts.js';
|
||||
import { CONTENT_TYPES_FILE } from '../content/consts.js';
|
||||
import { getContentPaths } from '../content/index.js';
|
||||
import { type Logger } from '../core/logger/core.js';
|
||||
import { CONTENT_TYPES_FILE } from '../content/consts.js';
|
||||
import { ACTIONS_TYPES_FILE } from '../actions/consts.js';
|
||||
|
||||
export function getEnvTsPath({ srcDir }: { srcDir: URL }) {
|
||||
return new URL('env.d.ts', srcDir);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import { before, after, describe, it } from 'node:test';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import testAdapter from './test-adapter.js';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
|
||||
describe('Astro Actions', () => {
|
||||
let fixture;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import * as fs from 'node:fs';
|
||||
import { before, describe, it } from 'node:test';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
import { CONTENT_TYPES_FILE } from '../dist/content/consts.js';
|
||||
import { ACTIONS_TYPES_FILE } from '../dist/actions/consts.js';
|
||||
import { CONTENT_TYPES_FILE } from '../dist/content/consts.js';
|
||||
import { getContentPaths } from '../dist/content/utils.js';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
|
||||
describe('astro sync', () => {
|
||||
let fixture;
|
||||
|
|
Loading…
Add table
Reference in a new issue