hubot 11.0.2 → 11.0.3
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.
- package/package.json +1 -1
- package/src/Robot.mjs +2 -2
package/package.json
CHANGED
package/src/Robot.mjs
CHANGED
|
@@ -544,7 +544,7 @@ class Robot {
|
|
|
544
544
|
let currentSection = null
|
|
545
545
|
let nextSection
|
|
546
546
|
|
|
547
|
-
this.logger.debug(`Parsing help for ${
|
|
547
|
+
this.logger.debug(`Parsing help for ${filePath}`)
|
|
548
548
|
|
|
549
549
|
for (let i = 0, line; i < lines.length; i++) {
|
|
550
550
|
line = lines[i]
|
|
@@ -568,7 +568,7 @@ class Robot {
|
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
if (currentSection === null) {
|
|
571
|
-
this.logger.info(`${
|
|
571
|
+
this.logger.info(`${filePath} is using deprecated documentation syntax`)
|
|
572
572
|
scriptDocumentation.commands = []
|
|
573
573
|
for (let i = 0, line, cleanedLine; i < lines.length; i++) {
|
|
574
574
|
line = lines[i]
|