Skip to content

Commit

Permalink
fix(cli): #1966 Migrates glob-promise dependency to Promise support…
Browse files Browse the repository at this point in the history
…ed `glob` package

[!IMPORTANT]
Glob has native Promise support as of v9.0.0, please use it directly. I will not issue a deprecation notice on this package, because I can't deal with the volume of angry tickets that will follow.
  • Loading branch information
diegoavalon authored Oct 9, 2024
1 parent 011cd93 commit 156f3b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/faustwp-cli/src/blockset.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fetch from 'isomorphic-fetch';
import path from 'path';
import fs from 'fs-extra';
import glob from 'glob-promise';
import { glob } from 'glob';
import FormData from 'form-data';
import archiver from 'archiver';
import { spawnSync } from 'child_process';
Expand Down

0 comments on commit 156f3b0

Please sign in to comment.