refactor(angular): add correct dependencies

This commit is contained in:
Liam DeBeasi
2023-11-02 16:42:57 -04:00
parent 0c88cb00f9
commit d264042d6d
3 changed files with 184 additions and 158 deletions

View File

@ -10,7 +10,7 @@ const distGeneratedNodeModules = path.join(distDir, 'node_modules');
function doGlob(globString) {
return new Promise((resolve, reject) => {
glob(globString, (err, matches) => {
glob.glob(globString, (err, matches) => {
if (err) {
return reject(err);
}