chore: rebase
This commit is contained in:
parent
07613b96bb
commit
a58cc96091
5 changed files with 10 additions and 11 deletions
|
@ -5,8 +5,8 @@ import { fileURLToPath } from 'node:url';
|
|||
import { execaCommand } from 'execa';
|
||||
import { markdownTable } from 'markdown-table';
|
||||
import { waitUntilBusy } from 'port-authority';
|
||||
import { calculateStat, astroBin } from './_util.js';
|
||||
import { renderFiles } from '../make-project/render-default.js';
|
||||
import { astroBin, calculateStat } from './_util.js';
|
||||
|
||||
const port = 4322;
|
||||
|
||||
|
|
|
@ -89,7 +89,6 @@
|
|||
"eslint-plugin-no-only-tests": "^3.1.0",
|
||||
"eslint-plugin-prettier": "^5.0.0",
|
||||
"only-allow": "^1.1.1",
|
||||
"organize-imports-cli": "^0.10.0",
|
||||
"prettier": "^3.0.3",
|
||||
"prettier-plugin-astro": "^0.12.0",
|
||||
"tiny-glob": "^0.2.9",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* eslint-disable no-console */
|
||||
import * as colors from 'kleur/colors';
|
||||
import { execSync } from 'node:child_process';
|
||||
import { arch, platform } from 'node:os';
|
||||
/* eslint-disable no-console */
|
||||
import * as colors from 'kleur/colors';
|
||||
import prompts from 'prompts';
|
||||
import type yargs from 'yargs-parser';
|
||||
import { resolveConfig } from '../../core/config/index.js';
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
import { fileURLToPath } from 'node:url';
|
||||
import { expect } from 'chai';
|
||||
import * as cheerio from 'cheerio';
|
||||
import { createContainer } from '../../../dist/core/dev/container.js';
|
||||
import testAdapter from '../../test-adapter.js';
|
||||
import {
|
||||
createBasicSettings,
|
||||
createFs,
|
||||
createRequestAndResponse,
|
||||
defaultLogger,
|
||||
} from '../test-utils.js';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
import { expect } from 'chai';
|
||||
import { createContainer } from '../../../dist/core/dev/container.js';
|
||||
import * as cheerio from 'cheerio';
|
||||
import testAdapter from '../../test-adapter.js';
|
||||
|
||||
const root = new URL('../../fixtures/alias/', import.meta.url);
|
||||
const fileSystem = {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import type { AstroIntegrationLogger } from 'astro';
|
||||
import { relative, relative as relativePath } from 'node:path';
|
||||
import { relative as relativePath } from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
import type { AstroIntegrationLogger } from 'astro';
|
||||
import { copyFilesToFunction } from './fs.js';
|
||||
|
||||
export async function copyDependenciesToFunction(
|
||||
|
|
Loading…
Reference in a new issue