Skip to content

Commit

Permalink
fix(fjagejs): fixing broken dependency and uprevving version
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Oct 17, 2024
1 parent 8b4912c commit 7128c49
Show file tree
Hide file tree
Showing 7 changed files with 364 additions and 601 deletions.
106 changes: 53 additions & 53 deletions docs/jsdoc/index.html

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions gateways/js/dist/esm/fjage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* fjage.js v1.13.3 */
/* fjage.js v1.13.4 */

const isBrowser =
typeof window !== "undefined" && typeof window.document !== "undefined";
Expand All @@ -23,9 +23,7 @@ const isJsDom =
(navigator.userAgent.includes("Node.js") ||
navigator.userAgent.includes("jsdom")));

typeof Deno !== "undefined" &&
typeof Deno.version !== "undefined" &&
typeof Deno.version.deno !== "undefined";
typeof Deno !== "undefined" && typeof Deno.core !== "undefined";

const SOCKET_OPEN = 'open';
const SOCKET_OPENING = 'opening';
Expand Down
6 changes: 2 additions & 4 deletions gateways/js/dist/fjage.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions gateways/js/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ export default [
'error',
'single'
],
'no-unused-vars': ['error', {
'caughtErrors': 'none',
}]
}
}
];
Loading

0 comments on commit 7128c49

Please sign in to comment.