Skip to content

Commit 05dc00f

Browse files
authored
Merge pull request #69 from ether/fix/esm-compat
fix: backward-compat for ESM etherpad
2 parents 73c4dcf + 7b30bc3 commit 05dc00f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

exportHTML.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const eejs = require('ep_etherpad-lite/node/eejs/');
3+
const eejs = require('ep_etherpad-lite/node/eejs');
44

55
// Add non-used props to be supported in export
66
exports.exportHtmlAdditionalTagsWithData = async (hookName, pad) => {

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
const eejs = require('ep_etherpad-lite/node/eejs/');
3+
const eejs = require('ep_etherpad-lite/node/eejs');
44
const settings = require('ep_etherpad-lite/node/utils/Settings');
55

66
// Tries to include content that never existed...

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@
3737
"lint": "eslint .",
3838
"lint:fix": "eslint --fix ."
3939
},
40-
"version": "0.0.25"
40+
"version": "0.0.26"
4141
}

0 commit comments

Comments
 (0)