@colyseus/tools 0.17.9 → 0.17.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colyseus/tools",
3
- "version": "0.17.9",
3
+ "version": "0.17.10",
4
4
  "type": "module",
5
5
  "description": "Simplify the development and production settings for your Colyseus project.",
6
6
  "input": "./src/index.ts",
@@ -22,9 +22,9 @@
22
22
  }
23
23
  },
24
24
  "bin": {
25
- "colyseus-system-boot": "system-boot.js",
26
- "colyseus-post-deploy": "post-deploy.js",
27
- "colyseus-report-stats": "report-stats.js"
25
+ "colyseus-system-boot": "system-boot.cjs",
26
+ "colyseus-post-deploy": "post-deploy.cjs",
27
+ "colyseus-report-stats": "report-stats.cjs"
28
28
  },
29
29
  "repository": {
30
30
  "type": "git",
@@ -56,11 +56,11 @@
56
56
  "@types/dotenv": "^8.2.0",
57
57
  "uwebsockets-express": "^1.1.10",
58
58
  "@colyseus/bun-websockets": "^0.17.5",
59
- "@colyseus/core": "^0.17.15",
60
- "@colyseus/redis-driver": "^0.17.5",
61
59
  "@colyseus/redis-presence": "^0.17.5",
60
+ "@colyseus/core": "^0.17.15",
62
61
  "@colyseus/uwebsockets-transport": "^0.17.6",
63
- "@colyseus/ws-transport": "^0.17.6"
62
+ "@colyseus/ws-transport": "^0.17.6",
63
+ "@colyseus/redis-driver": "^0.17.5"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "@colyseus/core": "0.17.x",
@@ -73,7 +73,7 @@
73
73
  {
74
74
  "merge_logs": true,
75
75
  "max_memory_restart": "256M",
76
- "script": "./pm2/post-deploy-agent.js",
76
+ "script": "./pm2/post-deploy-agent.cjs",
77
77
  "instance_var": "INSTANCE_ID"
78
78
  }
79
79
  ],
@@ -2,7 +2,7 @@
2
2
  const pm2 = require('pm2');
3
3
  const fs = require('fs');
4
4
  const path = require('path');
5
- const shared = require('./pm2/shared');
5
+ const shared = require('./pm2/shared.cjs');
6
6
 
7
7
  const opts = { env: process.env.NODE_ENV || "production", };
8
8
 
File without changes
File without changes
File without changes