Merge branch 'main' into feat-endpoint-style-structure

This commit is contained in:
Daniel Avila 2023-04-01 19:41:36 -04:00
commit 8fa20d9356
18 changed files with 2281 additions and 24 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 };
// }