export-table-pulgin-csharp 1.1.108 → 1.1.110
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExportLiteDBUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,iBAAiB,EAAqC,MAAM,kBAAkB,CAAA;AAWxJ,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAuFnE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAsDzE;AAED,qBAAa,uBAAwB,SAAQ,UAAU;IACtD,IAAI,SAAgB;IACpB,IAAI,EAAE,MAAM,EAAE,CAAkB;IAEhC,WAAW,CAAC,KAAK,EAAE,iBAAiB;
|
|
1
|
+
{"version":3,"file":"ExportLiteDBUnityCSJsonPlugin.d.ts","sourceRoot":"","sources":["../src/ExportLiteDBUnityCSJsonPlugin.ts"],"names":[],"mappings":"AACA,OAAO,EAAO,iBAAiB,EAA+B,UAAU,EAAE,iBAAiB,EAAqC,MAAM,kBAAkB,CAAA;AAWxJ,wBAAgB,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAuFnE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,iBAAiB,GAAG,MAAM,GAAG,IAAI,CAsDzE;AAED,qBAAa,uBAAwB,SAAQ,UAAU;IACtD,IAAI,SAAgB;IACpB,IAAI,EAAE,MAAM,EAAE,CAAkB;IAEhC,WAAW,CAAC,KAAK,EAAE,iBAAiB;IA0DpC,WAAW,CAAC,KAAK,EAAE,iBAAiB,GAAG,IAAI;CAmC3C"}
|
|
@@ -33,7 +33,6 @@ const CSParseTool_1 = require("./CSParseTool");
|
|
|
33
33
|
const path_1 = __importDefault(require("path"));
|
|
34
34
|
const cp = __importStar(require("child_process"));
|
|
35
35
|
const commander_1 = __importDefault(require("commander"));
|
|
36
|
-
const yargs_1 = __importDefault(require("yargs"));
|
|
37
36
|
var isSkipIndexLoader0 = process.argv.findIndex(v => v == "--SkipIndexLoader") >= 0;
|
|
38
37
|
let firstLetterUpper = export_table_lib_1.makeFirstLetterUpper;
|
|
39
38
|
function exportUJson(paras) {
|
|
@@ -201,8 +200,6 @@ class ExportLiteDBUJsonPlugin extends export_table_lib_1.PluginBase {
|
|
|
201
200
|
var options = new commander_1.default.Command().option("--litedbpath <string>").parse(process.argv).opts();
|
|
202
201
|
let litedbpath = options["litedbpath"];
|
|
203
202
|
console.log(`litedbpath: ${litedbpath}`);
|
|
204
|
-
let litedbpath2 = yargs_1.default.string("litedbpath").parseSync().litedbpath;
|
|
205
|
-
console.log(`litedbpath2: ${litedbpath2}`);
|
|
206
203
|
if (litedbpath != null) {
|
|
207
204
|
let modulePath = require.resolve(".");
|
|
208
205
|
let binPath = path_1.default.resolve(modulePath, "../../bin/Json2LiteDB.exe");
|
package/package.json
CHANGED
|
@@ -198,8 +198,6 @@ export class ExportLiteDBUJsonPlugin extends PluginBase {
|
|
|
198
198
|
var options = new program.Command().option("--litedbpath <string>").parse(process.argv).opts()
|
|
199
199
|
let litedbpath = options["litedbpath"]
|
|
200
200
|
console.log(`litedbpath: ${litedbpath}`);
|
|
201
|
-
let litedbpath2 = yargs.string("litedbpath").parseSync().litedbpath;
|
|
202
|
-
console.log(`litedbpath2: ${litedbpath2}`);
|
|
203
201
|
if (litedbpath != null) {
|
|
204
202
|
let modulePath = require.resolve(".")
|
|
205
203
|
let binPath = path.resolve(modulePath, "../../bin/Json2LiteDB.exe")
|