diff --git a/package.json b/package.json index 0eef94063b..d7067f705e 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,6 @@ "cssnano": "7.1.2", "esbuild": "0.27.0", "execa": "9.6.0", - "fast-glob": "3.3.3", "ignore-walk": "8.0.0", "js-yaml": "4.1.1", "postcss": "8.5.6", diff --git a/packages/frontend-embed/package.json b/packages/frontend-embed/package.json index 6122f2cab6..cdf13120c0 100644 --- a/packages/frontend-embed/package.json +++ b/packages/frontend-embed/package.json @@ -56,7 +56,6 @@ "cross-env": "10.1.0", "eslint-plugin-import": "2.32.0", "eslint-plugin-vue": "10.6.2", - "fast-glob": "3.3.3", "happy-dom": "20.0.11", "intersection-observer": "0.12.2", "micromatch": "4.0.8", diff --git a/packages/frontend/package.json b/packages/frontend/package.json index c9d49201c4..785dbbcfab 100644 --- a/packages/frontend/package.json +++ b/packages/frontend/package.json @@ -128,7 +128,6 @@ "cypress": "15.7.0", "eslint-plugin-import": "2.32.0", "eslint-plugin-vue": "10.6.2", - "fast-glob": "3.3.3", "happy-dom": "20.0.11", "intersection-observer": "0.12.2", "micromatch": "4.0.8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b11773d76f..56a73fb5fa 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -22,9 +22,6 @@ importers: execa: specifier: 9.6.0 version: 9.6.0 - fast-glob: - specifier: 3.3.3 - version: 3.3.3 ignore-walk: specifier: 8.0.0 version: 8.0.0 @@ -1008,9 +1005,6 @@ importers: eslint-plugin-vue: specifier: 10.6.2 version: 10.6.2(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1))(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)) - fast-glob: - specifier: 3.3.3 - version: 3.3.3 happy-dom: specifier: 20.0.11 version: 20.0.11 @@ -1247,9 +1241,6 @@ importers: eslint-plugin-vue: specifier: 10.6.2 version: 10.6.2(@stylistic/eslint-plugin@5.5.0(eslint@9.39.1))(@typescript-eslint/parser@8.48.0(eslint@9.39.1)(typescript@5.9.3))(eslint@9.39.1)(vue-eslint-parser@10.2.0(eslint@9.39.1)) - fast-glob: - specifier: 3.3.3 - version: 3.3.3 happy-dom: specifier: 20.0.11 version: 20.0.11 diff --git a/scripts/tarball.mjs b/scripts/tarball.mjs index fddbe3b04a..463c4aad57 100644 --- a/scripts/tarball.mjs +++ b/scripts/tarball.mjs @@ -3,11 +3,10 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { createWriteStream } from 'node:fs'; +import { createWriteStream, globSync } from 'node:fs'; import { mkdir } from 'node:fs/promises'; import { resolve } from 'node:path'; import { fileURLToPath } from 'node:url'; -import glob from 'fast-glob'; import walk from 'ignore-walk'; import { Pack } from 'tar/pack'; import meta from '../package.json' with { type: "json" }; @@ -25,7 +24,7 @@ export default async function build() { const pack = new Pack({ cwd, gzip: true }); const patterns = await walk({ path: cwd, ignoreFiles: ['.gitignore'] }); - for await (const entry of glob.stream(patterns, { cwd, ignore, dot: true })) { + for (const entry of globSync(patterns, { cwd, ignore, dot: true })) { pack.add(entry); }