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
c2e7b9847e
commit
3757a212c0
1 changed files with 3 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
|||
import { mkdir, writeFile } from 'node:fs/promises';
|
||||
import { createServer as _createServer } from 'node:http';
|
||||
import type { AstroConfig } from 'astro';
|
||||
import { listen } from 'async-listen';
|
||||
import { cyan } from 'kleur/colors';
|
||||
import { mkdir, writeFile } from 'node:fs/promises';
|
||||
import { createServer as _createServer } from 'node:http';
|
||||
import open from 'open';
|
||||
import ora from 'ora';
|
||||
import type { Arguments } from 'yargs-parser';
|
||||
|
@ -16,8 +16,7 @@ import { getAstroStudioUrl } from '../../../utils.js';
|
|||
// 4. The temporary server receives and saves the session token, logging the user in
|
||||
// 5. The user is redirected one last time to a success/failure page
|
||||
async function createServer(): Promise<{ url: string; promise: Promise<string> }> {
|
||||
let resolve: (value: string | PromiseLike<string>) => void,
|
||||
reject: (reason?: Error) => void;
|
||||
let resolve: (value: string | PromiseLike<string>) => void, reject: (reason?: Error) => void;
|
||||
|
||||
const server = _createServer((req, res) => {
|
||||
// Handle the request
|
||||
|
|
Loading…
Add table
Reference in a new issue