You've already forked joplin
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:
@@ -652,4 +652,4 @@ function app() {
|
||||
return application_;
|
||||
}
|
||||
|
||||
export { app };
|
||||
module.exports = { app };
|
||||
@@ -96,4 +96,4 @@ class BaseCommand {
|
||||
|
||||
}
|
||||
|
||||
export { BaseCommand };
|
||||
module.exports = { BaseCommand };
|
||||
@@ -315,4 +315,4 @@ cliUtils.redrawDone = function() {
|
||||
redrawStarted_ = false;
|
||||
}
|
||||
|
||||
export { cliUtils };
|
||||
module.exports = { cliUtils };
|
||||
@@ -108,4 +108,4 @@ function getOptionColWidth(options) {
|
||||
return output;
|
||||
}
|
||||
|
||||
export { renderCommandHelp };
|
||||
module.exports = { renderCommandHelp };
|
||||
@@ -620,4 +620,4 @@ async function enexXmlToMd(stream, resources) {
|
||||
return processMdArrayNewLines(mdLines);
|
||||
}
|
||||
|
||||
export { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };
|
||||
module.exports = { enexXmlToMd, processMdArrayNewLines, NEWLINE, addResourceTag };
|
||||
@@ -408,4 +408,4 @@ function importEnex(parentFolderId, filePath, importOptions = null) {
|
||||
});
|
||||
}
|
||||
|
||||
export { importEnex };
|
||||
module.exports = { importEnex };
|
||||
@@ -119,4 +119,4 @@ class OneDriveApiNodeUtils {
|
||||
|
||||
}
|
||||
|
||||
export { OneDriveApiNodeUtils };
|
||||
module.exports = { OneDriveApiNodeUtils };
|
||||
Reference in New Issue
Block a user