@xiaoguomeiyitian/core 1.0.5 → 1.0.6
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/dist/Cli.js
CHANGED
@@ -19,7 +19,7 @@ if (cmd == "del") {
|
|
19
19
|
const targetDir = path_1.default.resolve(cwd, process.argv[3]); // 目标目录
|
20
20
|
deleteMapFiles(targetDir, extname);
|
21
21
|
}
|
22
|
-
if (cmd == "
|
22
|
+
if (cmd == "dbg") {
|
23
23
|
process.argv = [process.argv[0], process.argv[1], process.argv[2], "-autoDeBug", "1", "-serverType", process.argv[3], "-rpcPort", process.argv[4]];
|
24
24
|
const { Global } = require("@xiaoguomeiyitian/core");
|
25
25
|
global.G = new Global();
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
package/dist/index.js
CHANGED
@@ -3,4 +3,4 @@ var _a;
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
4
4
|
exports.Entity = exports.Global = void 0;
|
5
5
|
require("bytenode");
|
6
|
-
_a = require("./Global_" +
|
6
|
+
_a = require("./Global_" + process.platform + '_' + process.versions.node.split('.')[0] + '.jsc'), exports.Global = _a.Global, exports.Entity = _a.Entity;
|