Upgrade/remove outdated dependencies

Co-authored-by: Jamie Kyle <113370520+jamiebuilds-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2024-11-13 19:56:28 -06:00 committed by GitHub
commit f68756084a
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')),
],