chore: bump glob

This commit is contained in:
cha0s 2024-01-13 01:59:25 -06:00
parent 0af48b6493
commit 0d7255e2eb
2 changed files with 1 additions and 3 deletions

View File

@ -42,7 +42,6 @@
"@flecks/user": "^2.0.0",
"express": "^4.17.1",
"fast-json-patch": "^3.0.0-1",
"glob": "^7.1.6",
"is-electron": "^2.2.1",
"natsort": "^2.0.2",
"react-hex-editor": "^0.3.0",

View File

@ -2,11 +2,10 @@ import fs from 'fs';
import {join} from 'path';
import {promisify} from 'util';
import {glob} from '@flecks/core/server';
import {Model, Sequelize, Types} from '@flecks/db/server';
import natsort from 'natsort';
import G from 'glob';
const glob = promisify(G);
const stat = promisify(fs.stat);
const sorter = natsort({insensitive: true});