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

@ -82,6 +82,7 @@
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.25.2",
"fs-extra": "^7.0.0",
"glob": "^10.3.10",
"ng-packagr": "^14.0.0",
"prettier": "^2.4.1",
"rxjs": "~7.5.0",

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);
}