Compare commits
2 commits
main
...
feat/modul
Author | SHA1 | Date | |
---|---|---|---|
|
9959899b5e | ||
|
cb973ee1e2 |
257 changed files with 555 additions and 484 deletions
32
.changeset/afraid-dots-whisper.md
Normal file
32
.changeset/afraid-dots-whisper.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
---
|
||||||
|
'@astrojs/cloudflare': major
|
||||||
|
'@astrojs/partytown': major
|
||||||
|
'@astrojs/tailwind': major
|
||||||
|
'@astrojs/netlify': major
|
||||||
|
'@astrojs/sitemap': major
|
||||||
|
'@astrojs/preact': major
|
||||||
|
'@astrojs/svelte': major
|
||||||
|
'@astrojs/vercel': major
|
||||||
|
'@astrojs/react': major
|
||||||
|
'@astrojs/solid-js': major
|
||||||
|
'@astrojs/deno': major
|
||||||
|
'@astrojs/node': major
|
||||||
|
'@astrojs/lit': major
|
||||||
|
'@astrojs/vue': major
|
||||||
|
'create-astro': major
|
||||||
|
'@astrojs/prism': major
|
||||||
|
'@astrojs/rss': major
|
||||||
|
'@astrojs/telemetry': major
|
||||||
|
'@astrojs/webapi': major
|
||||||
|
'astro': major
|
||||||
|
'@astrojs/turbolinks': minor
|
||||||
|
'@astrojs/alpinejs': minor
|
||||||
|
'@astrojs/prefetch': minor
|
||||||
|
'@astrojs/markdoc': minor
|
||||||
|
'@astrojs/underscore-redirects': minor
|
||||||
|
'@astrojs/image': minor
|
||||||
|
'@astrojs/mdx': minor
|
||||||
|
'@astrojs/internal-helpers': minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
|
2
.github/ISSUE_TEMPLATE/---01-bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/---01-bug-report.yml
vendored
|
@ -10,7 +10,7 @@ body:
|
||||||
Thank you for taking the time to file a bug report! Please fill out this form as completely as possible.
|
Thank you for taking the time to file a bug report! Please fill out this form as completely as possible.
|
||||||
|
|
||||||
✅ I am using the **latest version of Astro** and all plugins.
|
✅ I am using the **latest version of Astro** and all plugins.
|
||||||
✅ I am using a version of Node that supports ESM (`v14.18.0+`, or `v16.12.0+`)
|
✅ I am using a version of Node that Astro supports (`>=18.14.1`)
|
||||||
- type: input
|
- type: input
|
||||||
id: astro-version
|
id: astro-version
|
||||||
attributes:
|
attributes:
|
||||||
|
|
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
@ -33,7 +33,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
OS: [ubuntu-latest, windows-latest]
|
OS: [ubuntu-latest, windows-latest]
|
||||||
NODE_VERSION: [16]
|
NODE_VERSION: [18]
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
steps:
|
steps:
|
||||||
# Disable crlf so all OS can share the same Turbo cache
|
# Disable crlf so all OS can share the same Turbo cache
|
||||||
|
@ -85,7 +85,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
@ -108,12 +108,12 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
OS: [ubuntu-latest]
|
OS: [ubuntu-latest]
|
||||||
NODE_VERSION: [16, 18]
|
NODE_VERSION: [18, 20]
|
||||||
include:
|
include:
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
NODE_VERSION: 16
|
NODE_VERSION: 18
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
NODE_VERSION: 16
|
NODE_VERSION: 18
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
||||||
|
@ -155,7 +155,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
OS: [ubuntu-latest, windows-latest]
|
OS: [ubuntu-latest, windows-latest]
|
||||||
NODE_VERSION: [16]
|
NODE_VERSION: [18]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
||||||
|
@ -192,7 +192,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
OS: [ubuntu-latest, windows-latest]
|
OS: [ubuntu-latest, windows-latest]
|
||||||
NODE_VERSION: [16]
|
NODE_VERSION: [18]
|
||||||
env:
|
env:
|
||||||
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
NODE_VERSION: ${{ matrix.NODE_VERSION }}
|
||||||
steps:
|
steps:
|
||||||
|
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -38,7 +38,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -29,7 +29,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
2
.github/workflows/scripts.yml
vendored
2
.github/workflows/scripts.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
2
.github/workflows/snapshot-release.yml
vendored
2
.github/workflows/snapshot-release.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
- name: Setup Node
|
- name: Setup Node
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
registry-url: "https://registry.npmjs.org"
|
registry-url: "https://registry.npmjs.org"
|
||||||
cache: "pnpm"
|
cache: "pnpm"
|
||||||
|
|
||||||
|
|
2
.nvmrc
2
.nvmrc
|
@ -1 +1 @@
|
||||||
16.19.0
|
18.14.1
|
||||||
|
|
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"typescript.preferences.importModuleSpecifierEnding": "js"
|
||||||
|
}
|
|
@ -10,7 +10,7 @@ We welcome contributions of any size and skill level. As an open source project,
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
node: "^>=16.12.0"
|
node: "^>=18.14.1"
|
||||||
pnpm: "^8.6.2"
|
pnpm: "^8.6.2"
|
||||||
# otherwise, your build will fail
|
# otherwise, your build will fail
|
||||||
```
|
```
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"module": "ES2020",
|
"module": "ES2022",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"target": "ES2020"
|
"target": "ES2022"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
"packages/*"
|
"packages/*"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.12.0",
|
"node": ">=18.14.1",
|
||||||
"pnpm": ">=8.6.2"
|
"pnpm": ">=8.6.2"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@8.6.2",
|
"packageManager": "pnpm@8.6.2",
|
||||||
|
@ -82,7 +82,7 @@
|
||||||
"@types/node": "^18.16.18",
|
"@types/node": "^18.16.18",
|
||||||
"@typescript-eslint/eslint-plugin": "6.0.0",
|
"@typescript-eslint/eslint-plugin": "6.0.0",
|
||||||
"@typescript-eslint/parser": "6.0.0",
|
"@typescript-eslint/parser": "6.0.0",
|
||||||
"esbuild": "^0.17.19",
|
"esbuild": "^0.18.16",
|
||||||
"eslint": "^8.43.0",
|
"eslint": "^8.43.0",
|
||||||
"eslint-config-prettier": "^8.8.0",
|
"eslint-config-prettier": "^8.8.0",
|
||||||
"eslint-plugin-no-only-tests": "^2.6.0",
|
"eslint-plugin-no-only-tests": "^2.6.0",
|
||||||
|
@ -93,6 +93,6 @@
|
||||||
"prettier-plugin-astro": "^0.10.0",
|
"prettier-plugin-astro": "^0.10.0",
|
||||||
"tiny-glob": "^0.2.9",
|
"tiny-glob": "^0.2.9",
|
||||||
"turbo": "^1.10.3",
|
"turbo": "^1.10.3",
|
||||||
"typescript": "~5.0.2"
|
"typescript": "~5.1.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
|
"homepage": "https://docs.astro.build/en/reference/api-reference/#prism-",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc -p ./tsconfig.json",
|
||||||
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
||||||
"dev": "astro-scripts dev \"src/**/*.ts\""
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
||||||
},
|
},
|
||||||
|
@ -39,6 +39,6 @@
|
||||||
"astro-scripts": "workspace:*"
|
"astro-scripts": "workspace:*"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.12.0"
|
"node": ">=18.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"include": ["src"],
|
"include": ["src"],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"target": "ES2021",
|
"target": "ES2022",
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"outDir": "./dist"
|
"outDir": "./dist"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { z } from 'astro/zod';
|
import type { z } from 'astro/zod';
|
||||||
import type { RSSOptions } from './index';
|
import type { RSSOptions } from './index.js';
|
||||||
|
|
||||||
/** Normalize URL to its canonical form */
|
/** Normalize URL to its canonical form */
|
||||||
export function createCanonicalURL(
|
export function createCanonicalURL(
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"target": "ES2021",
|
"target": "ES2022",
|
||||||
"strictNullChecks": true
|
"strictNullChecks": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,8 +13,8 @@ const CI_INSTRUCTIONS = {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Hardcode supported Node.js version so we don't have to read differently in CJS & ESM.
|
// Hardcode supported Node.js version so we don't have to read differently in CJS & ESM.
|
||||||
const engines = '>=16.12.0';
|
const engines = '>=18.14.1';
|
||||||
const skipSemverCheckIfAbove = 16;
|
const skipSemverCheckIfAbove = 19;
|
||||||
|
|
||||||
/** `astro *` */
|
/** `astro *` */
|
||||||
async function main() {
|
async function main() {
|
||||||
|
|
8
packages/astro/client-base.d.ts
vendored
8
packages/astro/client-base.d.ts
vendored
|
@ -57,7 +57,7 @@ declare module 'astro:assets' {
|
||||||
type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };
|
type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] };
|
||||||
type Simplify<T> = { [KeyType in keyof T]: T[KeyType] };
|
type Simplify<T> = { [KeyType in keyof T]: T[KeyType] };
|
||||||
type ImgAttributes = WithRequired<
|
type ImgAttributes = WithRequired<
|
||||||
Omit<import('./types').HTMLAttributes<'img'>, 'src' | 'width' | 'height'>,
|
Omit<import('./types.js').HTMLAttributes<'img'>, 'src' | 'width' | 'height'>,
|
||||||
'alt'
|
'alt'
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ declare module 'astro:transitions' {
|
||||||
export const ViewTransitions: ViewTransitionsModule['default'];
|
export const ViewTransitions: ViewTransitionsModule['default'];
|
||||||
}
|
}
|
||||||
|
|
||||||
type MD = import('./dist/@types/astro').MarkdownInstance<Record<string, any>>;
|
type MD = import('./dist/@types/astro.js').MarkdownInstance<Record<string, any>>;
|
||||||
interface ExportedMarkdownModuleEntities {
|
interface ExportedMarkdownModuleEntities {
|
||||||
frontmatter: MD['frontmatter'];
|
frontmatter: MD['frontmatter'];
|
||||||
file: MD['file'];
|
file: MD['file'];
|
||||||
|
@ -184,7 +184,7 @@ declare module '*.mdown' {
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '*.mdx' {
|
declare module '*.mdx' {
|
||||||
type MDX = import('./dist/@types/astro').MDXInstance<Record<string, any>>;
|
type MDX = import('./dist/@types/astro.js').MDXInstance<Record<string, any>>;
|
||||||
|
|
||||||
export const frontmatter: MDX['frontmatter'];
|
export const frontmatter: MDX['frontmatter'];
|
||||||
export const file: MDX['file'];
|
export const file: MDX['file'];
|
||||||
|
@ -197,7 +197,7 @@ declare module '*.mdx' {
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'astro:ssr-manifest' {
|
declare module 'astro:ssr-manifest' {
|
||||||
export const manifest: import('./dist/@types/astro').SSRManifest;
|
export const manifest: import('./dist/@types/astro.js').SSRManifest;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Everything below are Vite's types (apart from image types, which are in `client.d.ts`)
|
// Everything below are Vite's types (apart from image types, which are in `client.d.ts`)
|
||||||
|
|
|
@ -141,8 +141,8 @@
|
||||||
"devalue": "^4.3.2",
|
"devalue": "^4.3.2",
|
||||||
"diff": "^5.1.0",
|
"diff": "^5.1.0",
|
||||||
"es-module-lexer": "^1.3.0",
|
"es-module-lexer": "^1.3.0",
|
||||||
"esbuild": "^0.17.19",
|
"esbuild": "^0.18.16",
|
||||||
"estree-walker": "3.0.0",
|
"estree-walker": "^3.0.3",
|
||||||
"execa": "^6.1.0",
|
"execa": "^6.1.0",
|
||||||
"fast-glob": "^3.2.12",
|
"fast-glob": "^3.2.12",
|
||||||
"github-slugger": "^2.0.0",
|
"github-slugger": "^2.0.0",
|
||||||
|
@ -150,7 +150,7 @@
|
||||||
"html-escaper": "^3.0.3",
|
"html-escaper": "^3.0.3",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"kleur": "^4.1.4",
|
"kleur": "^4.1.4",
|
||||||
"magic-string": "^0.27.0",
|
"magic-string": "^0.30.1",
|
||||||
"mime": "^3.0.0",
|
"mime": "^3.0.0",
|
||||||
"network-information-types": "^0.1.1",
|
"network-information-types": "^0.1.1",
|
||||||
"ora": "^6.3.1",
|
"ora": "^6.3.1",
|
||||||
|
@ -224,7 +224,7 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=16.12.0",
|
"node": ">=18.14.1",
|
||||||
"npm": ">=6.14.0"
|
"npm": ">=6.14.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,13 +14,13 @@ import type * as rollup from 'rollup';
|
||||||
import type { TsConfigJson } from 'tsconfig-resolver';
|
import type { TsConfigJson } from 'tsconfig-resolver';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import type { z } from 'zod';
|
import type { z } from 'zod';
|
||||||
import type { SerializedSSRManifest } from '../core/app/types';
|
import type { SerializedSSRManifest } from '../core/app/types.js';
|
||||||
import type { PageBuildData } from '../core/build/types';
|
import type { PageBuildData } from '../core/build/types.js';
|
||||||
import type { AstroConfigSchema } from '../core/config';
|
import type { AstroConfigSchema } from '../core/config/index.js';
|
||||||
import type { AstroTimer } from '../core/config/timer';
|
import type { AstroTimer } from '../core/config/timer.js';
|
||||||
import type { AstroCookies } from '../core/cookies';
|
import type { AstroCookies } from '../core/cookies/index.js';
|
||||||
import type { LogOptions } from '../core/logger/core';
|
import type { LogOptions } from '../core/logger/core.js';
|
||||||
import type { AstroComponentFactory, AstroComponentInstance } from '../runtime/server';
|
import type { AstroComponentFactory, AstroComponentInstance } from '../runtime/server/index.js';
|
||||||
import type { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './../core/constants.js';
|
import type { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './../core/constants.js';
|
||||||
export type {
|
export type {
|
||||||
MarkdownHeading,
|
MarkdownHeading,
|
||||||
|
@ -34,7 +34,7 @@ export type {
|
||||||
ExternalImageService,
|
ExternalImageService,
|
||||||
ImageService,
|
ImageService,
|
||||||
LocalImageService,
|
LocalImageService,
|
||||||
} from '../assets/services/service';
|
} from '../assets/services/service.js';
|
||||||
export type {
|
export type {
|
||||||
GetImageResult,
|
GetImageResult,
|
||||||
ImageInputFormat,
|
ImageInputFormat,
|
||||||
|
@ -43,9 +43,9 @@ export type {
|
||||||
ImageQuality,
|
ImageQuality,
|
||||||
ImageQualityPreset,
|
ImageQualityPreset,
|
||||||
ImageTransform,
|
ImageTransform,
|
||||||
} from '../assets/types';
|
} from '../assets/types.js';
|
||||||
export type { SSRManifest } from '../core/app/types';
|
export type { SSRManifest } from '../core/app/types.js';
|
||||||
export type { AstroCookies } from '../core/cookies';
|
export type { AstroCookies } from '../core/cookies/index.js';
|
||||||
|
|
||||||
export interface AstroBuiltinProps {
|
export interface AstroBuiltinProps {
|
||||||
'client:load'?: boolean;
|
'client:load'?: boolean;
|
||||||
|
|
|
@ -33,7 +33,7 @@ export interface RotateOptions {
|
||||||
}
|
}
|
||||||
|
|
||||||
// MozJPEG
|
// MozJPEG
|
||||||
import type { MozJPEGModule as MozJPEGEncodeModule } from './mozjpeg/mozjpeg_enc'
|
import type { MozJPEGModule as MozJPEGEncodeModule } from './mozjpeg/mozjpeg_enc.js'
|
||||||
import mozDec from './mozjpeg/mozjpeg_node_dec.js'
|
import mozDec from './mozjpeg/mozjpeg_node_dec.js'
|
||||||
import mozDecWasm from './mozjpeg/mozjpeg_node_dec.wasm.js'
|
import mozDecWasm from './mozjpeg/mozjpeg_node_dec.wasm.js'
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ import mozEnc from './mozjpeg/mozjpeg_node_enc.js'
|
||||||
import mozEncWasm from './mozjpeg/mozjpeg_node_enc.wasm.js'
|
import mozEncWasm from './mozjpeg/mozjpeg_node_enc.wasm.js'
|
||||||
|
|
||||||
// WebP
|
// WebP
|
||||||
import type { WebPModule as WebPEncodeModule } from './webp/webp_enc'
|
import type { WebPModule as WebPEncodeModule } from './webp/webp_enc.js'
|
||||||
import webpDec from './webp/webp_node_dec.js'
|
import webpDec from './webp/webp_node_dec.js'
|
||||||
import webpDecWasm from './webp/webp_node_dec.wasm.js'
|
import webpDecWasm from './webp/webp_node_dec.wasm.js'
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ import webpEnc from './webp/webp_node_enc.js'
|
||||||
import webpEncWasm from './webp/webp_node_enc.wasm.js'
|
import webpEncWasm from './webp/webp_node_enc.wasm.js'
|
||||||
|
|
||||||
// AVIF
|
// AVIF
|
||||||
import type { AVIFModule as AVIFEncodeModule } from './avif/avif_enc'
|
import type { AVIFModule as AVIFEncodeModule } from './avif/avif_enc.js'
|
||||||
import avifDec from './avif/avif_node_dec.js'
|
import avifDec from './avif/avif_node_dec.js'
|
||||||
import avifDecWasm from './avif/avif_node_dec.wasm.js'
|
import avifDecWasm from './avif/avif_node_dec.wasm.js'
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
export const BMP: IImage = {
|
export const BMP: IImage = {
|
||||||
validate(buffer) {
|
validate(buffer) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ICO } from './ico.js'
|
import { ICO } from './ico.js'
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
const TYPE_CURSOR = 2
|
const TYPE_CURSOR = 2
|
||||||
export const CUR: IImage = {
|
export const CUR: IImage = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
export const DDS: IImage = {
|
export const DDS: IImage = {
|
||||||
validate(buffer) {
|
validate(buffer) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
const gifRegexp = /^GIF8[79]a/
|
const gifRegexp = /^GIF8[79]a/
|
||||||
export const GIF: IImage = {
|
export const GIF: IImage = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ICNS Header
|
* ICNS Header
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage, ISize, ISizeCalculationResult } from './interface'
|
import type { IImage, ISize, ISizeCalculationResult } from './interface.js'
|
||||||
|
|
||||||
const TYPE_ICON = 1
|
const TYPE_ICON = 1
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
export const J2C: IImage = {
|
export const J2C: IImage = {
|
||||||
validate(buffer) {
|
validate(buffer) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
const BoxTypes = {
|
const BoxTypes = {
|
||||||
ftyp: '66747970',
|
ftyp: '66747970',
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// if this range we can't detect the file size correctly.
|
// if this range we can't detect the file size correctly.
|
||||||
|
|
||||||
import { readUInt } from '../readUInt.js'
|
import { readUInt } from '../readUInt.js'
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
const EXIF_MARKER = '45786966'
|
const EXIF_MARKER = '45786966'
|
||||||
const APP1_DATA_SIZE_BYTES = 2
|
const APP1_DATA_SIZE_BYTES = 2
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
const SIGNATURE = 'KTX 11'
|
const SIGNATURE = 'KTX 11'
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
const pngSignature = 'PNG\r\n\x1a\n'
|
const pngSignature = 'PNG\r\n\x1a\n'
|
||||||
const pngImageHeaderChunkName = 'IHDR'
|
const pngImageHeaderChunkName = 'IHDR'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
const PNMTypes: { [signature: string]: string } = {
|
const PNMTypes: { [signature: string]: string } = {
|
||||||
P1: 'pbm/ascii',
|
P1: 'pbm/ascii',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
export const PSD: IImage = {
|
export const PSD: IImage = {
|
||||||
validate(buffer) {
|
validate(buffer) {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
interface IAttributes {
|
interface IAttributes {
|
||||||
width: number | null
|
width: number | null
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// TO-DO: support big-endian as well
|
// TO-DO: support big-endian as well
|
||||||
import * as fs from 'node:fs'
|
import * as fs from 'node:fs'
|
||||||
import { readUInt } from '../readUInt.js'
|
import { readUInt } from '../readUInt.js'
|
||||||
import type { IImage } from './interface'
|
import type { IImage } from './interface.js'
|
||||||
|
|
||||||
// Read IFD (image-file-directory) into a buffer
|
// Read IFD (image-file-directory) into a buffer
|
||||||
function readIFD(buffer: Buffer, filepath: string, isBigEndian: boolean) {
|
function readIFD(buffer: Buffer, filepath: string, isBigEndian: boolean) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// based on https://developers.google.com/speed/webp/docs/riff_container
|
// based on https://developers.google.com/speed/webp/docs/riff_container
|
||||||
import type { IImage, ISize } from './interface'
|
import type { IImage, ISize } from './interface.js'
|
||||||
|
|
||||||
function calculateExtended(buffer: Buffer): ISize {
|
function calculateExtended(buffer: Buffer): ISize {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -3,7 +3,7 @@ import MagicString from 'magic-string';
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import { normalizePath } from 'vite';
|
import { normalizePath } from 'vite';
|
||||||
import type { AstroPluginOptions, ImageTransform } from '../@types/astro';
|
import type { AstroPluginOptions, ImageTransform } from '../@types/astro.js';
|
||||||
import { error } from '../core/logger/core.js';
|
import { error } from '../core/logger/core.js';
|
||||||
import {
|
import {
|
||||||
appendForwardSlash,
|
appendForwardSlash,
|
||||||
|
|
|
@ -3,13 +3,11 @@ import parser from '@babel/parser';
|
||||||
import traverse from '@babel/traverse';
|
import traverse from '@babel/traverse';
|
||||||
import * as t from '@babel/types';
|
import * as t from '@babel/types';
|
||||||
|
|
||||||
// @ts-expect-error @babel/traverse isn't ESM and needs this trick
|
export const visit = traverse.default;
|
||||||
export const visit = traverse.default as typeof traverse;
|
|
||||||
export { t };
|
export { t };
|
||||||
|
|
||||||
export async function generate(ast: t.File) {
|
export async function generate(ast: t.File) {
|
||||||
// @ts-expect-error @babel/generator isn't ESM and needs this trick
|
const astToText = generator.default;
|
||||||
const astToText = generator.default as typeof generator;
|
|
||||||
const { code } = astToText(ast);
|
const { code } = astToText(ast);
|
||||||
return code;
|
return code;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,11 +12,11 @@ import { join } from 'node:path';
|
||||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||||
import ora from 'ora';
|
import ora from 'ora';
|
||||||
import type { Arguments as Flags } from 'yargs-parser';
|
import type { Arguments as Flags } from 'yargs-parser';
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import type { LogOptions } from '../../core/logger/core.js';
|
import type { LogOptions } from '../../core/logger/core.js';
|
||||||
import { debug, info } from '../../core/logger/core.js';
|
import { debug, info } from '../../core/logger/core.js';
|
||||||
import { printHelp } from '../../core/messages.js';
|
import { printHelp } from '../../core/messages.js';
|
||||||
import type { ProcessExit, SyncOptions } from '../../core/sync';
|
import type { ProcessExit, SyncOptions } from '../../core/sync/index.js';
|
||||||
import { loadSettings } from '../load-settings.js';
|
import { loadSettings } from '../load-settings.js';
|
||||||
import { printDiagnostic } from './print.js';
|
import { printDiagnostic } from './print.js';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { UserConfig } from 'vite';
|
import type { UserConfig } from 'vite';
|
||||||
import type { AstroUserConfig } from '../@types/astro';
|
import type { AstroUserConfig } from '../@types/astro.js';
|
||||||
import type { LogOptions } from '../core/logger/core';
|
import type { LogOptions } from '../core/logger/core.js';
|
||||||
|
|
||||||
export function defineConfig(config: AstroUserConfig) {
|
export function defineConfig(config: AstroUserConfig) {
|
||||||
return config;
|
return config;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type fsMod from 'node:fs';
|
import type fsMod from 'node:fs';
|
||||||
import type { Plugin, ViteDevServer } from 'vite';
|
import type { Plugin, ViteDevServer } from 'vite';
|
||||||
import type { AstroSettings } from '../@types/astro';
|
import type { AstroSettings } from '../@types/astro.js';
|
||||||
import { attachContentServerListeners } from '../content/server-listeners.js';
|
import { attachContentServerListeners } from '../content/server-listeners.js';
|
||||||
import type { LogOptions } from '../core/logger/core.js';
|
import type { LogOptions } from '../core/logger/core.js';
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import type { AstroSettings } from '../@types/astro.js';
|
||||||
import { moduleIsTopLevelPage, walkParentInfos } from '../core/build/graph.js';
|
import { moduleIsTopLevelPage, walkParentInfos } from '../core/build/graph.js';
|
||||||
import { getPageDataByViteID, type BuildInternals } from '../core/build/internal.js';
|
import { getPageDataByViteID, type BuildInternals } from '../core/build/internal.js';
|
||||||
import type { AstroBuildPlugin } from '../core/build/plugin.js';
|
import type { AstroBuildPlugin } from '../core/build/plugin.js';
|
||||||
import type { StaticBuildOptions } from '../core/build/types';
|
import type { StaticBuildOptions } from '../core/build/types.js';
|
||||||
import type { ModuleLoader } from '../core/module-loader/loader.js';
|
import type { ModuleLoader } from '../core/module-loader/loader.js';
|
||||||
import { createViteLoader } from '../core/module-loader/vite.js';
|
import { createViteLoader } from '../core/module-loader/vite.js';
|
||||||
import { joinPaths, prependForwardSlash } from '../core/path.js';
|
import { joinPaths, prependForwardSlash } from '../core/path.js';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { deserializeRouteData } from '../routing/manifest/serialization.js';
|
import { deserializeRouteData } from '../routing/manifest/serialization.js';
|
||||||
import type { RouteInfo, SerializedSSRManifest, SSRManifest } from './types';
|
import type { RouteInfo, SerializedSSRManifest, SSRManifest } from './types.js';
|
||||||
|
|
||||||
export function deserializeManifest(serializedManifest: SerializedSSRManifest): SSRManifest {
|
export function deserializeManifest(serializedManifest: SerializedSSRManifest): SSRManifest {
|
||||||
const routes: RouteInfo[] = [];
|
const routes: RouteInfo[] = [];
|
||||||
|
|
|
@ -5,14 +5,14 @@ import type {
|
||||||
RouteData,
|
RouteData,
|
||||||
SSRElement,
|
SSRElement,
|
||||||
SSRManifest,
|
SSRManifest,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import type { SinglePageBuiltModule } from '../build/types';
|
import type { SinglePageBuiltModule } from '../build/types.js';
|
||||||
import { attachToResponse, getSetCookiesFromResponse } from '../cookies/index.js';
|
import { attachToResponse, getSetCookiesFromResponse } from '../cookies/index.js';
|
||||||
import { consoleLogDestination } from '../logger/console.js';
|
import { consoleLogDestination } from '../logger/console.js';
|
||||||
import { error, type LogOptions } from '../logger/core.js';
|
import { error, type LogOptions } from '../logger/core.js';
|
||||||
import { prependForwardSlash, removeTrailingForwardSlash } from '../path.js';
|
import { prependForwardSlash, removeTrailingForwardSlash } from '../path.js';
|
||||||
import { RedirectSinglePageBuiltModule } from '../redirects/index.js';
|
import { RedirectSinglePageBuiltModule } from '../redirects/index.js';
|
||||||
import { isResponse } from '../render/core';
|
import { isResponse } from '../render/core.js';
|
||||||
import {
|
import {
|
||||||
createEnvironment,
|
createEnvironment,
|
||||||
createRenderContext,
|
createRenderContext,
|
||||||
|
@ -27,7 +27,7 @@ import {
|
||||||
createStylesheetElementSet,
|
createStylesheetElementSet,
|
||||||
} from '../render/ssr-element.js';
|
} from '../render/ssr-element.js';
|
||||||
import { matchRoute } from '../routing/match.js';
|
import { matchRoute } from '../routing/match.js';
|
||||||
import type { RouteInfo } from './types';
|
import type { RouteInfo } from './types.js';
|
||||||
export { deserializeManifest } from './common.js';
|
export { deserializeManifest } from './common.js';
|
||||||
|
|
||||||
const clientLocalsSymbol = Symbol.for('astro.locals');
|
const clientLocalsSymbol = Symbol.for('astro.locals');
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { RouteData } from '../../@types/astro';
|
import type { RouteData } from '../../@types/astro.js';
|
||||||
import type { SerializedSSRManifest, SSRManifest } from './types';
|
import type { SerializedSSRManifest, SSRManifest } from './types.js';
|
||||||
|
|
||||||
import * as fs from 'node:fs';
|
import * as fs from 'node:fs';
|
||||||
import { IncomingMessage } from 'node:http';
|
import { IncomingMessage } from 'node:http';
|
||||||
|
|
|
@ -5,8 +5,8 @@ import type {
|
||||||
SSRComponentMetadata,
|
SSRComponentMetadata,
|
||||||
SSRLoadedRenderer,
|
SSRLoadedRenderer,
|
||||||
SSRResult,
|
SSRResult,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import type { SinglePageBuiltModule } from '../build/types';
|
import type { SinglePageBuiltModule } from '../build/types.js';
|
||||||
|
|
||||||
export type ComponentPath = string;
|
export type ComponentPath = string;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import npath from 'node:path';
|
import npath from 'node:path';
|
||||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||||
import type { AstroConfig, RouteType } from '../../@types/astro';
|
import type { AstroConfig, RouteType } from '../../@types/astro.js';
|
||||||
import { appendForwardSlash } from '../../core/path.js';
|
import { appendForwardSlash } from '../../core/path.js';
|
||||||
|
|
||||||
const STATUS_CODE_PAGES = new Set(['/404', '/500']);
|
const STATUS_CODE_PAGES = new Set(['/404', '/500']);
|
||||||
|
|
|
@ -2,7 +2,7 @@ import type { GetModuleInfo } from 'rollup';
|
||||||
|
|
||||||
import crypto from 'node:crypto';
|
import crypto from 'node:crypto';
|
||||||
import npath from 'node:path';
|
import npath from 'node:path';
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import { viteID } from '../util.js';
|
import { viteID } from '../util.js';
|
||||||
import { getTopLevelPages } from './graph.js';
|
import { getTopLevelPages } from './graph.js';
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ import type {
|
||||||
SSRError,
|
SSRError,
|
||||||
SSRLoadedRenderer,
|
SSRLoadedRenderer,
|
||||||
SSRManifest,
|
SSRManifest,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import {
|
import {
|
||||||
generateImage as generateImageInternal,
|
generateImage as generateImageInternal,
|
||||||
getStaticImageList,
|
getStaticImageList,
|
||||||
|
@ -61,7 +61,7 @@ import type {
|
||||||
SinglePageBuiltModule,
|
SinglePageBuiltModule,
|
||||||
StaticBuildOptions,
|
StaticBuildOptions,
|
||||||
StylesheetAsset,
|
StylesheetAsset,
|
||||||
} from './types';
|
} from './types.js';
|
||||||
import { getTimeStat } from './util.js';
|
import { getTimeStat } from './util.js';
|
||||||
|
|
||||||
function createEntryURL(filePath: string, outFolder: URL) {
|
function createEntryURL(filePath: string, outFolder: URL) {
|
||||||
|
|
|
@ -3,7 +3,7 @@ import fs from 'node:fs';
|
||||||
import { performance } from 'node:perf_hooks';
|
import { performance } from 'node:perf_hooks';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import type yargs from 'yargs-parser';
|
import type yargs from 'yargs-parser';
|
||||||
import type { AstroConfig, AstroSettings, ManifestData, RuntimeMode } from '../../@types/astro';
|
import type { AstroConfig, AstroSettings, ManifestData, RuntimeMode } from '../../@types/astro.js';
|
||||||
import {
|
import {
|
||||||
runHookBuildDone,
|
runHookBuildDone,
|
||||||
runHookBuildStart,
|
runHookBuildStart,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { Rollup } from 'vite';
|
import type { Rollup } from 'vite';
|
||||||
import type { RouteData, SSRResult } from '../../@types/astro';
|
import type { RouteData, SSRResult } from '../../@types/astro.js';
|
||||||
import type { PageOptions } from '../../vite-plugin-astro/types';
|
import type { PageOptions } from '../../vite-plugin-astro/types.js';
|
||||||
import { prependForwardSlash, removeFileExtension } from '../path.js';
|
import { prependForwardSlash, removeFileExtension } from '../path.js';
|
||||||
import { viteID } from '../util.js';
|
import { viteID } from '../util.js';
|
||||||
import {
|
import {
|
||||||
|
@ -9,7 +9,7 @@ import {
|
||||||
} from './plugins/plugin-pages.js';
|
} from './plugins/plugin-pages.js';
|
||||||
import { RESOLVED_SPLIT_MODULE_ID } from './plugins/plugin-ssr.js';
|
import { RESOLVED_SPLIT_MODULE_ID } from './plugins/plugin-ssr.js';
|
||||||
import { ASTRO_PAGE_EXTENSION_POST_PATTERN } from './plugins/util.js';
|
import { ASTRO_PAGE_EXTENSION_POST_PATTERN } from './plugins/util.js';
|
||||||
import type { PageBuildData, StylesheetAsset, ViteID } from './types';
|
import type { PageBuildData, StylesheetAsset, ViteID } from './types.js';
|
||||||
|
|
||||||
export interface BuildInternals {
|
export interface BuildInternals {
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import type { AstroSettings, ManifestData } from '../../@types/astro';
|
import type { AstroSettings, ManifestData } from '../../@types/astro.js';
|
||||||
import type { LogOptions } from '../logger/core';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import { info } from '../logger/core.js';
|
import { info } from '../logger/core.js';
|
||||||
import type { AllPagesData } from './types';
|
import type { AllPagesData } from './types.js';
|
||||||
|
|
||||||
import * as colors from 'kleur/colors';
|
import * as colors from 'kleur/colors';
|
||||||
import { debug } from '../logger/core.js';
|
import { debug } from '../logger/core.js';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import type { BuildInternals } from './internal';
|
import type { BuildInternals } from './internal.js';
|
||||||
import type { StaticBuildOptions, ViteBuildReturn } from './types';
|
import type { StaticBuildOptions, ViteBuildReturn } from './types.js';
|
||||||
|
|
||||||
type RollupOutputArray = Extract<ViteBuildReturn, Array<any>>;
|
type RollupOutputArray = Extract<ViteBuildReturn, Array<any>>;
|
||||||
type OutputChunkorAsset = RollupOutputArray[number]['output'][number];
|
type OutputChunkorAsset = RollupOutputArray[number]['output'][number];
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { astroConfigBuildPlugin } from '../../../content/vite-plugin-content-assets.js';
|
import { astroConfigBuildPlugin } from '../../../content/vite-plugin-content-assets.js';
|
||||||
import { astroHeadBuildPlugin } from '../../../vite-plugin-head/index.js';
|
import { astroHeadBuildPlugin } from '../../../vite-plugin-head/index.js';
|
||||||
import type { AstroBuildPluginContainer } from '../plugin';
|
import type { AstroBuildPluginContainer } from '../plugin.js';
|
||||||
import { pluginAliasResolve } from './plugin-alias-resolve.js';
|
import { pluginAliasResolve } from './plugin-alias-resolve.js';
|
||||||
import { pluginAnalyzer } from './plugin-analyzer.js';
|
import { pluginAnalyzer } from './plugin-analyzer.js';
|
||||||
import { pluginComponentEntry } from './plugin-component-entry.js';
|
import { pluginComponentEntry } from './plugin-component-entry.js';
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
import type { Node as ESTreeNode } from 'estree-walker';
|
||||||
import type { ModuleInfo, PluginContext } from 'rollup';
|
import type { ModuleInfo, PluginContext } from 'rollup';
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import type { PluginMetadata as AstroPluginMetadata } from '../../../vite-plugin-astro/types';
|
import type { PluginMetadata as AstroPluginMetadata } from '../../../vite-plugin-astro/types.js';
|
||||||
import type { BuildInternals } from '../internal.js';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin.js';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
|
|
||||||
|
@ -36,7 +37,7 @@ async function doesParentImportChild(
|
||||||
|
|
||||||
const imports: Array<ImportDeclaration> = [];
|
const imports: Array<ImportDeclaration> = [];
|
||||||
const exports: Array<ExportNamedDeclaration | ExportDefaultDeclaration> = [];
|
const exports: Array<ExportNamedDeclaration | ExportDefaultDeclaration> = [];
|
||||||
walk(parentInfo.ast, {
|
walk(parentInfo.ast as ESTreeNode, {
|
||||||
enter(node) {
|
enter(node) {
|
||||||
if (node.type === 'ImportDeclaration') {
|
if (node.type === 'ImportDeclaration') {
|
||||||
imports.push(node as ImportDeclaration);
|
imports.push(node as ImportDeclaration);
|
||||||
|
|
|
@ -3,9 +3,9 @@ import * as npath from 'node:path';
|
||||||
import type { GetModuleInfo } from 'rollup';
|
import type { GetModuleInfo } from 'rollup';
|
||||||
import { type ResolvedConfig, type Plugin as VitePlugin } from 'vite';
|
import { type ResolvedConfig, type Plugin as VitePlugin } from 'vite';
|
||||||
import { isBuildableCSSRequest } from '../../../vite-plugin-astro-server/util.js';
|
import { isBuildableCSSRequest } from '../../../vite-plugin-astro-server/util.js';
|
||||||
import type { BuildInternals } from '../internal';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { PageBuildData, StaticBuildOptions, StylesheetAsset } from '../types';
|
import type { OutputChunk, PageBuildData, StaticBuildOptions, StylesheetAsset } from '../types.js';
|
||||||
|
|
||||||
import { PROPAGATED_ASSET_FLAG } from '../../../content/consts.js';
|
import { PROPAGATED_ASSET_FLAG } from '../../../content/consts.js';
|
||||||
import * as assetName from '../css-asset-name.js';
|
import * as assetName from '../css-asset-name.js';
|
||||||
|
@ -110,7 +110,7 @@ function rollupPluginAstroBuildCSS(options: PluginOptions): VitePlugin[] {
|
||||||
for (const [, chunk] of Object.entries(bundle)) {
|
for (const [, chunk] of Object.entries(bundle)) {
|
||||||
if (chunk.type !== 'chunk') continue;
|
if (chunk.type !== 'chunk') continue;
|
||||||
if ('viteMetadata' in chunk === false) continue;
|
if ('viteMetadata' in chunk === false) continue;
|
||||||
const meta = chunk.viteMetadata as ViteMetadata;
|
const meta = (chunk as OutputChunk & { viteMetadata: ViteMetadata }).viteMetadata;
|
||||||
|
|
||||||
// Skip if the chunk has no CSS, we want to handle CSS chunks only
|
// Skip if the chunk has no CSS, we want to handle CSS chunks only
|
||||||
if (meta.importedCss.size < 1) continue;
|
if (meta.importedCss.size < 1) continue;
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import type { AstroSettings } from '../../../@types/astro';
|
import type { AstroSettings } from '../../../@types/astro.js';
|
||||||
import { viteID } from '../../util.js';
|
import { viteID } from '../../util.js';
|
||||||
import type { BuildInternals } from '../internal.js';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import { getPageDataByViteID } from '../internal.js';
|
import { getPageDataByViteID } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { OutputChunk, StaticBuildOptions } from '../types';
|
import type { OutputChunk, StaticBuildOptions } from '../types.js';
|
||||||
|
|
||||||
function virtualHoistedEntry(id: string) {
|
function virtualHoistedEntry(id: string) {
|
||||||
return id.startsWith('/astro/hoisted.js?q=');
|
return id.startsWith('/astro/hoisted.js?q=');
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { UserConfig, Plugin as VitePlugin } from 'vite';
|
import type { UserConfig, Plugin as VitePlugin } from 'vite';
|
||||||
import type { BuildInternals } from '../internal.js';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import { normalizeEntryId } from './plugin-component-entry.js';
|
import { normalizeEntryId } from './plugin-component-entry.js';
|
||||||
|
|
||||||
export function vitePluginInternals(input: Set<string>, internals: BuildInternals): VitePlugin {
|
export function vitePluginInternals(input: Set<string>, internals: BuildInternals): VitePlugin {
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import { MIDDLEWARE_PATH_SEGMENT_NAME } from '../../constants.js';
|
import { MIDDLEWARE_PATH_SEGMENT_NAME } from '../../constants.js';
|
||||||
import { addRollupInput } from '../add-rollup-input.js';
|
import { addRollupInput } from '../add-rollup-input.js';
|
||||||
import type { BuildInternals } from '../internal';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { StaticBuildOptions } from '../types';
|
import type { StaticBuildOptions } from '../types.js';
|
||||||
|
|
||||||
export const MIDDLEWARE_MODULE_ID = '@astro-middleware';
|
export const MIDDLEWARE_MODULE_ID = '@astro-middleware';
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,8 @@ import type { Plugin as VitePlugin } from 'vite';
|
||||||
import { routeIsRedirect } from '../../redirects/index.js';
|
import { routeIsRedirect } from '../../redirects/index.js';
|
||||||
import { addRollupInput } from '../add-rollup-input.js';
|
import { addRollupInput } from '../add-rollup-input.js';
|
||||||
import { type BuildInternals } from '../internal.js';
|
import { type BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { StaticBuildOptions } from '../types';
|
import type { StaticBuildOptions } from '../types.js';
|
||||||
import { MIDDLEWARE_MODULE_ID } from './plugin-middleware.js';
|
import { MIDDLEWARE_MODULE_ID } from './plugin-middleware.js';
|
||||||
import { RENDERERS_MODULE_ID } from './plugin-renderers.js';
|
import { RENDERERS_MODULE_ID } from './plugin-renderers.js';
|
||||||
import { ASTRO_PAGE_EXTENSION_POST_PATTERN, getPathFromVirtualModulePageName } from './util.js';
|
import { ASTRO_PAGE_EXTENSION_POST_PATTERN, getPathFromVirtualModulePageName } from './util.js';
|
||||||
|
|
|
@ -3,7 +3,7 @@ import type { Plugin as VitePlugin } from 'vite';
|
||||||
import { getPrerenderMetadata } from '../../../prerender/metadata.js';
|
import { getPrerenderMetadata } from '../../../prerender/metadata.js';
|
||||||
import type { BuildInternals } from '../internal.js';
|
import type { BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin.js';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { StaticBuildOptions } from '../types';
|
import type { StaticBuildOptions } from '../types.js';
|
||||||
import { extendManualChunks } from './util.js';
|
import { extendManualChunks } from './util.js';
|
||||||
|
|
||||||
function vitePluginPrerender(opts: StaticBuildOptions, internals: BuildInternals): VitePlugin {
|
function vitePluginPrerender(opts: StaticBuildOptions, internals: BuildInternals): VitePlugin {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import { addRollupInput } from '../add-rollup-input.js';
|
import { addRollupInput } from '../add-rollup-input.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { StaticBuildOptions } from '../types';
|
import type { StaticBuildOptions } from '../types.js';
|
||||||
|
|
||||||
export const RENDERERS_MODULE_ID = '@astro-renderers';
|
export const RENDERERS_MODULE_ID = '@astro-renderers';
|
||||||
export const RESOLVED_RENDERERS_MODULE_ID = `\0${RENDERERS_MODULE_ID}`;
|
export const RESOLVED_RENDERERS_MODULE_ID = `\0${RENDERERS_MODULE_ID}`;
|
||||||
|
|
|
@ -2,19 +2,19 @@ import glob from 'fast-glob';
|
||||||
import { join } from 'node:path';
|
import { join } from 'node:path';
|
||||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||||
import type { Plugin as VitePlugin } from 'vite';
|
import type { Plugin as VitePlugin } from 'vite';
|
||||||
import type { AstroAdapter, AstroConfig } from '../../../@types/astro';
|
import type { AstroAdapter, AstroConfig } from '../../../@types/astro.js';
|
||||||
import { runHookBuildSsr } from '../../../integrations/index.js';
|
import { runHookBuildSsr } from '../../../integrations/index.js';
|
||||||
import { isServerLikeOutput } from '../../../prerender/utils.js';
|
import { isServerLikeOutput } from '../../../prerender/utils.js';
|
||||||
import { BEFORE_HYDRATION_SCRIPT_ID, PAGE_SCRIPT_ID } from '../../../vite-plugin-scripts/index.js';
|
import { BEFORE_HYDRATION_SCRIPT_ID, PAGE_SCRIPT_ID } from '../../../vite-plugin-scripts/index.js';
|
||||||
import type { SerializedRouteInfo, SerializedSSRManifest } from '../../app/types';
|
import type { SerializedRouteInfo, SerializedSSRManifest } from '../../app/types.js';
|
||||||
import { joinPaths, prependForwardSlash } from '../../path.js';
|
import { joinPaths, prependForwardSlash } from '../../path.js';
|
||||||
import { routeIsRedirect } from '../../redirects/index.js';
|
import { routeIsRedirect } from '../../redirects/index.js';
|
||||||
import { serializeRouteData } from '../../routing/index.js';
|
import { serializeRouteData } from '../../routing/index.js';
|
||||||
import { addRollupInput } from '../add-rollup-input.js';
|
import { addRollupInput } from '../add-rollup-input.js';
|
||||||
import { getOutFile, getOutFolder } from '../common.js';
|
import { getOutFile, getOutFolder } from '../common.js';
|
||||||
import { cssOrder, mergeInlineCss, type BuildInternals } from '../internal.js';
|
import { cssOrder, mergeInlineCss, type BuildInternals } from '../internal.js';
|
||||||
import type { AstroBuildPlugin } from '../plugin';
|
import type { AstroBuildPlugin } from '../plugin.js';
|
||||||
import type { OutputChunk, StaticBuildOptions } from '../types';
|
import type { OutputChunk, StaticBuildOptions } from '../types.js';
|
||||||
import { ASTRO_PAGE_MODULE_ID } from './plugin-pages.js';
|
import { ASTRO_PAGE_MODULE_ID } from './plugin-pages.js';
|
||||||
import { RENDERERS_MODULE_ID } from './plugin-renderers.js';
|
import { RENDERERS_MODULE_ID } from './plugin-renderers.js';
|
||||||
import { getPathFromVirtualModulePageName, getVirtualModulePageNameFromPath } from './util.js';
|
import { getPathFromVirtualModulePageName, getVirtualModulePageNameFromPath } from './util.js';
|
||||||
|
|
|
@ -6,7 +6,7 @@ import fs from 'node:fs';
|
||||||
import path, { extname } from 'node:path';
|
import path, { extname } from 'node:path';
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
import * as vite from 'vite';
|
import * as vite from 'vite';
|
||||||
import type { RouteData } from '../../@types/astro';
|
import type { RouteData } from '../../@types/astro.js';
|
||||||
import {
|
import {
|
||||||
createBuildInternals,
|
createBuildInternals,
|
||||||
eachPageData,
|
eachPageData,
|
||||||
|
@ -30,7 +30,7 @@ import { ASTRO_PAGE_RESOLVED_MODULE_ID } from './plugins/plugin-pages.js';
|
||||||
import { RESOLVED_RENDERERS_MODULE_ID } from './plugins/plugin-renderers.js';
|
import { RESOLVED_RENDERERS_MODULE_ID } from './plugins/plugin-renderers.js';
|
||||||
import { RESOLVED_SPLIT_MODULE_ID, SSR_VIRTUAL_MODULE_ID } from './plugins/plugin-ssr.js';
|
import { RESOLVED_SPLIT_MODULE_ID, SSR_VIRTUAL_MODULE_ID } from './plugins/plugin-ssr.js';
|
||||||
import { ASTRO_PAGE_EXTENSION_POST_PATTERN } from './plugins/util.js';
|
import { ASTRO_PAGE_EXTENSION_POST_PATTERN } from './plugins/util.js';
|
||||||
import type { PageBuildData, StaticBuildOptions } from './types';
|
import type { PageBuildData, StaticBuildOptions } from './types.js';
|
||||||
import { getTimeStat } from './util.js';
|
import { getTimeStat } from './util.js';
|
||||||
|
|
||||||
export async function viteBuild(opts: StaticBuildOptions) {
|
export async function viteBuild(opts: StaticBuildOptions) {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import type { InlineConfig, default as vite } from 'vite';
|
import type * as vite from 'vite';
|
||||||
|
import type { InlineConfig } from 'vite';
|
||||||
import type {
|
import type {
|
||||||
AstroConfig,
|
AstroConfig,
|
||||||
AstroSettings,
|
AstroSettings,
|
||||||
|
@ -8,9 +9,9 @@ import type {
|
||||||
RouteData,
|
RouteData,
|
||||||
RuntimeMode,
|
RuntimeMode,
|
||||||
SSRLoadedRenderer,
|
SSRLoadedRenderer,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import type { LogOptions } from '../logger/core';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import type { RouteCache } from '../render/route-cache';
|
import type { RouteCache } from '../render/route-cache.js';
|
||||||
|
|
||||||
export type ComponentPath = string;
|
export type ComponentPath = string;
|
||||||
export type ViteID = string;
|
export type ViteID = string;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { AstroConfig } from '../../@types/astro';
|
import type { AstroConfig } from '../../@types/astro.js';
|
||||||
import { compile, type CompileProps, type CompileResult } from './compile.js';
|
import { compile, type CompileProps, type CompileResult } from './compile.js';
|
||||||
|
|
||||||
type CompilationCache = Map<string, CompileResult>;
|
type CompilationCache = Map<string, CompileResult>;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { TransformResult } from '@astrojs/compiler';
|
import type { TransformResult } from '@astrojs/compiler';
|
||||||
import type { ResolvedConfig } from 'vite';
|
import type { ResolvedConfig } from 'vite';
|
||||||
import type { AstroConfig } from '../../@types/astro';
|
import type { AstroConfig } from '../../@types/astro.js';
|
||||||
|
|
||||||
import { transform } from '@astrojs/compiler';
|
import { transform } from '@astrojs/compiler';
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
|
|
|
@ -4,5 +4,5 @@ export {
|
||||||
invalidateCompilation,
|
invalidateCompilation,
|
||||||
isCached,
|
isCached,
|
||||||
} from './cache.js';
|
} from './cache.js';
|
||||||
export type { CompileProps, CompileResult } from './compile';
|
export type { CompileProps, CompileResult } from './compile.js';
|
||||||
export type { TransformStyle } from './types';
|
export type { TransformStyle } from './types.js';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { Arguments as Flags } from 'yargs-parser';
|
import type { Arguments as Flags } from 'yargs-parser';
|
||||||
import type { AstroConfig, AstroUserConfig, CLIFlags } from '../../@types/astro';
|
import type { AstroConfig, AstroUserConfig, CLIFlags } from '../../@types/astro.js';
|
||||||
|
|
||||||
import * as colors from 'kleur/colors';
|
import * as colors from 'kleur/colors';
|
||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
|
|
|
@ -7,6 +7,6 @@ export {
|
||||||
validateConfig,
|
validateConfig,
|
||||||
} from './config.js';
|
} from './config.js';
|
||||||
export { mergeConfig } from './merge.js';
|
export { mergeConfig } from './merge.js';
|
||||||
export type { AstroConfigSchema } from './schema';
|
export type { AstroConfigSchema } from './schema.js';
|
||||||
export { createDefaultDevSettings, createSettings } from './settings.js';
|
export { createDefaultDevSettings, createSettings } from './settings.js';
|
||||||
export { loadTSConfig, updateTSConfigForFramework } from './tsconfig.js';
|
export { loadTSConfig, updateTSConfigForFramework } from './tsconfig.js';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import type { RehypePlugin, RemarkPlugin, RemarkRehype } from '@astrojs/markdown-remark';
|
import type { RehypePlugin, RemarkPlugin, RemarkRehype } from '@astrojs/markdown-remark';
|
||||||
import { markdownConfigDefaults } from '@astrojs/markdown-remark';
|
import { markdownConfigDefaults } from '@astrojs/markdown-remark';
|
||||||
import type { ILanguageRegistration, IThemeRegistration, Theme } from 'shiki';
|
import type { ILanguageRegistration, IThemeRegistration, Theme } from 'shiki';
|
||||||
import type { AstroUserConfig, ViteUserConfig } from '../../@types/astro';
|
import type { AstroUserConfig, ViteUserConfig } from '../../@types/astro.js';
|
||||||
|
|
||||||
import type { OutgoingHttpHeaders } from 'node:http';
|
import type { OutgoingHttpHeaders } from 'node:http';
|
||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import yaml from 'js-yaml';
|
import yaml from 'js-yaml';
|
||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||||
import type { AstroConfig, AstroSettings, AstroUserConfig } from '../../@types/astro';
|
import type { AstroConfig, AstroSettings, AstroUserConfig } from '../../@types/astro.js';
|
||||||
import { getContentPaths } from '../../content/index.js';
|
import { getContentPaths } from '../../content/index.js';
|
||||||
import jsxRenderer from '../../jsx/renderer.js';
|
import jsxRenderer from '../../jsx/renderer.js';
|
||||||
import { isServerLikeOutput } from '../../prerender/utils.js';
|
import { isServerLikeOutput } from '../../prerender/utils.js';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { AstroCookies } from './cookies';
|
import type { AstroCookies } from './cookies.js';
|
||||||
|
|
||||||
const astroCookiesSymbol = Symbol.for('astro.cookies');
|
const astroCookiesSymbol = Symbol.for('astro.cookies');
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { AstroSettings } from '../@types/astro';
|
import type { AstroSettings } from '../@types/astro.js';
|
||||||
import type { LogOptions } from './logger/core';
|
import type { LogOptions } from './logger/core.js';
|
||||||
|
|
||||||
import nodeFs from 'node:fs';
|
import nodeFs from 'node:fs';
|
||||||
import { fileURLToPath } from 'node:url';
|
import { fileURLToPath } from 'node:url';
|
||||||
|
@ -168,7 +168,7 @@ export async function createVite(
|
||||||
{
|
{
|
||||||
// Typings are imported from 'astro' (e.g. import { Type } from 'astro')
|
// Typings are imported from 'astro' (e.g. import { Type } from 'astro')
|
||||||
find: /^astro$/,
|
find: /^astro$/,
|
||||||
replacement: fileURLToPath(new URL('../@types/astro', import.meta.url)),
|
replacement: fileURLToPath(new URL('../@types/astro.js', import.meta.url)),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
conditions: ['astro'],
|
conditions: ['astro'],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type * as http from 'node:http';
|
import type * as http from 'node:http';
|
||||||
import type { AddressInfo } from 'node:net';
|
import type { AddressInfo } from 'node:net';
|
||||||
import type { AstroSettings, AstroUserConfig } from '../../@types/astro';
|
import type { AstroSettings, AstroUserConfig } from '../../@types/astro.js';
|
||||||
|
|
||||||
import nodeFs from 'node:fs';
|
import nodeFs from 'node:fs';
|
||||||
import * as vite from 'vite';
|
import * as vite from 'vite';
|
||||||
|
|
|
@ -4,7 +4,7 @@ import type { AddressInfo } from 'node:net';
|
||||||
import { performance } from 'perf_hooks';
|
import { performance } from 'perf_hooks';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import type yargs from 'yargs-parser';
|
import type yargs from 'yargs-parser';
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import { attachContentServerListeners } from '../../content/index.js';
|
import { attachContentServerListeners } from '../../content/index.js';
|
||||||
import { telemetry } from '../../events/index.js';
|
import { telemetry } from '../../events/index.js';
|
||||||
import { info, warn, type LogOptions } from '../logger/core.js';
|
import { info, warn, type LogOptions } from '../logger/core.js';
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import * as vite from 'vite';
|
import * as vite from 'vite';
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import { createSettings, openConfig } from '../config/index.js';
|
import { createSettings, openConfig } from '../config/index.js';
|
||||||
import { createSafeError } from '../errors/index.js';
|
import { createSafeError } from '../errors/index.js';
|
||||||
import { info } from '../logger/core.js';
|
import { info } from '../logger/core.js';
|
||||||
import type { Container, CreateContainerParams } from './container';
|
import type { Container, CreateContainerParams } from './container.js';
|
||||||
import { createContainer, isStarted, startContainer } from './container.js';
|
import { createContainer, isStarted, startContainer } from './container.js';
|
||||||
|
|
||||||
async function createRestartedContainer(
|
async function createRestartedContainer(
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { EndpointHandler } from '../../../@types/astro';
|
import type { EndpointHandler } from '../../../@types/astro.js';
|
||||||
import { createRenderContext, type SSROptions } from '../../render/index.js';
|
import { createRenderContext, type SSROptions } from '../../render/index.js';
|
||||||
import { callEndpoint } from '../index.js';
|
import { callEndpoint } from '../index.js';
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@ import type {
|
||||||
MiddlewareEndpointHandler,
|
MiddlewareEndpointHandler,
|
||||||
MiddlewareHandler,
|
MiddlewareHandler,
|
||||||
Params,
|
Params,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import type { Environment, RenderContext } from '../render/index';
|
import type { Environment, RenderContext } from '../render/index.js';
|
||||||
|
|
||||||
import { renderEndpoint } from '../../runtime/server/index.js';
|
import { renderEndpoint } from '../../runtime/server/index.js';
|
||||||
import { ASTRO_VERSION } from '../constants.js';
|
import { ASTRO_VERSION } from '../constants.js';
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
export type { ErrorLocation, ErrorWithMetadata } from './errors';
|
|
||||||
export { AstroErrorData } from './errors-data.js';
|
export { AstroErrorData } from './errors-data.js';
|
||||||
export {
|
export {
|
||||||
AggregateError,
|
AggregateError,
|
||||||
|
@ -8,5 +7,6 @@ export {
|
||||||
MarkdownError,
|
MarkdownError,
|
||||||
isAstroError,
|
isAstroError,
|
||||||
} from './errors.js';
|
} from './errors.js';
|
||||||
|
export type { ErrorLocation, ErrorWithMetadata } from './errors.js';
|
||||||
export { codeFrame } from './printer.js';
|
export { codeFrame } from './printer.js';
|
||||||
export { createSafeError, positionAt } from './utils.js';
|
export { createSafeError, positionAt } from './utils.js';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { AstroErrorPayload } from './dev/vite';
|
import type { AstroErrorPayload } from './dev/vite.js';
|
||||||
|
|
||||||
const style = /* css */ `
|
const style = /* css */ `
|
||||||
* {
|
* {
|
||||||
|
|
|
@ -4,10 +4,10 @@ import type {
|
||||||
EndpointOutput,
|
EndpointOutput,
|
||||||
MiddlewareHandler,
|
MiddlewareHandler,
|
||||||
MiddlewareNext,
|
MiddlewareNext,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import { AstroError, AstroErrorData } from '../errors/index.js';
|
import { AstroError, AstroErrorData } from '../errors/index.js';
|
||||||
import { warn } from '../logger/core.js';
|
import { warn } from '../logger/core.js';
|
||||||
import type { Environment } from '../render';
|
import type { Environment } from '../render/index.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility function that is in charge of calling the middleware.
|
* Utility function that is in charge of calling the middleware.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { MiddlewareResponseHandler, Params } from '../../@types/astro';
|
import type { MiddlewareResponseHandler, Params } from '../../@types/astro.js';
|
||||||
import { createAPIContext } from '../endpoint/index.js';
|
import { createAPIContext } from '../endpoint/index.js';
|
||||||
import { sequence } from './sequence.js';
|
import { sequence } from './sequence.js';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import { MIDDLEWARE_PATH_SEGMENT_NAME } from '../constants.js';
|
import { MIDDLEWARE_PATH_SEGMENT_NAME } from '../constants.js';
|
||||||
import type { ModuleLoader } from '../module-loader';
|
import type { ModuleLoader } from '../module-loader/index.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* It accepts a module loader and the astro settings, and it attempts to load the middlewares defined in the configuration.
|
* It accepts a module loader and the astro settings, and it attempts to load the middlewares defined in the configuration.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { APIContext, MiddlewareResponseHandler } from '../../@types/astro';
|
import type { APIContext, MiddlewareResponseHandler } from '../../@types/astro.js';
|
||||||
import { defineMiddleware } from './index.js';
|
import { defineMiddleware } from './index.js';
|
||||||
|
|
||||||
// From SvelteKit: https://github.com/sveltejs/kit/blob/master/packages/kit/src/exports/hooks/sequence.js
|
// From SvelteKit: https://github.com/sveltejs/kit/blob/master/packages/kit/src/exports/hooks/sequence.js
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { EventEmitter } from 'node:events';
|
import { EventEmitter } from 'node:events';
|
||||||
import type * as fs from 'node:fs';
|
import type * as fs from 'node:fs';
|
||||||
import type { TypedEventEmitter } from '../../@types/typed-emitter';
|
import type { TypedEventEmitter } from '../../@types/typed-emitter.js';
|
||||||
|
|
||||||
// This is a generic interface for a module loader. In the astro cli this is
|
// This is a generic interface for a module loader. In the astro cli this is
|
||||||
// fulfilled by Vite, see vite.ts
|
// fulfilled by Vite, see vite.ts
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { EventEmitter } from 'node:events';
|
import { EventEmitter } from 'node:events';
|
||||||
import type * as vite from 'vite';
|
import type * as vite from 'vite';
|
||||||
import type { ModuleLoader, ModuleLoaderEventEmitter } from './loader';
|
import type { ModuleLoader, ModuleLoaderEventEmitter } from './loader.js';
|
||||||
|
|
||||||
export function createViteLoader(viteServer: vite.ViteDevServer): ModuleLoader {
|
export function createViteLoader(viteServer: vite.ViteDevServer): ModuleLoader {
|
||||||
const events = new EventEmitter() as ModuleLoaderEventEmitter;
|
const events = new EventEmitter() as ModuleLoaderEventEmitter;
|
||||||
|
|
|
@ -2,9 +2,9 @@ import { cyan } from 'kleur/colors';
|
||||||
import { createRequire } from 'module';
|
import { createRequire } from 'module';
|
||||||
import { pathToFileURL } from 'node:url';
|
import { pathToFileURL } from 'node:url';
|
||||||
import type { Arguments } from 'yargs-parser';
|
import type { Arguments } from 'yargs-parser';
|
||||||
import type { AstroSettings, PreviewModule, PreviewServer } from '../../@types/astro';
|
import type { AstroSettings, PreviewModule, PreviewServer } from '../../@types/astro.js';
|
||||||
import { runHookConfigDone, runHookConfigSetup } from '../../integrations/index.js';
|
import { runHookConfigDone, runHookConfigSetup } from '../../integrations/index.js';
|
||||||
import type { LogOptions } from '../logger/core';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import { printHelp } from '../messages.js';
|
import { printHelp } from '../messages.js';
|
||||||
import createStaticPreviewServer from './static-preview-server.js';
|
import createStaticPreviewServer from './static-preview-server.js';
|
||||||
import { getResolvedHostForHttpServer } from './util.js';
|
import { getResolvedHostForHttpServer } from './util.js';
|
||||||
|
|
|
@ -3,8 +3,8 @@ import { fileURLToPath } from 'node:url';
|
||||||
import { performance } from 'perf_hooks';
|
import { performance } from 'perf_hooks';
|
||||||
import enableDestroy from 'server-destroy';
|
import enableDestroy from 'server-destroy';
|
||||||
import { preview, type PreviewServer as VitePreviewServer } from 'vite';
|
import { preview, type PreviewServer as VitePreviewServer } from 'vite';
|
||||||
import type { AstroSettings } from '../../@types/astro';
|
import type { AstroSettings } from '../../@types/astro.js';
|
||||||
import type { LogOptions } from '../logger/core';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import { error, info } from '../logger/core.js';
|
import { error, info } from '../logger/core.js';
|
||||||
import * as msg from '../messages.js';
|
import * as msg from '../messages.js';
|
||||||
import { getResolvedHostForHttpServer } from './util.js';
|
import { getResolvedHostForHttpServer } from './util.js';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { ComponentInstance } from '../../@types/astro';
|
import type { ComponentInstance } from '../../@types/astro.js';
|
||||||
import type { SinglePageBuiltModule } from '../build/types';
|
import type { SinglePageBuiltModule } from '../build/types.js';
|
||||||
|
|
||||||
// A stub of a component instance for a given route
|
// A stub of a component instance for a given route
|
||||||
export const RedirectComponentInstance: ComponentInstance = {
|
export const RedirectComponentInstance: ComponentInstance = {
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
import type { Params, RedirectRouteData, RouteData, ValidRedirectStatus } from '../../@types/astro';
|
import type {
|
||||||
|
Params,
|
||||||
|
RedirectRouteData,
|
||||||
|
RouteData,
|
||||||
|
ValidRedirectStatus,
|
||||||
|
} from '../../@types/astro.js';
|
||||||
|
|
||||||
export function routeIsRedirect(route: RouteData | undefined): route is RedirectRouteData {
|
export function routeIsRedirect(route: RouteData | undefined): route is RedirectRouteData {
|
||||||
return route?.type === 'redirect';
|
return route?.type === 'redirect';
|
||||||
|
|
|
@ -5,9 +5,9 @@ import type {
|
||||||
RouteData,
|
RouteData,
|
||||||
SSRElement,
|
SSRElement,
|
||||||
SSRResult,
|
SSRResult,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import { AstroError, AstroErrorData } from '../errors/index.js';
|
import { AstroError, AstroErrorData } from '../errors/index.js';
|
||||||
import type { Environment } from './environment';
|
import type { Environment } from './environment.js';
|
||||||
import { getParamsAndProps } from './params-and-props.js';
|
import { getParamsAndProps } from './params-and-props.js';
|
||||||
|
|
||||||
const clientLocalsSymbol = Symbol.for('astro.locals');
|
const clientLocalsSymbol = Symbol.for('astro.locals');
|
||||||
|
|
|
@ -5,7 +5,7 @@ import type {
|
||||||
MiddlewareHandler,
|
MiddlewareHandler,
|
||||||
MiddlewareResponseHandler,
|
MiddlewareResponseHandler,
|
||||||
RouteType,
|
RouteType,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import { renderPage as runtimeRenderPage } from '../../runtime/server/index.js';
|
import { renderPage as runtimeRenderPage } from '../../runtime/server/index.js';
|
||||||
import { attachToResponse } from '../cookies/index.js';
|
import { attachToResponse } from '../cookies/index.js';
|
||||||
import { callEndpoint, createAPIContext, type EndpointCallResult } from '../endpoint/index.js';
|
import { callEndpoint, createAPIContext, type EndpointCallResult } from '../endpoint/index.js';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import type { MarkdownRenderingOptions } from '@astrojs/markdown-remark';
|
import type { MarkdownRenderingOptions } from '@astrojs/markdown-remark';
|
||||||
import type { AstroSettings, RuntimeMode, SSRLoadedRenderer } from '../../@types/astro';
|
import type { AstroSettings, RuntimeMode, SSRLoadedRenderer } from '../../@types/astro.js';
|
||||||
import type { LogOptions } from '../logger/core.js';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import type { ModuleLoader } from '../module-loader';
|
import type { ModuleLoader } from '../module-loader/index.js';
|
||||||
import type { RouteCache } from './route-cache.js';
|
import type { RouteCache } from './route-cache.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
import type { AstroMiddlewareInstance, ComponentInstance, RouteData } from '../../@types/astro';
|
import type { AstroMiddlewareInstance, ComponentInstance, RouteData } from '../../@types/astro.js';
|
||||||
import type { DevelopmentEnvironment } from './environment';
|
import type { DevelopmentEnvironment } from './environment.js';
|
||||||
|
|
||||||
export { createRenderContext } from './context.js';
|
export { createRenderContext } from './context.js';
|
||||||
export type { RenderContext } from './context.js';
|
export type { RenderContext } from './context.js';
|
||||||
export { tryRenderRoute } from './core.js';
|
export { tryRenderRoute } from './core.js';
|
||||||
export type { Environment } from './environment';
|
|
||||||
export { createEnvironment } from './environment.js';
|
export { createEnvironment } from './environment.js';
|
||||||
|
export type { Environment } from './environment.js';
|
||||||
export { getParamsAndProps } from './params-and-props.js';
|
export { getParamsAndProps } from './params-and-props.js';
|
||||||
export { loadRenderer, loadRenderers } from './renderer.js';
|
export { loadRenderer, loadRenderers } from './renderer.js';
|
||||||
export type { DevelopmentEnvironment };
|
export type { DevelopmentEnvironment };
|
||||||
|
|
|
@ -5,7 +5,7 @@ import type {
|
||||||
Params,
|
Params,
|
||||||
Props,
|
Props,
|
||||||
RouteData,
|
RouteData,
|
||||||
} from '../../@types/astro';
|
} from '../../@types/astro.js';
|
||||||
import { AstroError, AstroErrorData } from '../errors/index.js';
|
import { AstroError, AstroErrorData } from '../errors/index.js';
|
||||||
|
|
||||||
export function generatePaginateFunction(routeMatch: RouteData): PaginateFunction {
|
export function generatePaginateFunction(routeMatch: RouteData): PaginateFunction {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { ComponentInstance, Params, Props, RouteData } from '../../@types/astro';
|
import type { ComponentInstance, Params, Props, RouteData } from '../../@types/astro.js';
|
||||||
import { AstroError, AstroErrorData } from '../errors/index.js';
|
import { AstroError, AstroErrorData } from '../errors/index.js';
|
||||||
import type { LogOptions } from '../logger/core.js';
|
import type { LogOptions } from '../logger/core.js';
|
||||||
import { getParams } from '../routing/params.js';
|
import { getParams } from '../routing/params.js';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import type { AstroRenderer, AstroSettings, SSRLoadedRenderer } from '../../@types/astro';
|
import type { AstroRenderer, AstroSettings, SSRLoadedRenderer } from '../../@types/astro.js';
|
||||||
import type { ModuleLoader } from '../module-loader/index.js';
|
import type { ModuleLoader } from '../module-loader/index.js';
|
||||||
|
|
||||||
export async function loadRenderers(
|
export async function loadRenderers(
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue