Upgrade/remove outdated dependencies

This commit is contained in:
Jamie Kyle 2024-11-13 17:20:36 -08:00 committed by GitHub
parent 0bc6368c64
commit b347a628b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 3511 additions and 8360 deletions

View file

@ -3,7 +3,7 @@
const esbuild = require('esbuild');
const path = require('path');
const glob = require('glob');
const fastGlob = require('fast-glob');
const ROOT_DIR = path.join(__dirname, '..');
const BUNDLES_DIR = 'bundles';
@ -106,10 +106,10 @@ async function main() {
mainFields: ['browser', 'main'],
entryPoints: [
'preload.wrapper.ts',
...glob
...fastGlob
.sync('{app,ts}/**/*.{ts,tsx}', {
nodir: true,
root: ROOT_DIR,
onlyFiles: true,
cwd: ROOT_DIR,
})
.filter(file => !file.endsWith('.d.ts')),
],