diff options
author | 2024-11-18 13:35:34 +0000 | |
---|---|---|
committer | 2024-11-18 13:35:34 +0000 | |
commit | f64934086e84966bcfd02b699d64a80cb8392fa2 (patch) | |
tree | b50f8ce90559c63cd70130cc20181571433e62af | |
parent | 3bde4aa751c8bdf4f23edc86455b22061480583a (diff) | |
download | astro-f64934086e84966bcfd02b699d64a80cb8392fa2.tar.gz astro-f64934086e84966bcfd02b699d64a80cb8392fa2.tar.zst astro-f64934086e84966bcfd02b699d64a80cb8392fa2.zip |
[ci] format
Diffstat (limited to '')
-rwxr-xr-x | .github/scripts/announce.mjs | 4 | ||||
-rw-r--r-- | .github/scripts/bundle-size.mjs | 2 | ||||
-rw-r--r-- | .github/scripts/utils.mjs | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/scripts/announce.mjs b/.github/scripts/announce.mjs index 27a3c7101..2e05a7ae8 100755 --- a/.github/scripts/announce.mjs +++ b/.github/scripts/announce.mjs @@ -1,6 +1,6 @@ -import { globby as glob } from 'globby'; -import { fileURLToPath } from 'node:url'; import { readFile } from 'node:fs/promises'; +import { fileURLToPath } from 'node:url'; +import { globby as glob } from 'globby'; import { setOutput } from './utils.mjs'; const { GITHUB_REF = 'main' } = process.env; diff --git a/.github/scripts/bundle-size.mjs b/.github/scripts/bundle-size.mjs index b5ef31b48..76d6b3f29 100644 --- a/.github/scripts/bundle-size.mjs +++ b/.github/scripts/bundle-size.mjs @@ -1,5 +1,5 @@ -import { build } from 'esbuild'; import { existsSync } from 'node:fs'; +import { build } from 'esbuild'; const CLIENT_RUNTIME_PATH = 'packages/astro/src/runtime/client/'; diff --git a/.github/scripts/utils.mjs b/.github/scripts/utils.mjs index 9aaa383d8..768302230 100644 --- a/.github/scripts/utils.mjs +++ b/.github/scripts/utils.mjs @@ -1,6 +1,6 @@ +import * as crypto from 'node:crypto'; import * as fs from 'node:fs'; import * as os from 'node:os'; -import * as crypto from 'node:crypto'; /** Based on https://github.com/actions/toolkit/blob/4e3b068ce116d28cb840033c02f912100b4592b0/packages/core/src/file-command.ts */ export function setOutput(key, value) { |