fix: fix files to adhere to standard conventions

This commit is contained in:
Daniel D Orlando 2023-04-01 12:56:32 -07:00
parent 9b04ffabca
commit ff757f27cf
7 changed files with 11 additions and 9 deletions

View file

@ -353,4 +353,4 @@ const langSubset = [
'yaml',
];
module.exports = { languages, langSubset };
export { languages, langSubset };

View file

@ -211,8 +211,9 @@ var SSE = function (url, options) {
};
};
export { SSE };
// Export our SSE module for npm.js
if (typeof exports !== 'undefined') {
// exports.SSE = SSE;
module.exports = { SSE };
}
// if (typeof exports !== 'undefined') {
// // exports.SSE = SSE;
// module.exports = { SSE };
// }