We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4622238 commit a6f34fcCopy full SHA for a6f34fc
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@colyseus/playground",
3
- "version": "0.16.1",
+ "version": "0.16.2",
4
"main": "./build/index.js",
5
"module": "./build/index.mjs",
6
"typings": "./build/index.d.ts",
src-backend/index.ts
@@ -3,6 +3,7 @@ import express, { Router } from 'express';
import { auth, JWT } from '@colyseus/auth';
import { matchMaker, IRoomCache } from '@colyseus/core';
import { allRoomNames, applyMonkeyPatch } from './colyseus.ext.js';
+import { fileURLToPath } from 'url'; // required for ESM build (see build.mjs)
7
8
export type AuthConfig = {
9
oauth: string[],
0 commit comments