1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

Changed export to module.exports

This commit is contained in:
Laurent Cozic
2017-11-03 00:13:17 +00:00
parent 7781fbad76
commit 8a78ee5df6
78 changed files with 78 additions and 78 deletions

View File

@@ -652,4 +652,4 @@ function app() {
return application_;
}
export { app };
module.exports = { app };

View File

@@ -96,4 +96,4 @@ class BaseCommand {
}
export { BaseCommand };
module.exports = { BaseCommand };

View File

@@ -315,4 +315,4 @@ cliUtils.redrawDone = function() {
redrawStarted_ = false;
}
export { cliUtils };
module.exports = { cliUtils };

View File

@@ -108,4 +108,4 @@ function getOptionColWidth(options) {
return output;
}
export { renderCommandHelp };
module.exports = { renderCommandHelp };

View File

@@ -620,4 +620,4 @@ async function enexXmlToMd(stream, resources) {
return processMdArrayNewLines(mdLines);
}
export { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };
module.exports = { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };

View File

@@ -408,4 +408,4 @@ function importEnex(parentFolderId, filePath, importOptions = null) {
});
}
export { importEnex };
module.exports = { importEnex };

View File

@@ -119,4 +119,4 @@ class OneDriveApiNodeUtils {
}
export { OneDriveApiNodeUtils };
module.exports = { OneDriveApiNodeUtils };