edsger 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -415,11 +415,7 @@ function parseCodeRefineResponse(response) {
|
|
|
415
415
|
};
|
|
416
416
|
}
|
|
417
417
|
export function checkCodeRefineRequirements() {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
}
|
|
422
|
-
catch {
|
|
423
|
-
return Promise.resolve(false);
|
|
424
|
-
}
|
|
418
|
+
// Dependencies are declared in package.json and will be installed automatically
|
|
419
|
+
// No need to check for them here
|
|
420
|
+
return Promise.resolve(true);
|
|
425
421
|
}
|
|
@@ -195,11 +195,7 @@ export async function verifyAndResolveComments(options) {
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
export function checkCodeRefineVerificationRequirements() {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
}
|
|
202
|
-
catch {
|
|
203
|
-
return Promise.resolve(false);
|
|
204
|
-
}
|
|
198
|
+
// Dependencies are declared in package.json and will be installed automatically
|
|
199
|
+
// No need to check for them here
|
|
200
|
+
return Promise.resolve(true);
|
|
205
201
|
}
|