@ttmg/cli 0.1.1-beta.1 → 0.1.2
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/CHANGELOG.md +3 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1101,6 +1101,7 @@ class WsServer {
|
|
|
1101
1101
|
const method = clientMessage.method;
|
|
1102
1102
|
switch (method) {
|
|
1103
1103
|
case 'startUpload':
|
|
1104
|
+
console.log('startUpload');
|
|
1104
1105
|
this.sendUploadStatus('start');
|
|
1105
1106
|
uploadGame(({ status, percent, msg }) => {
|
|
1106
1107
|
if (status === 'process') {
|
|
@@ -1292,7 +1293,7 @@ async function dev() {
|
|
|
1292
1293
|
await watchChange();
|
|
1293
1294
|
}
|
|
1294
1295
|
|
|
1295
|
-
var version = "0.1.
|
|
1296
|
+
var version = "0.1.2";
|
|
1296
1297
|
var pkg = {
|
|
1297
1298
|
version: version};
|
|
1298
1299
|
|