mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
[ci] update lockfile (#10551)
Co-authored-by: matthewp <matthewp@users.noreply.github.com> Co-authored-by: bluwy <bjornlu.dev@gmail.com>
This commit is contained in:
parent
f226cb65d1
commit
260f4fa191
15 changed files with 1163 additions and 1049 deletions
|
@ -31,7 +31,6 @@ const units: { [unit: string]: number } = {
|
|||
}
|
||||
|
||||
const unitsReg = new RegExp(
|
||||
// eslint-disable-next-line regexp/prefer-d
|
||||
`^([0-9.]+(?:e\\d+)?)(${Object.keys(units).join('|')})?$`,
|
||||
)
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import { createRequire } from 'node:module';
|
||||
import { sep } from 'node:path';
|
||||
import { pathToFileURL } from 'node:url';
|
||||
import boxen from 'boxen';
|
||||
import { execa } from 'execa';
|
||||
|
|
|
@ -3,7 +3,6 @@ import { performance } from 'node:perf_hooks';
|
|||
import { fileURLToPath } from 'node:url';
|
||||
import { dim } from 'kleur/colors';
|
||||
import { type HMRPayload, createServer } from 'vite';
|
||||
import type { Arguments } from 'yargs-parser';
|
||||
import type { AstroConfig, AstroInlineConfig, AstroSettings } from '../../@types/astro.js';
|
||||
import { getPackage } from '../../cli/install-package.js';
|
||||
import { createContentTypesGenerator } from '../../content/index.js';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import type { AstroConfig, AstroUserConfig, Locales } from '../@types/astro.js';
|
||||
import type { AstroConfig, Locales } from '../@types/astro.js';
|
||||
import { normalizeTheLocale, toCodes } from './index.js';
|
||||
|
||||
type BrowserLocale = {
|
||||
|
|
|
@ -124,6 +124,7 @@ declare const Astro: {
|
|||
this
|
||||
);
|
||||
} catch (e) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.error(
|
||||
`[astro-island] Error hydrating ${this.getAttribute('component-url')}`,
|
||||
e
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import type http from 'node:http';
|
||||
import type { ManifestData } from '../@types/astro.js';
|
||||
import { collapseDuplicateSlashes, removeTrailingForwardSlash } from '../core/path.js';
|
||||
import { isServerLikeOutput } from '../prerender/utils.js';
|
||||
import type { DevServerController } from './controller.js';
|
||||
import { runWithErrorHandling } from './controller.js';
|
||||
import { recordServerError } from './error.js';
|
||||
|
@ -27,7 +26,6 @@ export async function handleRequest({
|
|||
}: HandleRequest) {
|
||||
const { config, loader } = pipeline;
|
||||
const origin = `${loader.isHttps() ? 'https' : 'http'}://${incomingRequest.headers.host}`;
|
||||
const buildingToSSR = isServerLikeOutput(config);
|
||||
|
||||
const url = new URL(collapseDuplicateSlashes(origin + incomingRequest.url));
|
||||
let pathname: string;
|
||||
|
|
|
@ -336,7 +336,3 @@ function getStatus(matchedRoute?: MatchedRoute): 404 | 500 | undefined {
|
|||
if (matchedRoute.route.route === '/404') return 404;
|
||||
if (matchedRoute.route.route === '/500') return 500;
|
||||
}
|
||||
|
||||
function has404Route(manifest: ManifestData): boolean {
|
||||
return manifest.routes.some((route) => route.route === '/404');
|
||||
}
|
||||
|
|
|
@ -185,6 +185,7 @@ describe('Setting inlineStylesheets to auto in server output', () => {
|
|||
const html = await response.text();
|
||||
const $ = cheerio.load(html);
|
||||
|
||||
console.log($);
|
||||
// the count of style/link tags depends on our css chunking logic
|
||||
// this test should be updated if it changes
|
||||
// assert.equal($('style').length, 3);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import { before, describe, it } from 'node:test';
|
||||
import * as cheerio from 'cheerio';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import { before, describe, it } from 'node:test';
|
||||
import { load as cheerioLoad } from 'cheerio';
|
||||
import testAdapter from './test-adapter.js';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import * as assert from 'node:assert/strict';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import { describe, it } from 'node:test';
|
||||
import { scan } from '../../../dist/vite-plugin-scanner/scan.js';
|
||||
|
||||
describe('astro scan', () => {
|
||||
|
|
|
@ -3,7 +3,7 @@ import { readFile, writeFile } from 'node:fs/promises';
|
|||
import path from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
import type { AstroIntegrationLogger } from 'astro';
|
||||
import { bold, cyan } from 'kleur/colors';
|
||||
import { bold } from 'kleur/colors';
|
||||
import { normalizePath } from 'vite';
|
||||
import { DB_TYPES_FILE } from '../consts.js';
|
||||
import type { VitePlugin } from '../utils.js';
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import { spawn } from 'node:child_process';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
import { Worker } from 'node:worker_threads';
|
||||
import * as cheerio from 'cheerio';
|
||||
import nodejs from '../dist/index.js';
|
||||
|
|
|
@ -40,6 +40,7 @@ describe('Vercel edge middleware', () => {
|
|||
// this is abysmal...
|
||||
'../.vercel/output/functions/render.func/www/withastro/astro/packages/integrations/vercel/test/fixtures/middleware-with-edge-file/dist/middleware.mjs'
|
||||
);
|
||||
console.log(contents);
|
||||
// assert.equal(contents.includes('title:')).to.be.true;
|
||||
// chaiJestSnapshot.setTestName('Middleware with handler file');
|
||||
// assert.equal(contents).to.matchSnapshot(true);
|
||||
|
@ -55,6 +56,7 @@ describe('Vercel edge middleware', () => {
|
|||
// this is abysmal...
|
||||
'../.vercel/output/functions/render.func/www/withastro/astro/packages/integrations/vercel/test/fixtures/middleware-without-edge-file/dist/middleware.mjs'
|
||||
);
|
||||
console.log(contents);
|
||||
// assert.equal(contents.includes('title:')).to.be.false;
|
||||
// chaiJestSnapshot.setTestName('Middleware without handler file');
|
||||
// assert.equal(contents).to.matchSnapshot(true);
|
||||
|
|
2187
pnpm-lock.yaml
generated
2187
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue