You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.debug(`annotations.js file missing from ${paths.source.annotations}. This may be expected if you do not use annotations or are using markdown.`);
25
+
logger.debug(
26
+
`annotations.js file missing from ${
27
+
paths.source.annotations
28
+
}. This may be expected if you do not use annotations or are using markdown.`
29
+
);
24
30
return[];
25
31
}
26
32
@@ -31,7 +37,11 @@ const annotations_exporter = function (pl) {
31
37
try{
32
38
varoldAnnotationsJSON=JSON.parse(oldAnnotations);
33
39
}catch(ex){
34
-
logger.error(`There was an error parsing JSON for ${paths.source.annotations}annotations.js`);
40
+
logger.error(
41
+
`There was an error parsing JSON for ${
42
+
paths.source.annotations
43
+
}annotations.js`
44
+
);
35
45
return[];
36
46
}
37
47
returnoldAnnotationsJSON.comments;
@@ -62,13 +72,16 @@ const annotations_exporter = function (pl) {
0 commit comments