Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
One more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuyk committed Oct 12, 2023
1 parent b11d2c7 commit 9a086ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/plugins/update-dependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function checkPluginDependencies() {

if (pluginDependencies.dependencies.length > 0) {
for (const dependency of pluginDependencies.dependencies) {
if (!installedDependencies.dependencies.includes(dependency)) {
if (!dependencies.dependencies.includes(dependency)) {
missingDepdendencies.push(dependency);
}
}
Expand Down Expand Up @@ -119,7 +119,7 @@ function checkPluginDevDependencies() {

if (pluginDependencies.devDependencies.length > 0) {
for (const dependency of pluginDependencies.devDependencies) {
if (!installedDependencies.devDependencies.includes(dependency)) {
if (!devDependencies.devDependencies.includes(dependency)) {
missingDevDepdendencies.push(dependency);
}
}
Expand Down

0 comments on commit 9a086ac

Please sign in to comment.