jjb-cmd 2.2.13 → 2.3.1

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/bin/command.js ADDED
@@ -0,0 +1,110 @@
1
+ #! /usr/bin/env node
2
+
3
+ const commander = require('commander');
4
+ const readline = require('readline');
5
+ const path = require('path');
6
+ const fs = require('fs');
7
+ const child_process = require('child_process');
8
+
9
+ commander.command('v').description('-- 查看版本').action(() => {
10
+ const package_json_file = JSON.parse(fs.readFileSync(path.join(__dirname, '../package.json')).toString());
11
+ const {
12
+ version
13
+ } = package_json_file;
14
+ console.log(`当前版本 v${version}`);
15
+ });
16
+
17
+ commander.command('help').description('-- 帮助').action(() => {
18
+ console.log('jjb-cmd <command>');
19
+ console.log('');
20
+ console.log('使用:');
21
+ console.log('');
22
+ console.log('jjb-cmd help 帮助');
23
+ console.log('jjb-cmd version 查看版本');
24
+ console.log('jjb-cmd push <version> 发布云组件\n\targ1 <version> 发布版本,可设置为latest');
25
+ console.log('jjb-cmd auth <username> <password> 登录授权\n\targ1 <username> 用户名\n\targ2 <password> 密码');
26
+ console.log('jjb-cmd push java <env> 推送微应用到服务器\n\targ1 <env> 推送环境');
27
+ });
28
+
29
+ commander.command('pushMessage [args]').description('-- 设置publish提交时是否需要提交信息').action(args => {
30
+ const package_json_file = JSON.parse(fs.readFileSync(path.join(__dirname, '../package.json')).toString());
31
+ if ([ 'yes', 'no' ].includes(args)) {
32
+ package_json_file.pushMessage = args;
33
+ fs.writeFileSync(path.join(__dirname, '../package.json'), JSON.stringify(package_json_file));
34
+ }
35
+ });
36
+
37
+ commander.command('link').option('-A').description('-- 创建符号链接').action(args => {
38
+ let dirList = [];
39
+ const hasFlag = args.A;
40
+ const root_path = path.resolve('./');
41
+ let r1 = readline.createInterface({
42
+ input: process.stdin,
43
+ output: process.stdout
44
+ });
45
+ r1.question('Target Path:', function (answer) {
46
+ const arr = answer.split('\\');
47
+ const name = arr.length
48
+ ? arr[ arr.length - 1 ]
49
+ : '';
50
+ if (hasFlag) {
51
+ dirList = dirList.concat(fs.readdirSync(root_path).map(dir => {
52
+ return `${root_path}\\${dir}`;
53
+ }).filter(dir => fs.statSync(dir).isDirectory()).map(dir => {
54
+ return {
55
+ dir: dir + '\\' + name,
56
+ link: answer
57
+ };
58
+ }));
59
+ } else {
60
+ dirList = dirList.concat(root_path).map(dir => {
61
+ return {
62
+ dir: dir + '\\' + name,
63
+ link: answer
64
+ };
65
+ });
66
+ }
67
+ dirList.forEach(item => {
68
+ child_process.execSync(`mklink /D ${item.dir} ${item.link}`, (error, stdout) => {
69
+ if (!error) {
70
+ console.log(stdout);
71
+ }
72
+ });
73
+ });
74
+ console.log('执行完成。');
75
+ process.exit(0);
76
+ });
77
+ r1.on('close', () => process.exit(0));
78
+ });
79
+
80
+ // 命令
81
+ commander.command('auth [args]').description('-- 授权').action(args => {
82
+ require('../src/auth.js')(process.argv.splice(3));
83
+ });
84
+
85
+ // 发包
86
+ commander.command('publish [args]').description('-- 发布包').action(args => {
87
+ require('../src/publish.js')(args);
88
+ });
89
+
90
+ // publish 命令
91
+ commander.command('push [args]').description('-- 发布包').action(args => {
92
+ if (args) {
93
+ if ([ 'java' ].includes(args)) {
94
+ require('../src/push.js')(process.argv.splice(3));
95
+ } else {
96
+ console.log(`无效的选项‘${args}’。`);
97
+ process.exit(0);
98
+ }
99
+ } else {
100
+ console.log(`无效的选项‘${args}’。`);
101
+ process.exit(0);
102
+ }
103
+ });
104
+
105
+ // rm-rf 命令
106
+ commander.command('rm-rf').description('-- 删除全部').action(() => {
107
+ require('../src/rm-rf.js')();
108
+ });
109
+
110
+ commander.parse(process.argv);
package/package.json CHANGED
@@ -4,8 +4,8 @@
4
4
  "env": "prod",
5
5
  "httpMethod": "http",
6
6
  "pushMessage": "yes",
7
- "version": "2.2.13",
8
- "description": "jjb脚手架工具",
7
+ "version": "2.3.1",
8
+ "description": "jjb-cmd命令行工具",
9
9
  "main": "index.js",
10
10
  "scripts": {
11
11
  "test": "node bin/command.js help",
package/src/auth.js ADDED
@@ -0,0 +1 @@
1
+ const a0_0x5596d5=a0_0x75c0;(function(_0x290fb5,_0x2b5551){const _0x2d3812=a0_0x75c0,_0x2c1280=_0x290fb5();while(!![]){try{const _0x20f045=parseInt(_0x2d3812(0xdc))/0x1+-parseInt(_0x2d3812(0xdf))/0x2+-parseInt(_0x2d3812(0xcf))/0x3+parseInt(_0x2d3812(0xd1))/0x4*(parseInt(_0x2d3812(0xd8))/0x5)+parseInt(_0x2d3812(0xe0))/0x6*(-parseInt(_0x2d3812(0xd6))/0x7)+-parseInt(_0x2d3812(0xce))/0x8+parseInt(_0x2d3812(0xc5))/0x9*(parseInt(_0x2d3812(0xd3))/0xa);if(_0x20f045===_0x2b5551)break;else _0x2c1280['push'](_0x2c1280['shift']());}catch(_0x181f57){_0x2c1280['push'](_0x2c1280['shift']());}}}(a0_0x3b6b,0xe2b46));function a0_0x75c0(_0x50f1a2,_0x4cab82){const _0x3b6b6d=a0_0x3b6b();return a0_0x75c0=function(_0x75c0f8,_0x4fb163){_0x75c0f8=_0x75c0f8-0xc5;let _0x98f8b0=_0x3b6b6d[_0x75c0f8];return _0x98f8b0;},a0_0x75c0(_0x50f1a2,_0x4cab82);}function a0_0x3b6b(){const _0x2ada5f=['5XTtxvN','status','exit','Auth:\x20授权登录!','204774RgOTTw','message','catch','1967278jFUfaY','662334IuVBek','chalk','2412621WOpVki','./config','exports','../.auth','path','log','Auth:\x20登录失败!','data','writeFileSync','1082912ltisFu','5067702KszlYY','axios','3468648ttWRNm','then','120kcsoFY','post','existsSync','35HQiUqU','green'];a0_0x3b6b=function(){return _0x2ada5f;};return a0_0x3b6b();}const axios=require(a0_0x5596d5(0xd0)),chalk=require(a0_0x5596d5(0xe1)),fs=require('fs'),path=require(a0_0x5596d5(0xc9)),{getApiHost}=require(a0_0x5596d5(0xc6));module[a0_0x5596d5(0xc7)]=_0x69565a=>{const _0x565560=a0_0x5596d5;console[_0x565560(0xca)](_0x565560(0xdb));const [_0x54af72,_0x4d0787]=_0x69565a;axios[_0x565560(0xd4)](getApiHost()+'/api/auth',{'username':_0x54af72,'password':_0x4d0787})[_0x565560(0xd2)](_0xa0be07=>{const _0x23b5f9=_0x565560,_0x4bb6f1=path['join'](__dirname,_0x23b5f9(0xc8));_0xa0be07[_0x23b5f9(0xcc)][_0x23b5f9(0xd9)]?(console[_0x23b5f9(0xca)](chalk[_0x23b5f9(0xd7)]('Auth:\x20登录成功,已缓存登录状态!')),fs[_0x23b5f9(0xcd)](_0x4bb6f1,_0x54af72+'/'+_0x4d0787)):(console[_0x23b5f9(0xca)](chalk['red']('Auth:\x20'+_0xa0be07[_0x23b5f9(0xcc)]['message'])),fs[_0x23b5f9(0xd5)](_0x4bb6f1)&&fs['unlinkSync'](_0x4bb6f1),process[_0x23b5f9(0xda)](0x0));})[_0x565560(0xde)](_0x3e011f=>{const _0x5b2ab2=_0x565560;console[_0x5b2ab2(0xca)](chalk[_0x5b2ab2(0xd7)](_0x5b2ab2(0xcb)+_0x3e011f[_0x5b2ab2(0xdd)])),process[_0x5b2ab2(0xda)](0x0);});};
package/src/config.js ADDED
@@ -0,0 +1 @@
1
+ const a1_0x41738f=a1_0x7bf8;function a1_0x7bf8(_0x36e17f,_0x5dce6f){const _0x3b81dc=a1_0x3b81();return a1_0x7bf8=function(_0x7bf821,_0x41579c){_0x7bf821=_0x7bf821-0x64;let _0x1ad3f8=_0x3b81dc[_0x7bf821];return _0x1ad3f8;},a1_0x7bf8(_0x36e17f,_0x5dce6f);}(function(_0xc4c526,_0x989541){const _0x3751d4=a1_0x7bf8,_0x3caf25=_0xc4c526();while(!![]){try{const _0x2c2ed0=-parseInt(_0x3751d4(0x6a))/0x1+-parseInt(_0x3751d4(0x71))/0x2*(parseInt(_0x3751d4(0x6f))/0x3)+-parseInt(_0x3751d4(0x6e))/0x4*(parseInt(_0x3751d4(0x86))/0x5)+parseInt(_0x3751d4(0x8b))/0x6*(parseInt(_0x3751d4(0x6c))/0x7)+-parseInt(_0x3751d4(0x8d))/0x8+parseInt(_0x3751d4(0x74))/0x9*(parseInt(_0x3751d4(0x81))/0xa)+-parseInt(_0x3751d4(0x7b))/0xb*(-parseInt(_0x3751d4(0x75))/0xc);if(_0x2c2ed0===_0x989541)break;else _0x3caf25['push'](_0x3caf25['shift']());}catch(_0x65c8d8){_0x3caf25['push'](_0x3caf25['shift']());}}}(a1_0x3b81,0xa341d));function a1_0x3b81(){const _0x2a8d02=['API_HOST','jjb-assembly-','GIT_TEMP_DIR','GIT_TEMP_JAVA','447505HNcQan','http://120.26.210.58:8089','77jLrtKe','tmpdir','4117764wciLkl','1116948xGojJd','readFileSync','6EPnewx','now','e9njpBd1nS_LREN8GFpR','136035XwJUjj','12ivpYhB','join','CONFIG_FILE_HOST','G4HJRsHr9D7Ssmixegw2','snBxJ2i5kYarGGcsojhY','GIT_JAVA_ENV_JSON','34028038OXOPls','https://jcloud.cqjjb.cn','http://192.168.1.242:10985','../package.json','getApiHost','FT3pKzxpRynFkmddJ9Bs','50uqWNbM','TEMPLATE_FOLDER','https://cdn.cqjjb.cn/jjb-cloud-config','ywPtT3xCG6b_vAxp6sTj','env','5HVEhqa','httpMethod','API_HOST_TEST','7V-YUxhmh51Mdhgx4rq4','FqNrmFAgrxasMrbbjvq9','60030ASXTqi','gPSit8aJsLVmNzuQ5Cy4','131944kjGTCQ','http://120.26.210.58:8088','path'];a1_0x3b81=function(){return _0x2a8d02;};return a1_0x3b81();}const os=require('os'),path=require(a1_0x41738f(0x65)),fs=require('fs'),API_HOST=a1_0x41738f(0x64),API_HOST_HTTPS=a1_0x41738f(0x7c),API_HOST_TEST=a1_0x41738f(0x6b);exports[a1_0x41738f(0x77)]=a1_0x41738f(0x83),exports[a1_0x41738f(0x66)]=API_HOST,exports[a1_0x41738f(0x88)]=API_HOST_TEST,exports['GIT_HOST']=a1_0x41738f(0x7d),exports[a1_0x41738f(0x68)]=a1_0x41738f(0x67)+Date[a1_0x41738f(0x72)](),exports[a1_0x41738f(0x69)]='jjb-assembly-java',exports[a1_0x41738f(0x7a)]={'development':'dev','production':'prod','test':'test'},exports['CLOUD_PROJECT']={'common':{'token':a1_0x41738f(0x78),'projectId':0x117},'react-admin-component':{'token':a1_0x41738f(0x80),'projectId':0x154},'jjb-dva-runtime':{'token':'hLqARY89CN6fUD3yg4NL','projectId':0x23b},'jjb-common-lib':{'token':a1_0x41738f(0x73),'projectId':0x23c},'jjb-common-decorator':{'token':a1_0x41738f(0x8c),'projectId':0x23e},'vue-unisass-component':{'token':'d4wQ7dzEjYPsgVbKnYei','projectId':0x153},'react-component':{'token':a1_0x41738f(0x79),'projectId':0x33f},'micro-app-ts':{'token':a1_0x41738f(0x89),'projectId':0x33e},'micro-app':{'token':a1_0x41738f(0x8a),'projectId':0x33d},'lib':{'token':a1_0x41738f(0x84),'projectId':0x33c}},exports[a1_0x41738f(0x82)]=os[a1_0x41738f(0x6d)]()+'\x5c'+exports[a1_0x41738f(0x68)],exports[a1_0x41738f(0x7f)]=()=>{const _0x102604=a1_0x41738f,_0x3e997a=JSON['parse'](fs[_0x102604(0x70)](path[_0x102604(0x76)](__dirname,_0x102604(0x7e)))['toString']());return _0x3e997a[_0x102604(0x85)]==='test'?API_HOST_TEST:_0x3e997a[_0x102604(0x87)]==='http'?API_HOST:API_HOST_HTTPS;};
package/src/publish.js ADDED
@@ -0,0 +1 @@
1
+ const a2_0x4b336d=a2_0xd96c;function a2_0xd96c(_0x4afbf5,_0x45552f){const _0x18aca3=a2_0x18ac();return a2_0xd96c=function(_0xd96cf4,_0x8056c8){_0xd96cf4=_0xd96cf4-0x145;let _0x14c61b=_0x18aca3[_0xd96cf4];return _0x14c61b;},a2_0xd96c(_0x4afbf5,_0x45552f);}(function(_0xd24231,_0x4645fe){const _0x22cfb1=a2_0xd96c,_0x5040ce=_0xd24231();while(!![]){try{const _0x7ce2b2=parseInt(_0x22cfb1(0x18a))/0x1*(-parseInt(_0x22cfb1(0x164))/0x2)+parseInt(_0x22cfb1(0x161))/0x3*(-parseInt(_0x22cfb1(0x145))/0x4)+parseInt(_0x22cfb1(0x183))/0x5+parseInt(_0x22cfb1(0x186))/0x6*(parseInt(_0x22cfb1(0x168))/0x7)+-parseInt(_0x22cfb1(0x17b))/0x8+-parseInt(_0x22cfb1(0x17a))/0x9+-parseInt(_0x22cfb1(0x174))/0xa*(-parseInt(_0x22cfb1(0x171))/0xb);if(_0x7ce2b2===_0x4645fe)break;else _0x5040ce['push'](_0x5040ce['shift']());}catch(_0x1a4458){_0x5040ce['push'](_0x5040ce['shift']());}}}(a2_0x18ac,0x73741));const path=require('path'),fs=require('fs'),os=require('os'),axios=require(a2_0x4b336d(0x155)),chalk=require(a2_0x4b336d(0x178)),readline=require(a2_0x4b336d(0x152)),io=readline[a2_0x4b336d(0x169)]({'input':process['stdin'],'output':process[a2_0x4b336d(0x146)]}),child_process=require(a2_0x4b336d(0x15f)),{getApiHost}=require(a2_0x4b336d(0x16d)),submitFun=function(_0x1899ba,_0x120379){const _0x1aded5=a2_0x4b336d;_0x120379[_0x1aded5(0x182)]=_0x1899ba||_0x1aded5(0x14b),axios['post'](getApiHost()+_0x1aded5(0x18d),_0x120379)['then'](_0x5a44f8=>{const _0x20fb41=_0x1aded5;console[_0x20fb41(0x14d)](chalk['green'](_0x5a44f8['data'][_0x20fb41(0x182)])),process[_0x20fb41(0x17d)](0x0);})[_0x1aded5(0x180)](_0x5e4926=>{const _0x1cd3dd=_0x1aded5;console[_0x1cd3dd(0x14d)](chalk['red'](_0x1cd3dd(0x165)+_0x5e4926[_0x1cd3dd(0x182)])),process['exit'](0x0);});};module[a2_0x4b336d(0x162)]=_0x5d0cdd=>{const _0x4a5250=a2_0x4b336d,_0x3b374c=path[_0x4a5250(0x15c)](__dirname,_0x4a5250(0x153));!fs[_0x4a5250(0x15b)](_0x3b374c)&&(console[_0x4a5250(0x14d)](chalk[_0x4a5250(0x167)](_0x4a5250(0x187))),process['exit'](0x0));const [_0x34ee80,_0x5ed922]=fs[_0x4a5250(0x150)](_0x3b374c)[_0x4a5250(0x177)]()[_0x4a5250(0x18c)]('/');console[_0x4a5250(0x14d)](_0x4a5250(0x16c)),axios['post'](getApiHost()+_0x4a5250(0x14e),{'username':_0x34ee80,'password':_0x5ed922})['then'](_0x1f2e56=>{const _0x17b54c=_0x4a5250;if(_0x1f2e56[_0x17b54c(0x156)]['status']){console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x163)](_0x17b54c(0x173)));const _0x134c68=path[_0x17b54c(0x148)]('./');console[_0x17b54c(0x14d)]('Please\x20wait,\x20build\x20...,'+_0x134c68);fs[_0x17b54c(0x15b)](_0x134c68+'/yarn.lock')?(console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x159)](_0x17b54c(0x16e)),_0x134c68),child_process[_0x17b54c(0x151)](_0x17b54c(0x157),{'cwd':_0x134c68})):(console[_0x17b54c(0x14d)](chalk['blue'](_0x17b54c(0x14a)),_0x134c68),child_process[_0x17b54c(0x151)](_0x17b54c(0x184),{'cwd':_0x134c68}));const _0x79452e=_0x134c68[_0x17b54c(0x176)]('/')!==-0x1?'/':'\x5c',_0x321da3=''+_0x134c68+_0x79452e+_0x17b54c(0x175),_0x1af6cf=''+_0x134c68+_0x79452e+_0x17b54c(0x16a)+_0x79452e+_0x17b54c(0x16f),_0x3a39d9=''+_0x134c68+_0x79452e+_0x17b54c(0x185),_0x343136=''+_0x134c68+_0x79452e+_0x17b54c(0x160),_0x1fbdaa=JSON[_0x17b54c(0x170)](fs['readFileSync'](path['join'](__dirname,_0x17b54c(0x181)))[_0x17b54c(0x177)]()),{version:_0x566d8f}=_0x1fbdaa,_0x4889ca={'username':_0x34ee80,'cmd_version':_0x566d8f,'hostname':os[_0x17b54c(0x154)](),'platform':os[_0x17b54c(0x172)]()};if(fs[_0x17b54c(0x15b)](_0x3a39d9)){if(fs[_0x17b54c(0x15b)](_0x1af6cf)){_0x4889ca[_0x17b54c(0x15e)]=_0x5d0cdd?_0x5d0cdd:0x0,_0x4889ca[_0x17b54c(0x17e)]=fs[_0x17b54c(0x150)](_0x1af6cf)[_0x17b54c(0x177)](),_0x4889ca[_0x17b54c(0x149)]={};const _0x49b6f2=fs[_0x17b54c(0x150)](_0x1af6cf)[_0x17b54c(0x177)](),_0x3032e6=_0x49b6f2['match'](/(window\[).+?(\.componentKey|.+]={)/img);if(_0x3032e6&&_0x3032e6[_0x17b54c(0x15a)]){const _0x44db83=_0x49b6f2[_0x17b54c(0x18b)](/componentKey.+([{,]info:\s{0,}{)/img);if(_0x44db83&&_0x44db83[_0x17b54c(0x15a)]){let _0x5343a2='{';const _0x4baa00=_0x49b6f2[_0x17b54c(0x18c)](_0x44db83[0x0])[0x1];for(let _0xcf997d=0x0;_0xcf997d<_0x4baa00[_0x17b54c(0x15a)];_0xcf997d++){_0x5343a2+=_0x4baa00[_0xcf997d];if(_0x4baa00[_0xcf997d]==='}')try{const _0x4a2877=new Function(_0x17b54c(0x17f)+_0x5343a2)();_0x4889ca['component_config_content']={..._0x4a2877,'defaultSetting':{}};}catch(_0x1a761f){}}}else console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x167)](_0x17b54c(0x158))),process[_0x17b54c(0x17d)](0x0);const _0x53f465=_0x49b6f2[_0x17b54c(0x18b)](/componentKey.+([{,]settings:\s{0,}{)/img);if(_0x53f465&&_0x53f465[_0x17b54c(0x15a)]){let _0x171e26='{';const _0x110fce=_0x49b6f2[_0x17b54c(0x18c)](_0x53f465[0x0])[0x1];for(let _0x38bcf2=0x0;_0x38bcf2<_0x110fce[_0x17b54c(0x15a)];_0x38bcf2++){_0x171e26+=_0x110fce[_0x38bcf2];if(_0x110fce[_0x38bcf2]==='}')try{_0x4889ca[_0x17b54c(0x149)]['defaultSetting']=new Function(_0x17b54c(0x17f)+_0x171e26)();}catch(_0x137a6e){}}_0x4889ca['component_config_content']=JSON['stringify'](_0x4889ca[_0x17b54c(0x149)]);}else console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x167)](_0x17b54c(0x188))),process[_0x17b54c(0x17d)](0x0);}else console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x167)](_0x17b54c(0x166))),process[_0x17b54c(0x17d)](0x0);fs[_0x17b54c(0x15b)](_0x321da3)?_0x4889ca['readme_content']=fs[_0x17b54c(0x150)](_0x321da3)[_0x17b54c(0x177)]():(console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x167)](_0x17b54c(0x189))),process[_0x17b54c(0x17d)](0x0));if(!fs['existsSync'](_0x343136))console[_0x17b54c(0x14d)](_0x17b54c(0x179)),process['exit'](0x0);else{const _0x57e615=fs[_0x17b54c(0x150)](_0x343136);_0x4889ca[_0x17b54c(0x16b)]=Buffer[_0x17b54c(0x14f)](_0x57e615)[_0x17b54c(0x177)]('base64');}_0x1fbdaa['pushMessage']==='no'?submitFun(null,_0x4889ca):io[_0x17b54c(0x17c)](_0x17b54c(0x14c),function(_0x1d3f32){submitFun(_0x1d3f32,_0x4889ca);});}else console[_0x17b54c(0x14d)](chalk[_0x17b54c(0x167)](_0x17b54c(0x147))),process[_0x17b54c(0x17d)](0x0);}else console[_0x17b54c(0x14d)](chalk['red']('Error:\x20组件发布失败!根目录缺少‘package.json’文件!')),process[_0x17b54c(0x17d)](0x0);}else console['log'](chalk[_0x17b54c(0x167)]('Error:\x20授权失败!')),process[_0x17b54c(0x17d)](0x0);})[_0x4a5250(0x180)](_0x2bcbd5=>{const _0x4bfc5c=_0x4a5250;console['log'](chalk[_0x4bfc5c(0x167)](_0x4bfc5c(0x15d)),_0x2bcbd5[_0x4bfc5c(0x182)]),process[_0x4bfc5c(0x17d)](0x0);});};function a2_0x18ac(){const _0x5e1071=['Sudo:\x20yarn\x20build:production','index.js','parse','160633pOSioo','platform','Auth:\x20授权成功!','1190YgEaNY','README.md','indexOf','toString','chalk','Error:\x20请在组件根目录为组件添加一个缩略图“thumbnail.png”文件!','2504979pCdtjQ','6917888QEGVbm','question','exit','package_content','return\x20','catch','../../../package.json','message','1311340FYgdiD','npm\x20run\x20build:production','package.json','3111282uBbRvU','Error:\x20请先登录!','Error:\x20暴露的配置信息中缺少“settings”!','Error:\x20请在组件根目录添加一个README.md说明文件!','41GIPfMb','match','split','/api/file/publish','346036YnkpTG','stdout','Error:\x20组件发布失败!根目录缺少‘dist/index.js’文件!','resolve','component_config_content','Sudo:\x20npm\x20build:production','no\x20message','请输入此次组件发布的信息,按Enter确认:','log','/api/auth','from','readFileSync','execSync','readline','../.auth','hostname','axios','data','yarn\x20build:production','Error:\x20暴露的配置信息中缺少“info”!','blue','length','existsSync','join','Error:\x20授权失败,未知错误!','package_version','child_process','thumbnail.png','21wGhhTu','exports','green','14490PoCyZd','Error:\x20组件发布失败!','Error:\x20请在组件入口文件中添加“window[props.componentKey]”以暴露组件的配置信息!','red','7TMYTCa','createInterface','dist','thumbnail_base64','Auth:\x20正在获取授权!','./config'];a2_0x18ac=function(){return _0x5e1071;};return a2_0x18ac();}
package/src/push.js ADDED
@@ -0,0 +1 @@
1
+ const a3_0xea877b=a3_0x4de3;(function(_0x149343,_0x1fa88e){const _0x1cdbe1=a3_0x4de3,_0x49b39f=_0x149343();while(!![]){try{const _0x415ce5=parseInt(_0x1cdbe1(0xf5))/0x1*(-parseInt(_0x1cdbe1(0xfe))/0x2)+parseInt(_0x1cdbe1(0x13f))/0x3*(parseInt(_0x1cdbe1(0x11a))/0x4)+parseInt(_0x1cdbe1(0x13c))/0x5*(-parseInt(_0x1cdbe1(0x102))/0x6)+-parseInt(_0x1cdbe1(0x11b))/0x7*(parseInt(_0x1cdbe1(0xf0))/0x8)+-parseInt(_0x1cdbe1(0x140))/0x9+-parseInt(_0x1cdbe1(0x106))/0xa*(-parseInt(_0x1cdbe1(0x110))/0xb)+parseInt(_0x1cdbe1(0xef))/0xc;if(_0x415ce5===_0x1fa88e)break;else _0x49b39f['push'](_0x49b39f['shift']());}catch(_0x40f646){_0x49b39f['push'](_0x49b39f['shift']());}}}(a3_0x4ddb,0xcc4f9));const fs=require('fs'),os=require('os'),path=require(a3_0xea877b(0x104)),child_process=require(a3_0xea877b(0xf3)),chalk=require(a3_0xea877b(0x121)),{CopyFolder,DeleteDirAllFile}=require(a3_0xea877b(0x12f)),{GIT_TEMP_JAVA,getApiHost}=require('./config'),axios=require('axios');function a3_0x4ddb(){const _0x594d83=['join','./tools','Error:\x20未知错误,未找到“dist”目录!','.html','execSync','log','javaGitBranch','writeFileSync','Sudo:\x20yarn\x20build:','\x5cdist','then','exit','/index.html','length','5LCmCYJ','yarn\x20build:','/start/src/main/resources/templates','108rwluKz','5677056AvKtOg','existsSync','data','forEach','../.auth','41776824RqanBe','184GMqugU','Auth:\x20正在获取授权!','javaGitName','child_process','message','18975rBshSO','Warning:\x20当前应用未安装依赖!即将执行依赖安装命令,请稍等!','Sudo:\x20git\x20checkout\x20','Error:\x20命令参数传递错误!',']\x20未配置“javaGitBranch”,将使用默认分支“master”!','exports','utf-8','Sudo:\x20git\x20add\x20.','\x5cjjb.config.js','122zOZOoz','Log:\x20应用依赖安装完成!','catch','includes','2403474DRKGKX','force','path','readFileSync','80420kqNxxf','mkdirSync','index','Auth:\x20授权成功!','yellow','blue','Sudo:\x20yarn','git\x20pull','\x22no\x20message\x22','Error:\x20“jjb.config.json”中缺少“javaGit”字段!','209aRtPco',']\x20请稍等!','unlinkSync','yarn','Sudo:\x20git\x20pull','git\x20clone\x20','lstatSync','Error:\x20请先登录!','git\x20checkout\x20','green','84196mkhKbJ','415821ioJyIU','Sudo:\x20git\x20commit\x20-m\x20','Sudo:\x20git\x20clone\x20','red','Log:\x20即将进行应用打包\x20[Env#','javaGit','chalk','/node_modules','git\x20push','status','Error:\x20授权失败!','appIdentifier','tmpdir','split','post','Error:\x20','git\x20add\x20.','toString','git\x20commit\x20-m\x20'];a3_0x4ddb=function(){return _0x594d83;};return a3_0x4ddb();}function a3_0x4de3(_0x2b23da,_0x258df1){const _0x4ddb46=a3_0x4ddb();return a3_0x4de3=function(_0x4de34f,_0x61a5d9){_0x4de34f=_0x4de34f-0xee;let _0x1d3220=_0x4ddb46[_0x4de34f];return _0x1d3220;},a3_0x4de3(_0x2b23da,_0x258df1);}function deleteFolderRecursive(_0x57050f){const _0x5552d8=a3_0xea877b;fs[_0x5552d8(0x141)](_0x57050f)&&(fs['readdirSync'](_0x57050f)[_0x5552d8(0x143)](_0x23b834=>{const _0xb97b9e=_0x5552d8,_0x20b253=path[_0xb97b9e(0x12e)](_0x57050f,_0x23b834);fs[_0xb97b9e(0x116)](_0x20b253)['isDirectory']()?deleteFolderRecursive(_0x20b253):fs[_0xb97b9e(0x112)](_0x20b253);}),fs['rmdirSync'](_0x57050f));}module[a3_0xea877b(0xfa)]=arguments=>{const _0x501239=a3_0xea877b,_0x26fa6d=path['join'](__dirname,_0x501239(0xee));!fs['existsSync'](_0x26fa6d)&&(console[_0x501239(0x133)](chalk[_0x501239(0x11e)](_0x501239(0x117))),process[_0x501239(0x139)](0x0));const _0x403e09=arguments[0x1],_0x1bc3aa=arguments[0x2]||_0x501239(0x10e),_0x46c396=arguments[0x3]?arguments[0x3][_0x501239(0x128)]('-'):[],_0x2a3567=path['resolve']('./'),_0x8c685c=_0x2a3567+_0x501239(0xfd),_0x517eaf=_0x2a3567+_0x501239(0x137),_0x2550bb=os[_0x501239(0x127)](),[_0x44ca95,_0x1752f4]=fs[_0x501239(0x105)](_0x26fa6d)[_0x501239(0x12c)]()[_0x501239(0x128)]('/');console['log'](_0x501239(0xf1)),axios[_0x501239(0x129)](getApiHost()+'/api/auth',{'username':_0x44ca95,'password':_0x1752f4})[_0x501239(0x138)](_0x224d27=>{const _0x48fcd8=_0x501239;if(_0x224d27[_0x48fcd8(0x142)][_0x48fcd8(0x124)]){console[_0x48fcd8(0x133)](chalk[_0x48fcd8(0x119)](_0x48fcd8(0x109)));if(!fs['existsSync'](_0x8c685c))console['log'](chalk['red']('Error:\x20当前应用中不存在“jjb.config.json”文件!')),process[_0x48fcd8(0x139)](0x0);else{const _0x49b286=require(_0x8c685c);!_0x49b286['javaGit']&&(console[_0x48fcd8(0x133)](chalk[_0x48fcd8(0x11e)](_0x48fcd8(0x10f))),process[_0x48fcd8(0x139)](0x0));!_0x49b286[_0x48fcd8(0xf2)]&&(console[_0x48fcd8(0x133)](chalk[_0x48fcd8(0x11e)]('Error:\x20“jjb.config.json”中缺少“javaGitName”字段!')),process[_0x48fcd8(0x139)](0x0));const _0x1e9375=_0x2550bb+'/'+GIT_TEMP_JAVA;fs[_0x48fcd8(0x141)](_0x1e9375)&&deleteFolderRecursive(_0x1e9375);fs[_0x48fcd8(0x107)](_0x1e9375);const _0x1039e2=_0x1e9375+'/'+_0x49b286[_0x48fcd8(0xf2)];fs[_0x48fcd8(0x141)](_0x1039e2)?_0x46c396['includes'](_0x48fcd8(0x103))?DeleteDirAllFile(_0x1039e2,()=>{const _0x3a4a8f=_0x48fcd8;console['log'](chalk[_0x3a4a8f(0x10b)](_0x3a4a8f(0x11d)+_0x49b286[_0x3a4a8f(0x120)]),_0x1e9375),child_process[_0x3a4a8f(0x132)](_0x3a4a8f(0x115)+_0x49b286[_0x3a4a8f(0x120)],{'cwd':_0x1e9375});}):(console[_0x48fcd8(0x133)](chalk['blue'](_0x48fcd8(0x11d)+_0x49b286['javaGit']),_0x1e9375),child_process[_0x48fcd8(0x132)](_0x48fcd8(0x115)+_0x49b286[_0x48fcd8(0x120)],{'cwd':_0x1e9375})):(console[_0x48fcd8(0x133)](chalk[_0x48fcd8(0x10b)](_0x48fcd8(0x11d)+_0x49b286[_0x48fcd8(0x120)]),_0x1e9375),child_process['execSync'](_0x48fcd8(0x115)+_0x49b286[_0x48fcd8(0x120)],{'cwd':_0x1e9375})),_0x1c8e76(_0x1e9375,_0x49b286);}}else console['log'](chalk[_0x48fcd8(0x11e)](_0x48fcd8(0x125))),process['exit'](0x0);})[_0x501239(0x100)](_0x13cb0c=>{const _0x298fa6=_0x501239;console[_0x298fa6(0x133)](chalk[_0x298fa6(0x11e)]('Error:\x20授权失败,未知错误!'),_0x13cb0c['message']),process[_0x298fa6(0x139)](0x0);});arguments[_0x501239(0x13b)]<0x2&&(console[_0x501239(0x133)](chalk[_0x501239(0x11e)](_0x501239(0xf8))),process[_0x501239(0x139)](0x0));function _0x1c8e76(_0x43a78d,_0x1b86ad){const _0x2cea73=_0x501239,_0xda0f5b=_0x1b86ad['environment'][_0x403e09],_0x11a398=_0x43a78d+'/'+_0x1b86ad['javaGitName'];!_0xda0f5b[_0x2cea73(0x134)]&&console[_0x2cea73(0x133)](chalk[_0x2cea73(0x10a)]('Warning:\x20当前打包\x20[Env#'+_0x403e09+_0x2cea73(0xf9)));console[_0x2cea73(0x133)](chalk[_0x2cea73(0x10b)](_0x2cea73(0x114)),_0x11a398),child_process[_0x2cea73(0x132)](_0x2cea73(0x10d),{'cwd':_0x11a398});!fs[_0x2cea73(0x141)](_0x2a3567+_0x2cea73(0x122))&&(console[_0x2cea73(0x133)](chalk[_0x2cea73(0x10a)](_0x2cea73(0xf6))),console[_0x2cea73(0x133)](chalk[_0x2cea73(0x10b)](_0x2cea73(0x10c)),_0x2a3567),child_process[_0x2cea73(0x132)](_0x2cea73(0x113),{'cwd':_0x2a3567}),console[_0x2cea73(0x133)](chalk[_0x2cea73(0x119)](_0x2cea73(0xff))));console[_0x2cea73(0x133)](_0x2cea73(0x11f)+_0x403e09+_0x2cea73(0x111)),console[_0x2cea73(0x133)](chalk['blue'](_0x2cea73(0x136)+_0x403e09),_0x2a3567),child_process[_0x2cea73(0x132)](_0x2cea73(0x13d)+_0x403e09,{'cwd':_0x2a3567,'maxBuffer':0x3b9aca00}),console[_0x2cea73(0x133)](chalk[_0x2cea73(0x119)]('Log:\x20应用打包完成!'));if(fs['existsSync'](_0x517eaf)){const _0x531460=_0x1b86ad[_0x2cea73(0x126)],_0x44ba7c=fs[_0x2cea73(0x105)](_0x517eaf+_0x2cea73(0x13a));_0x46c396[_0x2cea73(0x101)](_0x2cea73(0x108))?fs['writeFileSync'](_0x517eaf+_0x2cea73(0x13a),_0x44ba7c,'utf-8'):fs[_0x2cea73(0x135)](_0x517eaf+'/'+_0x531460+_0x2cea73(0x131),_0x44ba7c,'utf-8');const _0x5964e8=_0x11a398+_0x2cea73(0x13e);!fs[_0x2cea73(0x141)](_0x5964e8)&&fs['mkdirSync'](_0x5964e8);const _0x20299c=_0xda0f5b[_0x2cea73(0x134)]?_0xda0f5b['javaGitBranch']:'master';console[_0x2cea73(0x133)](chalk[_0x2cea73(0x10b)](_0x2cea73(0xf7)+_0x20299c),_0x11a398),child_process[_0x2cea73(0x132)](_0x2cea73(0x118)+_0x20299c,{'cwd':_0x11a398});const _0x1ddb44=_0x5964e8+'/'+_0x1b86ad[_0x2cea73(0x126)];DeleteDirAllFile(_0x1ddb44,()=>{const _0x127026=_0x2cea73;fs[_0x127026(0x107)](_0x1ddb44),fs[_0x127026(0x135)](_0x1ddb44+_0x127026(0x131),_0x44ba7c,_0x127026(0xfb)),CopyFolder(_0x517eaf+'\x5c'+_0x1b86ad[_0x127026(0x126)],_0x1ddb44,()=>{setTimeout(()=>{const _0x1784c7=a3_0x4de3;console['log'](chalk[_0x1784c7(0x10b)](_0x1784c7(0x114)),_0x11a398),child_process['execSync'](_0x1784c7(0x10d),{'cwd':_0x11a398}),console[_0x1784c7(0x133)](chalk[_0x1784c7(0x10b)](_0x1784c7(0xfc)),_0x11a398),child_process[_0x1784c7(0x132)](_0x1784c7(0x12b),{'cwd':_0x11a398});try{console[_0x1784c7(0x133)](chalk[_0x1784c7(0x10b)](_0x1784c7(0x11c)+_0x1bc3aa+'\x20--no-verify'),_0x11a398),child_process[_0x1784c7(0x132)](_0x1784c7(0x12d)+_0x1bc3aa+'\x20--no-verify',{'cwd':_0x11a398});}catch(_0x1a41a1){console[_0x1784c7(0x133)](chalk[_0x1784c7(0x11e)](_0x1784c7(0x12a)+_0x1a41a1[_0x1784c7(0xf4)]));}console[_0x1784c7(0x133)](chalk['blue']('Sudo:\x20git\x20push'),_0x11a398),child_process[_0x1784c7(0x132)](_0x1784c7(0x123),{'cwd':_0x11a398});},0x3e8);});});}else console[_0x2cea73(0x133)](chalk['red'](_0x2cea73(0x130))),process[_0x2cea73(0x139)](0x0);}};
package/src/rm-rf.js ADDED
@@ -0,0 +1 @@
1
+ function a4_0x382f(){const _0x902f72=['1187755QztdCJ','1997739jILpsX','删除文件夹:','594284YWvlPZ','正在计算项目数,请稍等...','删除完成。','question','clear','20692719BRpgxw','exit','960533DphWSk','readdirSync','createInterface','删除文件:','trim','568310StkmXB','7613034zGgFHn','stdout','existsSync','删除异常:','path','length','rmdirSync','取消删除。','stdin','log','exports','72IqfVKp','无效操作。','isDirectory','readline','3gDyvGs','是否确认删除?删除后不可恢复![y/n]:'];a4_0x382f=function(){return _0x902f72;};return a4_0x382f();}const a4_0x4ef995=a4_0x415d;(function(_0x28b445,_0x50af4f){const _0x45e344=a4_0x415d,_0x4f5b21=_0x28b445();while(!![]){try{const _0x5988be=-parseInt(_0x45e344(0xec))/0x1*(-parseInt(_0x45e344(0xfd))/0x2)+-parseInt(_0x45e344(0xef))/0x3+parseInt(_0x45e344(0xf1))/0x4+parseInt(_0x45e344(0xee))/0x5+parseInt(_0x45e344(0xfe))/0x6+parseInt(_0x45e344(0xf8))/0x7*(parseInt(_0x45e344(0xe8))/0x8)+-parseInt(_0x45e344(0xf6))/0x9;if(_0x5988be===_0x50af4f)break;else _0x4f5b21['push'](_0x4f5b21['shift']());}catch(_0x582a84){_0x4f5b21['push'](_0x4f5b21['shift']());}}}(a4_0x382f,0xbdc4d));function a4_0x415d(_0x269434,_0x13f965){const _0x382fbd=a4_0x382f();return a4_0x415d=function(_0x415de9,_0x4cfd0b){_0x415de9=_0x415de9-0xe4;let _0x1faf43=_0x382fbd[_0x415de9];return _0x1faf43;},a4_0x415d(_0x269434,_0x13f965);}const fs=require('fs'),path=require(a4_0x4ef995(0x102)),readline=require(a4_0x4ef995(0xeb)),io=readline[a4_0x4ef995(0xfa)]({'input':process[a4_0x4ef995(0xe5)],'output':process[a4_0x4ef995(0xff)]});module[a4_0x4ef995(0xe7)]=function(){const _0x17b3c4=a4_0x4ef995,_0xd39e60=path['resolve']('./');io[_0x17b3c4(0xf4)](_0x17b3c4(0xed),function(_0xe488e6){const _0x1830f3=_0x17b3c4;if(_0xe488e6[_0x1830f3(0xfc)]()==='y')console[_0x1830f3(0xe6)](_0x1830f3(0xf2)),setTimeout(()=>{setTimeout(()=>{const _0x2c409b=a4_0x415d;console[_0x2c409b(0xf5)](),exec(_0xd39e60),setTimeout(()=>{const _0x46a79=_0x2c409b;console['log'](_0x46a79(0xf3)),console['clear'](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0xe488e6['trim']()==='n'?(console[_0x1830f3(0xe6)](_0x1830f3(0xe4)),process[_0x1830f3(0xf7)](0x0)):(console[_0x1830f3(0xe6)](_0x1830f3(0xe9)),process[_0x1830f3(0xf7)](0x0));});};function exec(_0x1315e0){const _0x2eb8bd=a4_0x4ef995;if(fs[_0x2eb8bd(0x100)](_0x1315e0)){const _0xd35f80=fs[_0x2eb8bd(0xf9)](_0x1315e0);for(let _0x214e05=0x0;_0x214e05<_0xd35f80[_0x2eb8bd(0x103)];_0x214e05++){const _0x37cc6f=_0xd35f80[_0x214e05],_0x10c68c=_0x1315e0+'/'+_0x37cc6f;try{fs['statSync'](_0x10c68c)[_0x2eb8bd(0xea)]()?(exec(_0x10c68c),fs[_0x2eb8bd(0x104)](_0x10c68c,{'recursive':!![]}),console[_0x2eb8bd(0xe6)](_0x2eb8bd(0xf0)+_0x10c68c)):(fs['unlinkSync'](_0x10c68c),console[_0x2eb8bd(0xe6)](_0x2eb8bd(0xfb)+_0x10c68c));}catch(_0x1908b9){console[_0x2eb8bd(0xe6)](_0x2eb8bd(0x101)+_0x10c68c);}}}}
package/src/tools.js ADDED
@@ -0,0 +1 @@
1
+ const a5_0x168a20=a5_0x55b2;function a5_0x55b2(_0x7eec07,_0x232212){const _0x2b1e73=a5_0x2b1e();return a5_0x55b2=function(_0x55b296,_0x21397c){_0x55b296=_0x55b296-0x187;let _0x2edc08=_0x2b1e73[_0x55b296];return _0x2edc08;},a5_0x55b2(_0x7eec07,_0x232212);}(function(_0x1dbc85,_0x45c840){const _0x2c545d=a5_0x55b2,_0x4d702c=_0x1dbc85();while(!![]){try{const _0x3e7abb=-parseInt(_0x2c545d(0x1af))/0x1+-parseInt(_0x2c545d(0x1dd))/0x2*(parseInt(_0x2c545d(0x1ac))/0x3)+-parseInt(_0x2c545d(0x1c5))/0x4*(parseInt(_0x2c545d(0x1bc))/0x5)+-parseInt(_0x2c545d(0x1bf))/0x6*(parseInt(_0x2c545d(0x1ba))/0x7)+parseInt(_0x2c545d(0x194))/0x8*(-parseInt(_0x2c545d(0x19f))/0x9)+-parseInt(_0x2c545d(0x1b7))/0xa+-parseInt(_0x2c545d(0x1be))/0xb*(-parseInt(_0x2c545d(0x1cf))/0xc);if(_0x3e7abb===_0x45c840)break;else _0x4d702c['push'](_0x4d702c['shift']());}catch(_0x4a6562){_0x4d702c['push'](_0x4d702c['shift']());}}}(a5_0x2b1e,0x7486e));const fs=require('fs'),os=require('os'),path=require('path'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require('./config');exports['f_rm_rf']=function(_0x3a05ea){const _0x192830=a5_0x55b2;if(fs['existsSync'](_0x3a05ea)){const _0x58980d=fs[_0x192830(0x1c3)](_0x3a05ea);for(let _0x5ce90a=0x0;_0x5ce90a<_0x58980d[_0x192830(0x1c4)];_0x5ce90a++){const _0x142afb=_0x58980d[_0x5ce90a],_0x53e3a0=_0x3a05ea+'/'+_0x142afb;fs[_0x192830(0x1c6)](_0x53e3a0)[_0x192830(0x1bb)]()?(exports[_0x192830(0x1c1)](_0x53e3a0),fs[_0x192830(0x1c8)](_0x53e3a0)):fs[_0x192830(0x1a9)](_0x53e3a0);}}},exports['f_pull_git_repository']=function(_0x5617f5=[]){const _0x4247af=a5_0x55b2;return _0x5617f5[_0x4247af(0x1a7)](_0x390e34=>{const _0x11a610=_0x4247af,_0x533037=CLOUD_PROJECT[_0x390e34['name']]||undefined,_0x4751c6=os[_0x11a610(0x1d4)]();return{'path':_0x4751c6+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x390e34[_0x11a610(0x1b1)]+_0x11a610(0x18c),'compress':_0x4751c6+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x390e34[_0x11a610(0x1b1)]+_0x11a610(0x1c7),'repository':GIT_HOST+_0x11a610(0x1d3)+_0x533037[_0x11a610(0x18f)]+_0x11a610(0x1b4)+_0x533037[_0x11a610(0x1b9)]+_0x11a610(0x1db)};});},exports[a5_0x168a20(0x19a)]=function(_0x31cba5){const _0x4a198c=a5_0x168a20;return fs[_0x4a198c(0x1ab)](_0x31cba5+_0x4a198c(0x1b6));},exports['f_scan_jjb_config_json_rules']=function(_0x17f00e){const _0x5a5f23=a5_0x168a20;let _0x4f21ae={};try{_0x4f21ae=JSON[_0x5a5f23(0x19c)](fs[_0x5a5f23(0x1b0)](_0x17f00e+'\x5cjjb.config.json')[_0x5a5f23(0x199)]());}catch(_0x24bdb6){console[_0x5a5f23(0x1d8)](_0x5a5f23(0x1b3)),process['exit'](0x0);}!(_0x5a5f23(0x1ce)in _0x4f21ae)&&(console[_0x5a5f23(0x1d8)]('【Error】:[jjb.config.json]文件配置无效,需要projectType属性。'),process[_0x5a5f23(0x1ad)](0x0));!(_0x5a5f23(0x1ca)in _0x4f21ae)&&(console[_0x5a5f23(0x1d8)]('【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。'),process[_0x5a5f23(0x1ad)](0x0));!('installResources'in _0x4f21ae)&&(console[_0x5a5f23(0x1d8)]('【Error】:[jjb.config.json]文件配置无效,需要installResources属性。'),process[_0x5a5f23(0x1ad)](0x0));typeof _0x4f21ae['projectType']!==_0x5a5f23(0x19b)&&(console['log']('【Error】:[jjb.config.json.projectType]类型是一个string。'),process[_0x5a5f23(0x1ad)](0x0));!['multi',_0x5a5f23(0x1a4),'uniapp',_0x5a5f23(0x196)][_0x5a5f23(0x198)](_0x4f21ae['projectType'])&&(console['log'](_0x5a5f23(0x18d)),process[_0x5a5f23(0x1ad)](0x0));typeof _0x4f21ae[_0x5a5f23(0x1ca)]!==_0x5a5f23(0x19b)&&(console[_0x5a5f23(0x1d8)](_0x5a5f23(0x1d7)),process[_0x5a5f23(0x1ad)](0x0));![_0x5a5f23(0x1a2),_0x5a5f23(0x188)]['includes'](_0x4f21ae[_0x5a5f23(0x1ca)])&&(console['log'](_0x5a5f23(0x1aa)),process[_0x5a5f23(0x1ad)](0x0));!Array['isArray'](_0x4f21ae[_0x5a5f23(0x189)])&&(console[_0x5a5f23(0x1d8)](_0x5a5f23(0x1a3)),process['exit'](0x0));_0x4f21ae['installResources']['length']===0x0&&(console[_0x5a5f23(0x1d8)](_0x5a5f23(0x19d)),process['exit'](0x0));const _0x500d0d=exports[_0x5a5f23(0x1a1)](_0x4f21ae[_0x5a5f23(0x189)]);return _0x500d0d[_0x5a5f23(0x1a7)](_0x18782d=>_0x18782d[_0x5a5f23(0x1b1)])['filter'](_0x218df8=>![_0x5a5f23(0x197),_0x5a5f23(0x192),_0x5a5f23(0x1cb),'jjb-common-decorator',_0x5a5f23(0x1d6),'vue-unisass-component'][_0x5a5f23(0x198)](_0x218df8))['length']!==0x0&&(console[_0x5a5f23(0x1d8)](_0x5a5f23(0x1bd)),process[_0x5a5f23(0x1ad)](0x0)),_0x4f21ae[_0x5a5f23(0x189)]=_0x500d0d,_0x4f21ae;},exports[a5_0x168a20(0x18e)]=function(_0x205b2e,_0x149142,_0x34a9a6){const _0x81b91=a5_0x168a20;fs[_0x81b91(0x1da)](_0x205b2e+'\x5cpackage.json',_0x81b91(0x18a)+_0x149142+'\x22,\x22version\x22:\x22'+_0x34a9a6+_0x81b91(0x1d2));},exports[a5_0x168a20(0x1a1)]=function(_0x3ca8b1=[]){const _0x27d18c=a5_0x168a20,_0x3f5040=[];return Array[_0x27d18c(0x1a0)](_0x3ca8b1)&&_0x3ca8b1[_0x27d18c(0x1d0)](_0x4975b6=>{const _0xc48a02=_0x27d18c;if(Array[_0xc48a02(0x1a0)](_0x4975b6)){const [_0x566da1,_0x3cb474=[]]=_0x4975b6;_0x3f5040[_0xc48a02(0x1a8)]({'name':_0x566da1,'importList':_0x3cb474});}else _0x3f5040[_0xc48a02(0x1a8)]({'name':_0x4975b6,'importList':[]});}),_0x3f5040;},exports[a5_0x168a20(0x1c0)]=function(_0x39d06f,_0x28825a,_0x4fb1a){const _0x4f429d=a5_0x168a20,_0x2fe3f2=JSON[_0x4f429d(0x19c)](fs[_0x4f429d(0x1b0)](_0x39d06f)['toString']());_0x2fe3f2[_0x4f429d(0x1d9)][_0x28825a]=_0x4fb1a,fs['writeFileSync'](_0x39d06f,JSON[_0x4f429d(0x1cd)](_0x2fe3f2,null,0x2));},exports[a5_0x168a20(0x1b5)]=function(_0x43f538,_0x26ffe){const _0x3db4e6=a5_0x168a20;fs[_0x3db4e6(0x1c3)](_0x43f538)['forEach'](_0x3ba17a=>{const _0xe3d42a=_0x3db4e6,_0x4cba45=_0x43f538+'\x5c'+_0x3ba17a,_0x4a2163=_0x26ffe+'\x5c'+_0x3ba17a;fs[_0xe3d42a(0x1c6)](_0x4cba45)[_0xe3d42a(0x1bb)]()?(fs['mkdirSync'](_0x4a2163),exports[_0xe3d42a(0x1b5)](_0x4cba45,_0x4a2163)):fs['writeFileSync'](_0x4a2163,fs[_0xe3d42a(0x1b0)](_0x4cba45)[_0xe3d42a(0x199)]());});},exports[a5_0x168a20(0x1cc)]=function(_0x5b5a60=[],_0x42cd8d){const _0x31b02a=a5_0x168a20;_0x5b5a60[_0x31b02a(0x1d0)](_0x7b634e=>{const _0x321040=_0x31b02a,_0x2a285a=_0x42cd8d+_0x7b634e['path'];if(fs[_0x321040(0x1ab)](_0x2a285a)){let _0x34f83a=fs[_0x321040(0x1b0)](_0x2a285a)[_0x321040(0x199)]();_0x7b634e[_0x321040(0x19e)][_0x321040(0x1d0)](_0x153220=>{const _0x2941d3=_0x321040;_0x34f83a=_0x34f83a[_0x2941d3(0x19e)](_0x153220[0x0],_0x153220[0x1]);}),fs[_0x321040(0x1da)](_0x2a285a,_0x34f83a);}});},exports[a5_0x168a20(0x1d1)]=(_0x4f542b,_0x5b1487)=>{const _0x2ae823=a5_0x168a20;let _0x34b305=[];const _0x59f2ef=this;fs['existsSync'](_0x4f542b)?(_0x34b305=fs[_0x2ae823(0x1c3)](_0x4f542b),_0x34b305[_0x2ae823(0x1d0)](function(_0x483faf,_0x3a8d7f){const _0x293d67=_0x2ae823;let _0x65a332=_0x4f542b+'/'+_0x483faf;fs[_0x293d67(0x1c6)](_0x65a332)[_0x293d67(0x1bb)]()?_0x59f2ef[_0x293d67(0x1d1)](_0x65a332):fs[_0x293d67(0x1a9)](_0x65a332);}),fs[_0x2ae823(0x1c8)](_0x4f542b),_0x5b1487&&_0x5b1487()):_0x5b1487&&_0x5b1487();},exports[a5_0x168a20(0x195)]=(_0x3877c1,_0x3414da,_0xdce585)=>{const _0x491811=a5_0x168a20,_0x7e75ad=this;fs[_0x491811(0x18b)](_0x3877c1,function(_0x1a8b4d,_0x14b9b2){const _0x5c277c=_0x491811;let _0x31b671=0x0;const _0x4e668e=function(){const _0x490726=a5_0x55b2;++_0x31b671===_0x14b9b2[_0x490726(0x1c4)]&&_0xdce585&&_0xdce585();};if(_0x1a8b4d){_0x4e668e();return;}_0x14b9b2[_0x5c277c(0x1d0)](function(_0x454aee){const _0x2b4f54=_0x5c277c,_0x2afe71=path[_0x2b4f54(0x1c2)](_0x3877c1,_0x454aee),_0xc1a4f7=path[_0x2b4f54(0x1c2)](_0x3414da,_0x454aee);fs[_0x2b4f54(0x187)](_0x2afe71,function(_0x3c83e2,_0x5ae8cb){const _0xa5e679=_0x2b4f54;_0x5ae8cb[_0xa5e679(0x1bb)]()?fs[_0xa5e679(0x1b8)](_0xc1a4f7,function(_0x5cfe3b){const _0x37ea0a=_0xa5e679;if(_0x5cfe3b){console['log'](_0x5cfe3b);return;}_0x7e75ad[_0x37ea0a(0x195)](_0x2afe71,_0xc1a4f7,_0x4e668e);}):_0x7e75ad[_0xa5e679(0x1d5)](_0x2afe71,_0xc1a4f7,_0x4e668e);});}),_0x14b9b2[_0x5c277c(0x1c4)]===0x0&&_0xdce585&&_0xdce585();});},exports['CopyFile']=(_0x2c723d,_0x1a0d90,_0x3b3e77)=>{const _0x3a0af7=a5_0x168a20,_0x4b4211=fs[_0x3a0af7(0x1b2)](_0x2c723d);_0x4b4211['on'](_0x3a0af7(0x1a5),function(_0x17a62b){const _0x13f783=_0x3a0af7;_0x17a62b&&console[_0x13f783(0x1d8)](_0x13f783(0x1c9),_0x2c723d),_0x3b3e77&&_0x3b3e77(_0x17a62b);});const _0x52c8d7=fs['createWriteStream'](_0x1a0d90);_0x52c8d7['on']('error',function(_0x21ef22){const _0x1ee662=_0x3a0af7;_0x21ef22&&console[_0x1ee662(0x1d8)](_0x1ee662(0x191),_0x1a0d90),_0x3b3e77&&_0x3b3e77(_0x21ef22);}),_0x52c8d7['on'](_0x3a0af7(0x193),function(_0x574f4e){_0x3b3e77&&_0x3b3e77(_0x574f4e);}),_0x4b4211[_0x3a0af7(0x1dc)](_0x52c8d7);},exports[a5_0x168a20(0x190)]=(_0x5b7281,_0x593c1c)=>{const _0x466654=a5_0x168a20,_0x5100bb=this,_0x4decf3=fs[_0x466654(0x1c3)](_0x5b7281);_0x4decf3[_0x466654(0x1d0)](_0x47df32=>{const _0x47d6ee=_0x466654,_0x5a09e8=_0x5b7281+'/'+_0x47df32,_0x6943b3=fs[_0x47d6ee(0x1c6)](_0x5a09e8);_0x6943b3['isDirectory']()?_0x5100bb['DeepScanner'](_0x5a09e8,_0x593c1c):_0x593c1c[_0x47d6ee(0x1a8)](_0x5a09e8);});},exports[a5_0x168a20(0x1ae)]=(_0x30425f,_0x4a34f6)=>{return new Promise(_0x39bbaf=>{const _0x4477e1=a5_0x55b2,_0x17374b=[];_0x4a34f6[_0x4477e1(0x1d0)]((_0x3382fd,_0x2831f)=>{const _0x195b68=_0x4477e1,_0x3bf3a8=_0x30425f+'/'+_0x17374b[_0x195b68(0x1c2)]('/')+'/'+_0x3382fd;try{const _0x1b553c=fs['statSync'](_0x3bf3a8);_0x1b553c[_0x195b68(0x1bb)]()?_0x2831f===_0x4a34f6['length']-0x1&&_0x39bbaf():(fs[_0x195b68(0x1a6)](_0x3bf3a8),_0x2831f===_0x4a34f6['length']-0x1&&_0x39bbaf());}catch(_0x11ec57){fs[_0x195b68(0x1a6)](_0x3bf3a8),_0x2831f===_0x4a34f6[_0x195b68(0x1c4)]-0x1&&_0x39bbaf();}_0x17374b[_0x195b68(0x1a8)](_0x3382fd);});});};function a5_0x2b1e(){const _0x580aa2=['【Error】:[jjb.config.json.installResources]无资源。','replace','36315ChgWmE','isArray','f_resolve_install_resources','node_modules','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','spa','error','mkdirSync','map','push','unlinkSync','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','existsSync','3NCSdMt','exit','CreatePaths','937070IYaLmM','readFileSync','name','createReadStream','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','/repository/archive.zip?private_token=','f_file_copy','\x5cjjb.config.json','1013340fVNYaR','mkdir','token','14YTtrNb','isDirectory','35NGBOnh','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','11hDlDKl','2416938uxpmsU','f_update_project_package_json','f_rm_rf','join','readdirSync','length','166172YgOGeX','statSync','_zip','rmdirSync','read\x20error','installTarget','jjb-common-lib','f_content_replace','stringify','projectType','52303716LbDBZO','forEach','DeleteDirAllFile','\x22,\x22main\x22:\x20\x22index.js\x22}','/api/v4/projects/','tmpdir','CopyFile','react-admin-component','【Error】:[jjb.config.json.installTarget]类型是一个string。','log','dependencies','writeFileSync','&ref=master','pipe','1887066dMxQIN','stat','src','installResources','{\x22name\x22:\x22','readdir','.zip','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','f_create_package_json','projectId','DeepScanner','write\x20error','jjb-dva-runtime','close','1592xxRJeM','CopyFolder','micro-spa','jjb-common','includes','toString','f_scan_jjb_config_json','string','parse'];a5_0x2b1e=function(){return _0x580aa2;};return a5_0x2b1e();}
package/src/version.js ADDED
@@ -0,0 +1 @@
1
+ function a6_0x1c8a(_0x2566f3,_0x262ab0){const _0x369cb7=a6_0x369c();return a6_0x1c8a=function(_0x1c8ac2,_0x252c6e){_0x1c8ac2=_0x1c8ac2-0x72;let _0x1444ba=_0x369cb7[_0x1c8ac2];return _0x1444ba;},a6_0x1c8a(_0x2566f3,_0x262ab0);}const a6_0x123a7c=a6_0x1c8a;function a6_0x369c(){const _0x5c00b5=['post','log','/api/file/version','exit','parse','网络异常。','6rcMBMt','4540UQBWwO','data','8008080kpcUSy','75878tTNCbn','existsSync','then','1236924CPPyWD','28gcimhN','548147dzzdhR','catch','\x5cpackage.json','./config','917945nPKIFC','查询失败!根目录缺少‘package.json’文件,无法完成查询。','toString','8217993XgmAVm','2199375OXHGFY','6qOnJAE'];a6_0x369c=function(){return _0x5c00b5;};return a6_0x369c();}(function(_0x5517f3,_0x5d7f2b){const _0x29c589=a6_0x1c8a,_0x343f18=_0x5517f3();while(!![]){try{const _0x400b4f=parseInt(_0x29c589(0x7e))/0x1*(-parseInt(_0x29c589(0x75))/0x2)+parseInt(_0x29c589(0x86))/0x3+parseInt(_0x29c589(0x7d))/0x4*(-parseInt(_0x29c589(0x82))/0x5)+-parseInt(_0x29c589(0x87))/0x6*(parseInt(_0x29c589(0x85))/0x7)+parseInt(_0x29c589(0x78))/0x8+parseInt(_0x29c589(0x7c))/0x9+parseInt(_0x29c589(0x76))/0xa*(parseInt(_0x29c589(0x79))/0xb);if(_0x400b4f===_0x5d7f2b)break;else _0x343f18['push'](_0x343f18['shift']());}catch(_0x4f3216){_0x343f18['push'](_0x343f18['shift']());}}}(a6_0x369c,0xdba74));const path=require('path'),fs=require('fs'),axios=require('axios'),{getApiHost}=require(a6_0x123a7c(0x81));module['exports']=()=>{const _0x5cdb1e=a6_0x123a7c,_0x16efd8=path['resolve']('./'),_0x4f3501=_0x16efd8+_0x5cdb1e(0x80);if(fs[_0x5cdb1e(0x7a)](_0x4f3501)){const _0x39e8a7=JSON[_0x5cdb1e(0x73)](fs['readFileSync'](_0x4f3501)[_0x5cdb1e(0x84)]()),{name:_0x4e3f8b}=_0x39e8a7;axios[_0x5cdb1e(0x88)](getApiHost()+_0x5cdb1e(0x8a),{'package_name':_0x4e3f8b})[_0x5cdb1e(0x7b)](_0x5374eb=>{const _0x2684af=_0x5cdb1e;_0x5374eb[_0x2684af(0x77)]['status']?console['log'](_0x5374eb[_0x2684af(0x77)][_0x2684af(0x77)]):console[_0x2684af(0x89)](_0x5374eb[_0x2684af(0x77)]['message']),process['exit'](0x0);})[_0x5cdb1e(0x7f)](()=>{const _0x192cf1=_0x5cdb1e;console[_0x192cf1(0x89)](_0x192cf1(0x74)),process[_0x192cf1(0x72)](0x0);});}else console[_0x5cdb1e(0x89)](_0x5cdb1e(0x83)),process['exit'](0x0);};
@@ -1 +0,0 @@
1
- const a0_0x5f24c5=a0_0x1f0c;(function(_0x5f5943,_0x2c818f){const _0x1c4a8b=a0_0x1f0c,_0x4f8d96=_0x5f5943();while(!![]){try{const _0x8b8cd8=-parseInt(_0x1c4a8b(0x1a9))/0x1+-parseInt(_0x1c4a8b(0x1b2))/0x2*(-parseInt(_0x1c4a8b(0x1a7))/0x3)+-parseInt(_0x1c4a8b(0x1a0))/0x4+-parseInt(_0x1c4a8b(0x19f))/0x5*(parseInt(_0x1c4a8b(0x1b0))/0x6)+-parseInt(_0x1c4a8b(0x19c))/0x7+parseInt(_0x1c4a8b(0x1a8))/0x8*(parseInt(_0x1c4a8b(0x1ae))/0x9)+parseInt(_0x1c4a8b(0x19d))/0xa;if(_0x8b8cd8===_0x2c818f)break;else _0x4f8d96['push'](_0x4f8d96['shift']());}catch(_0x5f744b){_0x4f8d96['push'](_0x4f8d96['shift']());}}}(a0_0xc94e,0x7a882));function a0_0xc94e(){const _0x52d360=['red','Auth:\x20登录失败!','36UvoeRC','exports','54oOhwtK','message','612WwQIdE','existsSync','status','Auth:\x20授权登录!','6982213xZlELq','24602450WrPayu','../cmd.install/config','456615NsTGXY','630236sfgMWz','../../../.auth','log','writeFileSync','Auth:\x20','unlinkSync','chalk','5991rcVmOb','719072qXPJVL','952048CXmNOk','green','path'];a0_0xc94e=function(){return _0x52d360;};return a0_0xc94e();}function a0_0x1f0c(_0x572527,_0x5193c7){const _0xc94eee=a0_0xc94e();return a0_0x1f0c=function(_0x1f0c7f,_0x179a6f){_0x1f0c7f=_0x1f0c7f-0x19a;let _0x42db3d=_0xc94eee[_0x1f0c7f];return _0x42db3d;},a0_0x1f0c(_0x572527,_0x5193c7);}const axios=require('axios'),chalk=require(a0_0x5f24c5(0x1a6)),fs=require('fs'),path=require(a0_0x5f24c5(0x1ab)),{getApiHost}=require(a0_0x5f24c5(0x19e));module[a0_0x5f24c5(0x1af)]=_0x5a74c4=>{const _0x558bd1=a0_0x5f24c5;console['log'](_0x558bd1(0x19b));const [_0x31b17f,_0x66f396]=_0x5a74c4;axios['post'](getApiHost()+'/api/auth',{'username':_0x31b17f,'password':_0x66f396})['then'](_0xedb43f=>{const _0xef9305=_0x558bd1,_0xd4dd4b=path['join'](__dirname,_0xef9305(0x1a1));_0xedb43f['data'][_0xef9305(0x19a)]?(console[_0xef9305(0x1a2)](chalk[_0xef9305(0x1aa)]('Auth:\x20登录成功,已缓存登录状态!')),fs[_0xef9305(0x1a3)](_0xd4dd4b,_0x31b17f+'/'+_0x66f396)):(console[_0xef9305(0x1a2)](chalk[_0xef9305(0x1ac)](_0xef9305(0x1a4)+_0xedb43f['data'][_0xef9305(0x1b1)])),fs[_0xef9305(0x1b3)](_0xd4dd4b)&&fs[_0xef9305(0x1a5)](_0xd4dd4b),process['exit'](0x0));})['catch'](_0x3d4ec1=>{const _0x4d1e6f=_0x558bd1;console[_0x4d1e6f(0x1a2)](chalk[_0x4d1e6f(0x1aa)](_0x4d1e6f(0x1ad)+_0x3d4ec1[_0x4d1e6f(0x1b1)])),process['exit'](0x0);});};
@@ -1 +0,0 @@
1
- function a1_0x5305(_0x3d66f7,_0x275bca){const _0x17ed49=a1_0x17ed();return a1_0x5305=function(_0x53051c,_0x6e73e0){_0x53051c=_0x53051c-0xb3;let _0x47b6a7=_0x17ed49[_0x53051c];return _0x47b6a7;},a1_0x5305(_0x3d66f7,_0x275bca);}const a1_0x8a0447=a1_0x5305;(function(_0x3265ce,_0xa95c50){const _0x477b9a=a1_0x5305,_0x715cd2=_0x3265ce();while(!![]){try{const _0x352c8c=parseInt(_0x477b9a(0xcc))/0x1*(parseInt(_0x477b9a(0xd9))/0x2)+parseInt(_0x477b9a(0xd2))/0x3+parseInt(_0x477b9a(0xca))/0x4*(parseInt(_0x477b9a(0xc7))/0x5)+parseInt(_0x477b9a(0xc2))/0x6+parseInt(_0x477b9a(0xc6))/0x7*(-parseInt(_0x477b9a(0xdc))/0x8)+-parseInt(_0x477b9a(0xd0))/0x9+parseInt(_0x477b9a(0xd1))/0xa*(parseInt(_0x477b9a(0xd5))/0xb);if(_0x352c8c===_0xa95c50)break;else _0x715cd2['push'](_0x715cd2['shift']());}catch(_0x509174){_0x715cd2['push'](_0x715cd2['shift']());}}}(a1_0x17ed,0x3b7c9));const fs=require('fs'),os=require('os'),path=require('path'),request=require('request'),utils=require(a1_0x8a0447(0xb9)),compressing=require(a1_0x8a0447(0xd8)),readline=require('readline'),io=readline[a1_0x8a0447(0xcb)]({'input':process['stdin'],'output':process['stdout']}),child_process=require('child_process'),{CLOUD_PROJECT,GIT_TEMP_DIR,GIT_HOST}=require(a1_0x8a0447(0xbf));function a1_0x17ed(){const _0x86ae62=['mkdirSync','../../old/util','初始化完成?请选择安装方式![yarn/npm]:','exports','resolve','-master-','then','../cmd.install/config','execSync','exit','1370190KUJmYe','.zip','zip','pipe','7vvhFSE','1237400rVuTOZ','tmpdir','trim','4BVfaZY','createInterface','1853qopVZc','log','DeleteDirAllFile','npm','3851901xxDFIO','1111190KVtafH','79830RWaWmq','初始化完成!请自行使用jjb-cmd\x20install.app\x20yarn/npm安装项目!','indexOf','11MoByub','CopyFolder','&ref=master','compressing','362nOrxdb','安装中,请耐心等待...','token','2218568xFKyqE','jjb-cmd\x20install.app\x20','readdirSync','【Error】:初始化失败,','uncompress','close'];a1_0x17ed=function(){return _0x86ae62;};return a1_0x17ed();}module[a1_0x8a0447(0xbb)]=_0x137659=>{const _0x1dede1=a1_0x8a0447,_0x3a3418=path[_0x1dede1(0xbc)]('./'),_0x4e1e06=CLOUD_PROJECT[_0x137659]||undefined;if(_0x4e1e06){const _0x1f112f=os[_0x1dede1(0xc8)](),_0x490820=_0x1f112f+'/'+GIT_TEMP_DIR+'/'+_0x137659+_0x1dede1(0xc3),_0x33f4f8=_0x1f112f+'/'+GIT_TEMP_DIR+'/unzip/';utils[_0x1dede1(0xce)](_0x1f112f+'/'+GIT_TEMP_DIR,()=>{const _0x2e5682=_0x1dede1;fs['mkdirSync'](_0x1f112f+'/'+GIT_TEMP_DIR);let _0x46873d=fs['createWriteStream'](_0x490820);request(GIT_HOST+'/api/v4/projects/'+_0x4e1e06['projectId']+'/repository/archive.zip?private_token='+_0x4e1e06[_0x2e5682(0xdb)]+_0x2e5682(0xd7))[_0x2e5682(0xc5)](_0x46873d)['on'](_0x2e5682(0xb7),()=>{const _0x1dda38=_0x2e5682;fs[_0x1dda38(0xb8)](_0x33f4f8),compressing[_0x1dda38(0xc4)][_0x1dda38(0xb6)](_0x490820,_0x33f4f8)[_0x1dda38(0xbe)](()=>{setTimeout(()=>{const _0x2c119f=a1_0x5305;fs[_0x2c119f(0xb4)](_0x33f4f8)['forEach'](_0xdbc88f=>{const _0x2baef1=_0x2c119f;_0xdbc88f[_0x2baef1(0xd4)](_0x2baef1(0xbd))!==-0x1&&utils[_0x2baef1(0xd6)](_0x33f4f8+_0xdbc88f,_0x3a3418,()=>{const _0x40a838=_0x2baef1;io['question'](_0x40a838(0xba),function(_0x15c594){const _0x4c5d0c=_0x40a838;['yarn',_0x4c5d0c(0xcf)]['includes'](_0x15c594[_0x4c5d0c(0xc9)]())?(console[_0x4c5d0c(0xcd)](_0x4c5d0c(0xda)),child_process[_0x4c5d0c(0xc0)](_0x4c5d0c(0xb3)+_0x15c594[_0x4c5d0c(0xc9)](),{'cwd':_0x3a3418}),console[_0x4c5d0c(0xcd)]('安装完成,祝您愉快编码!'),process[_0x4c5d0c(0xc1)](0x0)):(console['log'](_0x4c5d0c(0xd3)),process[_0x4c5d0c(0xc1)](0x0));});});});},0x7d0);});});});}else console[_0x1dede1(0xcd)](_0x1dede1(0xb5)+_0x137659+'不存在。');};
@@ -1 +0,0 @@
1
- function a2_0x2704(_0x1a11f3,_0x19fab2){const _0x42fbaa=a2_0x42fb();return a2_0x2704=function(_0x27040f,_0x1ff36f){_0x27040f=_0x27040f-0xbb;let _0x282264=_0x42fbaa[_0x27040f];return _0x282264;},a2_0x2704(_0x1a11f3,_0x19fab2);}const a2_0x247e1a=a2_0x2704;(function(_0x1c8dcd,_0x496b18){const _0xe09b9d=a2_0x2704,_0x3dc1e3=_0x1c8dcd();while(!![]){try{const _0x378fba=-parseInt(_0xe09b9d(0xd7))/0x1*(parseInt(_0xe09b9d(0xdb))/0x2)+-parseInt(_0xe09b9d(0xd4))/0x3*(-parseInt(_0xe09b9d(0xbf))/0x4)+parseInt(_0xe09b9d(0xc9))/0x5*(parseInt(_0xe09b9d(0xe2))/0x6)+-parseInt(_0xe09b9d(0xd1))/0x7*(-parseInt(_0xe09b9d(0xd5))/0x8)+-parseInt(_0xe09b9d(0xbe))/0x9*(-parseInt(_0xe09b9d(0xe3))/0xa)+-parseInt(_0xe09b9d(0xe1))/0xb*(-parseInt(_0xe09b9d(0xc6))/0xc)+-parseInt(_0xe09b9d(0xbb))/0xd;if(_0x378fba===_0x496b18)break;else _0x3dc1e3['push'](_0x3dc1e3['shift']());}catch(_0x4eb77b){_0x3dc1e3['push'](_0x3dc1e3['shift']());}}}(a2_0x42fb,0x47f57));function a2_0x42fb(){const _0x3f3226=['join','gPSit8aJsLVmNzuQ5Cy4','489462SOzAsC','736hAuGKn','7V-YUxhmh51Mdhgx4rq4','2tFLgKm','httpMethod','d4wQ7dzEjYPsgVbKnYei','TEMPLATE_FOLDER','404722hpVbaH','snBxJ2i5kYarGGcsojhY','http://120.26.210.58:8089','getApiHost','FqNrmFAgrxasMrbbjvq9','jjb-assembly-','47333JmTkJa','58806JgAEvp','237030MPFbNL','5035160zxJnVb','GIT_HOST','http://192.168.1.242:10985','54oICZdf','8kQOyxV','https://jcloud.cqjjb.cn','toString','prod','API_HOST_TEST','e9njpBd1nS_LREN8GFpR','hLqARY89CN6fUD3yg4NL','216EVyaIt','FT3pKzxpRynFkmddJ9Bs','API_HOST','125zyfQjc','tmpdir','https://cdn.cqjjb.cn/jjb-cloud-config','CLOUD_PROJECT','GIT_TEMP_DIR','CONFIG_FILE_HOST','test','GIT_TEMP_JAVA','22505Dgsewz'];a2_0x42fb=function(){return _0x3f3226;};return a2_0x42fb();}const os=require('os'),path=require('path'),fs=require('fs'),API_HOST='http://120.26.210.58:8088',API_HOST_HTTPS=a2_0x247e1a(0xc0),API_HOST_TEST=a2_0x247e1a(0xdd);exports[a2_0x247e1a(0xce)]=a2_0x247e1a(0xcb),exports[a2_0x247e1a(0xc8)]=API_HOST,exports[a2_0x247e1a(0xc3)]=API_HOST_TEST,exports[a2_0x247e1a(0xbc)]=a2_0x247e1a(0xbd),exports[a2_0x247e1a(0xcd)]=a2_0x247e1a(0xe0)+Date['now'](),exports[a2_0x247e1a(0xd0)]='jjb-assembly-java',exports['GIT_JAVA_ENV_JSON']={'development':'dev','production':a2_0x247e1a(0xc2),'test':a2_0x247e1a(0xcf)},exports[a2_0x247e1a(0xcc)]={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117},'react-admin-component':{'token':a2_0x247e1a(0xc7),'projectId':0x154},'jjb-dva-runtime':{'token':a2_0x247e1a(0xc5),'projectId':0x23b},'jjb-common-lib':{'token':a2_0x247e1a(0xc4),'projectId':0x23c},'jjb-common-decorator':{'token':a2_0x247e1a(0xd3),'projectId':0x23e},'vue-unisass-component':{'token':a2_0x247e1a(0xd9),'projectId':0x153},'react-component':{'token':a2_0x247e1a(0xdc),'projectId':0x33f},'micro-app-ts':{'token':a2_0x247e1a(0xd6),'projectId':0x33e},'micro-app':{'token':a2_0x247e1a(0xdf),'projectId':0x33d},'lib':{'token':'ywPtT3xCG6b_vAxp6sTj','projectId':0x33c}},exports[a2_0x247e1a(0xda)]=os[a2_0x247e1a(0xca)]()+'\x5c'+exports[a2_0x247e1a(0xcd)],exports[a2_0x247e1a(0xde)]=()=>{const _0x228752=a2_0x247e1a,_0x14a191=JSON['parse'](fs['readFileSync'](path[_0x228752(0xd2)](__dirname,'../../../package.json'))[_0x228752(0xc1)]());return _0x14a191['env']===_0x228752(0xcf)?API_HOST_TEST:_0x14a191[_0x228752(0xd8)]==='http'?API_HOST:API_HOST_HTTPS;};
@@ -1 +0,0 @@
1
- const a3_0x1a81e0=a3_0x43ae;(function(_0x3afde5,_0x1eb21c){const _0x2b9e7=a3_0x43ae,_0x2a67b5=_0x3afde5();while(!![]){try{const _0x324b51=parseInt(_0x2b9e7(0x203))/0x1*(parseInt(_0x2b9e7(0x1ce))/0x2)+-parseInt(_0x2b9e7(0x1e2))/0x3*(parseInt(_0x2b9e7(0x1dd))/0x4)+parseInt(_0x2b9e7(0x1f9))/0x5+parseInt(_0x2b9e7(0x1d5))/0x6*(parseInt(_0x2b9e7(0x205))/0x7)+parseInt(_0x2b9e7(0x1f2))/0x8*(parseInt(_0x2b9e7(0x204))/0x9)+-parseInt(_0x2b9e7(0x1e3))/0xa+parseInt(_0x2b9e7(0x1f6))/0xb*(-parseInt(_0x2b9e7(0x1d1))/0xc);if(_0x324b51===_0x1eb21c)break;else _0x2a67b5['push'](_0x2a67b5['shift']());}catch(_0x42a55b){_0x2a67b5['push'](_0x2a67b5['shift']());}}}(a3_0x3806,0x94a7c));const fs=require('fs'),path=require('path'),request=require(a3_0x1a81e0(0x208)),compressing=require(a3_0x1a81e0(0x1fd)),{f_rm_rf,f_file_copy,f_create_package_json,f_pull_git_repository,f_scan_jjb_config_json,f_scan_jjb_config_json_rules,f_update_project_package_json}=require(a3_0x1a81e0(0x1d8)),{TEMPLATE_FOLDER}=require(a3_0x1a81e0(0x1f1)),start_time=Date[a3_0x1a81e0(0x1d3)]();function a3_0x43ae(_0x3f6820,_0x42a70c){const _0x380635=a3_0x3806();return a3_0x43ae=function(_0x43ae03,_0x100f3e){_0x43ae03=_0x43ae03-0x1cc;let _0x4e36a0=_0x380635[_0x43ae03];return _0x4e36a0;},a3_0x43ae(_0x3f6820,_0x42a70c);}function a3_0x3806(){const _0x46d25f=['package.json','5075142OlJdqB','_zip','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','./tools','compress','\x5ctypes','【Error】:安装失败,node_modules目录不存在。','close','44NrQwvd','node_modules','exit','readdirSync','exports','91779MObAvF','6132310MuwhgE','jjb-common-lib','src\x5c','zip','includes','pipe','uncompress','index.js','log','name','existsSync','push','find','map','./config','29720hSlDTR','forEach','.gitignore','pure_name','55iiMfdt','1.0.0','.idea','3048410OEZqDE','installResources','setting.json','path','compressing','createWriteStream','installTarget','join','length','import_list','403507ucTDTR','1629jANCtp','7spjGjr','filter','repository','request','mkdirSync','【jjb-cmd】:install命令执行完成,用时','2ZegwTb','unlinkSync','rmdirSync','2334756YRtVPQ','src','now'];a3_0x3806=function(){return _0x46d25f;};return a3_0x3806();}module[a3_0x1a81e0(0x1e1)]=()=>{const _0x4bb099=a3_0x1a81e0,_0x3e407d=path['resolve']('./'),_0x1c9b05=[_0x3e407d,_0x4bb099(0x1e5)]['join']('\x5c'),_0x53d01b=[_0x3e407d,'node_modules'][_0x4bb099(0x200)]('\x5c'),_0x49e56c=[_0x3e407d,_0x4bb099(0x1d4)][_0x4bb099(0x200)]('\x5c');if(f_scan_jjb_config_json(_0x3e407d)){const _0x28b4b4=f_scan_jjb_config_json_rules(_0x3e407d);_0x28b4b4[_0x4bb099(0x1ff)]===_0x4bb099(0x1de)?!fs[_0x4bb099(0x1ed)](_0x53d01b)?(console[_0x4bb099(0x1eb)](_0x4bb099(0x1db)),process['exit'](0x0)):console[_0x4bb099(0x1eb)](_0x4bb099(0x1d7)):!fs[_0x4bb099(0x1ed)](_0x1c9b05)&&(console['log']('【Error】:安装失败,src目录不存在。'),process[_0x4bb099(0x1df)](0x0));fs[_0x4bb099(0x1cc)](TEMPLATE_FOLDER),f_pull_git_repository(_0x28b4b4['installResources'])[_0x4bb099(0x1f0)](_0x24a61a=>{const _0x1420a8=_0x4bb099,_0x26feb7=fs[_0x1420a8(0x1fe)](_0x24a61a[_0x1420a8(0x1fc)]);request(_0x24a61a[_0x1420a8(0x207)])[_0x1420a8(0x1e8)](_0x26feb7)['on'](_0x1420a8(0x1dc),()=>{const _0x3b9cba=_0x1420a8;fs[_0x3b9cba(0x1cc)](_0x24a61a[_0x3b9cba(0x1d9)]),compressing[_0x3b9cba(0x1e6)][_0x3b9cba(0x1e9)](_0x24a61a[_0x3b9cba(0x1fc)],_0x24a61a['compress']);});});const _0x3d7094=setInterval(()=>{const _0xdf0c14=_0x4bb099,_0x3ccbe1=fs[_0xdf0c14(0x1e0)](TEMPLATE_FOLDER),_0x3a5e43=_0x3ccbe1[_0xdf0c14(0x206)](_0x5e08f0=>_0x28b4b4['installResources'][_0xdf0c14(0x1f0)](_0x33a39a=>_0x33a39a[_0xdf0c14(0x1ec)]+_0xdf0c14(0x1d6))[_0xdf0c14(0x1e7)](_0x5e08f0));if(_0x3a5e43['length']===_0x28b4b4[_0xdf0c14(0x1fa)]['length']){clearInterval(_0x3d7094);const _0x1832d8=[];_0x3a5e43[_0xdf0c14(0x1f3)](_0x3a8797=>{const _0x3eb654=_0xdf0c14,_0x3af478=[TEMPLATE_FOLDER,_0x3a8797][_0x3eb654(0x200)]('\x5c');fs[_0x3eb654(0x1e0)](_0x3af478)['forEach'](_0x5b21a7=>_0x1832d8[_0x3eb654(0x1ee)]({'name':_0x3a8797,'path':[_0x3af478,_0x5b21a7]['join']('\x5c'),'pure_name':_0x3a8797['replace'](/_zip$/,''),'import_list':_0x28b4b4[_0x3eb654(0x1fa)][_0x3eb654(0x1ef)](_0x33451d=>_0x33451d[_0x3eb654(0x1ec)]+_0x3eb654(0x1d6)===_0x3a8797)['importList']}));}),_0x1832d8['forEach'](_0x40c927=>{const _0x79234f=_0xdf0c14,_0x1d0c38=_0x40c927[_0x79234f(0x1f5)],_0x5753bd=_0x40c927[_0x79234f(0x202)],_0x2d494c=[_0x40c927['path'],_0x79234f(0x1f8)][_0x79234f(0x200)]('//'),_0x52ea7d=[_0x40c927[_0x79234f(0x1fc)],_0x79234f(0x1f4)]['join']('//');fs[_0x79234f(0x1ed)](_0x2d494c)&&(f_rm_rf(_0x2d494c),fs[_0x79234f(0x1d0)](_0x2d494c));fs[_0x79234f(0x1ed)](_0x52ea7d)&&fs[_0x79234f(0x1cf)](_0x52ea7d);_0x5753bd[_0x79234f(0x201)]&&fs[_0x79234f(0x1e0)](_0x40c927[_0x79234f(0x1fc)])['filter'](_0x65c5a7=>!_0x5753bd[_0x79234f(0x1e7)](_0x65c5a7)&&_0x65c5a7!==_0x79234f(0x1ea)&&_0x65c5a7!==_0x79234f(0x1fb))[_0x79234f(0x1f3)](_0x3ca0e8=>{const _0x5e49f4=_0x79234f,_0x46137c=_0x40c927[_0x5e49f4(0x1fc)]+'\x5c'+_0x3ca0e8;f_rm_rf(_0x46137c),fs[_0x5e49f4(0x1d0)](_0x46137c);});if(_0x28b4b4['installTarget']==='node_modules'){const _0x496a1b=_0x1d0c38;fs[_0x79234f(0x1ed)](_0x53d01b+'\x5c'+_0x496a1b)?f_rm_rf(_0x53d01b+'\x5c'+_0x496a1b):fs['mkdirSync'](_0x53d01b+'\x5c'+_0x496a1b),_0x496a1b!==_0x79234f(0x1e4)?(f_file_copy(_0x40c927[_0x79234f(0x1fc)],_0x53d01b+'\x5c'+_0x496a1b),f_create_package_json(_0x53d01b+'\x5c'+_0x496a1b,_0x496a1b,_0x79234f(0x1f7))):f_file_copy(_0x40c927[_0x79234f(0x1fc)]+_0x79234f(0x1da),_0x53d01b+'\x5c'+_0x496a1b),f_update_project_package_json(_0x49e56c,_0x496a1b,_0x79234f(0x1f7));}else _0x28b4b4[_0x79234f(0x1ff)]===_0x79234f(0x1d2)&&(fs[_0x79234f(0x1ed)](_0x1c9b05+_0x1d0c38)?f_rm_rf(_0x1c9b05+_0x1d0c38):fs[_0x79234f(0x1cc)](_0x1c9b05+_0x1d0c38),f_file_copy(_0x40c927[_0x79234f(0x1fc)],_0x1c9b05+_0x1d0c38));}),setTimeout(()=>{const _0x259dc3=_0xdf0c14;f_rm_rf(TEMPLATE_FOLDER),fs[_0x259dc3(0x1d0)](TEMPLATE_FOLDER);const _0x46e6fc=Date[_0x259dc3(0x1d3)]();console[_0x259dc3(0x1eb)](_0x259dc3(0x1cd)+(_0x46e6fc-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x4bb099(0x1eb)]('【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。');};
@@ -1 +0,0 @@
1
- function a4_0x5c55(_0x1b9f87,_0xae9a83){const _0x508ba8=a4_0x508b();return a4_0x5c55=function(_0x5c5550,_0x343e8b){_0x5c5550=_0x5c5550-0x198;let _0xf8d65d=_0x508ba8[_0x5c5550];return _0xf8d65d;},a4_0x5c55(_0x1b9f87,_0xae9a83);}const a4_0x3146ef=a4_0x5c55;function a4_0x508b(){const _0x4876e8=['spa','string','src','replace','1259550DlRrEL','f_rm_rf','9mAbEGA','f_update_project_package_json','【Error】:[jjb.config.json.installTarget]类型是一个string。','forEach','isArray','f_scan_jjb_config_json_rules','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','installTarget','projectId','1221542RojpoE','readdirSync','dependencies','multi','jjb-common-lib','exit','stringify','1775428OgGvOt','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','\x22,\x22main\x22:\x20\x22index.js\x22}','includes','push','【Error】:[jjb.config.json.installResources]无资源。','/repository/archive.zip?private_token=','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','jjb-common-decorator','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','tmpdir','.zip','statSync','length','existsSync','1844912LKBOKV','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','\x5cpackage.json','【Error】:[jjb.config.json.projectType]类型是一个string。','jjb-dva-runtime','uniapp','name','installResources','parse','1525736udTxQh','f_resolve_install_resources','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','\x22,\x22version\x22:\x22','142468heQzAt','f_create_package_json','vue-unisass-component','unlinkSync','node_modules','token','mkdirSync','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','toString','jjb-common','readFileSync','projectType','filter','map','log','\x5cjjb.config.json','f_pull_git_repository','80eLezLr','36NTpVdz','isDirectory','{\x22name\x22:\x22','&ref=master','f_scan_jjb_config_json','./config','4105870PJrxAv','/api/v4/projects/','f_file_copy','writeFileSync'];a4_0x508b=function(){return _0x4876e8;};return a4_0x508b();}(function(_0x14d742,_0x3628ff){const _0x12e97e=a4_0x5c55,_0x5881f0=_0x14d742();while(!![]){try{const _0x3fe733=-parseInt(_0x12e97e(0x19f))/0x1+parseInt(_0x12e97e(0x1a3))/0x2+parseInt(_0x12e97e(0x1c5))/0x3*(parseInt(_0x12e97e(0x1d5))/0x4)+parseInt(_0x12e97e(0x1bb))/0x5+-parseInt(_0x12e97e(0x1b5))/0x6*(-parseInt(_0x12e97e(0x1ce))/0x7)+parseInt(_0x12e97e(0x1e4))/0x8+parseInt(_0x12e97e(0x1c3))/0x9*(-parseInt(_0x12e97e(0x1b4))/0xa);if(_0x3fe733===_0x3628ff)break;else _0x5881f0['push'](_0x5881f0['shift']());}catch(_0x59c371){_0x5881f0['push'](_0x5881f0['shift']());}}}(a4_0x508b,0xd10e5));const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a4_0x3146ef(0x1ba));exports['f_rm_rf']=function(_0x19ad09){const _0x305e32=a4_0x3146ef;if(fs[_0x305e32(0x1e3)](_0x19ad09)){const _0x29d0b6=fs['readdirSync'](_0x19ad09);for(let _0x570153=0x0;_0x570153<_0x29d0b6[_0x305e32(0x1e2)];_0x570153++){const _0x150ccb=_0x29d0b6[_0x570153],_0x211fdb=_0x19ad09+'/'+_0x150ccb;fs[_0x305e32(0x1e1)](_0x211fdb)[_0x305e32(0x1b6)]()?(exports[_0x305e32(0x1c4)](_0x211fdb),fs['rmdirSync'](_0x211fdb)):fs[_0x305e32(0x1a6)](_0x211fdb);}}},exports[a4_0x3146ef(0x1b3)]=function(_0x4b7493=[]){return _0x4b7493['map'](_0x18fadf=>{const _0x5ea302=a4_0x5c55,_0x2bcc14=CLOUD_PROJECT[_0x18fadf[_0x5ea302(0x19c)]]||undefined,_0x3fc423=os[_0x5ea302(0x1df)]();return{'path':_0x3fc423+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x18fadf[_0x5ea302(0x19c)]+_0x5ea302(0x1e0),'compress':_0x3fc423+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x18fadf[_0x5ea302(0x19c)]+'_zip','repository':GIT_HOST+_0x5ea302(0x1bc)+_0x2bcc14[_0x5ea302(0x1cd)]+_0x5ea302(0x1db)+_0x2bcc14[_0x5ea302(0x1a8)]+_0x5ea302(0x1b8)};});},exports[a4_0x3146ef(0x1b9)]=function(_0x32d061){const _0x2f17f0=a4_0x3146ef;return fs[_0x2f17f0(0x1e3)](_0x32d061+_0x2f17f0(0x1b2));},exports[a4_0x3146ef(0x1ca)]=function(_0x2ebf1a){const _0x40ba96=a4_0x3146ef;let _0x3d4170={};try{_0x3d4170=JSON[_0x40ba96(0x19e)](fs['readFileSync'](_0x2ebf1a+_0x40ba96(0x1b2))[_0x40ba96(0x1ab)]());}catch(_0x54dfef){console[_0x40ba96(0x1b1)](_0x40ba96(0x1e5)),process['exit'](0x0);}!(_0x40ba96(0x1ae)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1d6)),process['exit'](0x0));!(_0x40ba96(0x1cc)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1aa)),process['exit'](0x0));!(_0x40ba96(0x19d)in _0x3d4170)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1cb)),process[_0x40ba96(0x1d3)](0x0));typeof _0x3d4170['projectType']!==_0x40ba96(0x1c0)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x199)),process[_0x40ba96(0x1d3)](0x0));![_0x40ba96(0x1d1),_0x40ba96(0x1bf),_0x40ba96(0x19b),'micro-spa'][_0x40ba96(0x1d8)](_0x3d4170[_0x40ba96(0x1ae)])&&(console[_0x40ba96(0x1b1)]('【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。'),process[_0x40ba96(0x1d3)](0x0));typeof _0x3d4170[_0x40ba96(0x1cc)]!==_0x40ba96(0x1c0)&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1c7)),process['exit'](0x0));![_0x40ba96(0x1a7),_0x40ba96(0x1c1)][_0x40ba96(0x1d8)](_0x3d4170[_0x40ba96(0x1cc)])&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1de)),process[_0x40ba96(0x1d3)](0x0));!Array[_0x40ba96(0x1c9)](_0x3d4170[_0x40ba96(0x19d)])&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1a1)),process[_0x40ba96(0x1d3)](0x0));_0x3d4170[_0x40ba96(0x19d)][_0x40ba96(0x1e2)]===0x0&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1da)),process[_0x40ba96(0x1d3)](0x0));const _0x433527=exports[_0x40ba96(0x1a0)](_0x3d4170[_0x40ba96(0x19d)]);return _0x433527[_0x40ba96(0x1b0)](_0x1c13c4=>_0x1c13c4[_0x40ba96(0x19c)])[_0x40ba96(0x1af)](_0x2367df=>![_0x40ba96(0x1ac),_0x40ba96(0x19a),_0x40ba96(0x1d2),_0x40ba96(0x1dd),'react-admin-component',_0x40ba96(0x1a5)]['includes'](_0x2367df))[_0x40ba96(0x1e2)]!==0x0&&(console[_0x40ba96(0x1b1)](_0x40ba96(0x1dc)),process[_0x40ba96(0x1d3)](0x0)),_0x3d4170[_0x40ba96(0x19d)]=_0x433527,_0x3d4170;},exports[a4_0x3146ef(0x1a4)]=function(_0xefce3a,_0x2e684a,_0x2db9ca){const _0x537f11=a4_0x3146ef;fs[_0x537f11(0x1be)](_0xefce3a+_0x537f11(0x198),_0x537f11(0x1b7)+_0x2e684a+_0x537f11(0x1a2)+_0x2db9ca+_0x537f11(0x1d7));},exports['f_resolve_install_resources']=function(_0x56ed05=[]){const _0x474f8c=a4_0x3146ef,_0x56f3b9=[];return Array[_0x474f8c(0x1c9)](_0x56ed05)&&_0x56ed05[_0x474f8c(0x1c8)](_0x3844fb=>{const _0x1918ab=_0x474f8c;if(Array[_0x1918ab(0x1c9)](_0x3844fb)){const [_0x2c46b5,_0x100e6c=[]]=_0x3844fb;_0x56f3b9[_0x1918ab(0x1d9)]({'name':_0x2c46b5,'importList':_0x100e6c});}else _0x56f3b9['push']({'name':_0x3844fb,'importList':[]});}),_0x56f3b9;},exports[a4_0x3146ef(0x1c6)]=function(_0x53a548,_0x3876bf,_0x4120f9){const _0xcfa558=a4_0x3146ef,_0x58b461=JSON['parse'](fs[_0xcfa558(0x1ad)](_0x53a548)[_0xcfa558(0x1ab)]());_0x58b461[_0xcfa558(0x1d0)][_0x3876bf]=_0x4120f9,fs[_0xcfa558(0x1be)](_0x53a548,JSON[_0xcfa558(0x1d4)](_0x58b461,null,0x2));},exports[a4_0x3146ef(0x1bd)]=function(_0x339e49,_0x3e56f0){const _0x4b2bed=a4_0x3146ef;fs[_0x4b2bed(0x1cf)](_0x339e49)['forEach'](_0x49547c=>{const _0x489566=_0x4b2bed,_0x379517=_0x339e49+'\x5c'+_0x49547c,_0xfbe3d=_0x3e56f0+'\x5c'+_0x49547c;fs['statSync'](_0x379517)['isDirectory']()?(fs[_0x489566(0x1a9)](_0xfbe3d),exports[_0x489566(0x1bd)](_0x379517,_0xfbe3d)):fs[_0x489566(0x1be)](_0xfbe3d,fs[_0x489566(0x1ad)](_0x379517)[_0x489566(0x1ab)]());});},exports['f_content_replace']=function(_0x150f36=[],_0x56970a){const _0x37d86e=a4_0x3146ef;_0x150f36[_0x37d86e(0x1c8)](_0x45d5c3=>{const _0x3c00da=_0x37d86e,_0xd1b23f=_0x56970a+_0x45d5c3['path'];if(fs[_0x3c00da(0x1e3)](_0xd1b23f)){let _0x13aea9=fs[_0x3c00da(0x1ad)](_0xd1b23f)['toString']();_0x45d5c3['replace'][_0x3c00da(0x1c8)](_0x26a4f2=>{const _0x27816d=_0x3c00da;_0x13aea9=_0x13aea9[_0x27816d(0x1c2)](_0x26a4f2[0x0],_0x26a4f2[0x1]);}),fs['writeFileSync'](_0xd1b23f,_0x13aea9);}});};
@@ -1 +0,0 @@
1
- function a5_0xca10(_0x47c9a1,_0x2e5604){const _0x29db7a=a5_0x29db();return a5_0xca10=function(_0xca10d2,_0x84f585){_0xca10d2=_0xca10d2-0x1e0;let _0x54a1e6=_0x29db7a[_0xca10d2];return _0x54a1e6;},a5_0xca10(_0x47c9a1,_0x2e5604);}const a5_0x14dd05=a5_0xca10;function a5_0x29db(){const _0x522a58=['execSync','npm\x20install','npm','1441143aysMkh','1048PIoQsv','127463Zteqbl','child_process','66gYloMl','【Error】:no\x20registry\x20source,\x20available:[npm,\x20yarn]','existsSync','yarn','path','2863030rcLSdq','3VlpMUv','94590KBnicl','exports','6762aaStfG','install\x20modules\x20please\x20wait....','git\x20init\x20please\x20wait....','105338qMpaTs','1027664xcGHaZ','npx\x20husky\x20install','log','includes','/.git','Finish!'];a5_0x29db=function(){return _0x522a58;};return a5_0x29db();}(function(_0x1aeafa,_0x29c5ac){const _0x11fa58=a5_0xca10,_0x8e2cf7=_0x1aeafa();while(!![]){try{const _0x683d04=-parseInt(_0x11fa58(0x1f2))/0x1+-parseInt(_0x11fa58(0x1e6))/0x2*(-parseInt(_0x11fa58(0x1e0))/0x3)+-parseInt(_0x11fa58(0x1e7))/0x4+parseInt(_0x11fa58(0x1e1))/0x5*(parseInt(_0x11fa58(0x1f4))/0x6)+-parseInt(_0x11fa58(0x1e3))/0x7*(-parseInt(_0x11fa58(0x1f1))/0x8)+-parseInt(_0x11fa58(0x1f0))/0x9+parseInt(_0x11fa58(0x1f9))/0xa;if(_0x683d04===_0x29c5ac)break;else _0x8e2cf7['push'](_0x8e2cf7['shift']());}catch(_0x21038d){_0x8e2cf7['push'](_0x8e2cf7['shift']());}}}(a5_0x29db,0x1f856));const child_process=require(a5_0x14dd05(0x1f3)),path=require(a5_0x14dd05(0x1f8)),fs=require('fs');module[a5_0x14dd05(0x1e2)]=_0x1bb597=>{const _0x36ea4d=a5_0x14dd05;![_0x36ea4d(0x1ef),_0x36ea4d(0x1f7)][_0x36ea4d(0x1ea)](_0x1bb597)&&(console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1f5)),process['exit'](0x0));const _0x39d765=path['resolve']('./');console['log'](_0x36ea4d(0x1e4)),child_process[_0x36ea4d(0x1ed)](_0x1bb597===_0x36ea4d(0x1f7)?_0x36ea4d(0x1f7):_0x36ea4d(0x1ee),{'cwd':_0x39d765}),!fs[_0x36ea4d(0x1f6)](_0x39d765+_0x36ea4d(0x1eb))&&(console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1e5)),child_process[_0x36ea4d(0x1ed)]('git\x20init',{'cwd':_0x39d765})),console[_0x36ea4d(0x1e9)]('install\x20husky\x20please\x20wait....'),child_process[_0x36ea4d(0x1ed)](_0x36ea4d(0x1e8),{'cwd':_0x39d765}),console[_0x36ea4d(0x1e9)](_0x36ea4d(0x1ec));};
@@ -1 +0,0 @@
1
- const a6_0x1617a1=a6_0x1d8e;function a6_0x1270(){const _0x335c7a=['build','171570aDcPsk','error','job','join','6SnFJzy','\x5cjjb.config.js','exports','315eGSttz','2390STENQh','jobName','2032905uttZXa','【Error】:no\x20auth\x20login','jenkinsUserName','jenkinsNamespace','425698FSdhzf','20jdZCwt','48455tWCfQK','exit','64104wdPkYn','2954896cjBBOx','68873DZFKTv','jenkins','environment','error:\x20','log','jenkinsPassword','../../../.auth'];a6_0x1270=function(){return _0x335c7a;};return a6_0x1270();}function a6_0x1d8e(_0x3e7611,_0x4576b5){const _0x127052=a6_0x1270();return a6_0x1d8e=function(_0x1d8e82,_0x323f4b){_0x1d8e82=_0x1d8e82-0x195;let _0x49664f=_0x127052[_0x1d8e82];return _0x49664f;},a6_0x1d8e(_0x3e7611,_0x4576b5);}(function(_0x41f990,_0x404e42){const _0x2d7b97=a6_0x1d8e,_0x2f40c8=_0x41f990();while(!![]){try{const _0x39d512=parseInt(_0x2d7b97(0x19e))/0x1*(parseInt(_0x2d7b97(0x199))/0x2)+-parseInt(_0x2d7b97(0x1a6))/0x3+parseInt(_0x2d7b97(0x19d))/0x4+parseInt(_0x2d7b97(0x1b0))/0x5*(parseInt(_0x2d7b97(0x1aa))/0x6)+-parseInt(_0x2d7b97(0x198))/0x7+parseInt(_0x2d7b97(0x19c))/0x8*(-parseInt(_0x2d7b97(0x1ad))/0x9)+-parseInt(_0x2d7b97(0x1ae))/0xa*(parseInt(_0x2d7b97(0x19a))/0xb);if(_0x39d512===_0x404e42)break;else _0x2f40c8['push'](_0x2f40c8['shift']());}catch(_0x186a0a){_0x2f40c8['push'](_0x2f40c8['shift']());}}}(a6_0x1270,0x5d73d));const path=require('path'),fs=require('fs'),Jenkins=require('jenkins');module[a6_0x1617a1(0x1ac)]=arguments=>{const _0x29c9a1=a6_0x1617a1,_0x126141=path[_0x29c9a1(0x1a9)](__dirname,_0x29c9a1(0x1a4));!fs['existsSync'](_0x126141)&&(console['log'](_0x29c9a1(0x195)),process[_0x29c9a1(0x19b)](0x0));const _0x40cfc6=path['resolve']('./'),_0x1f6ed4=_0x40cfc6+_0x29c9a1(0x1ab),_0x3069eb=require(_0x1f6ed4),_0x414d14=_0x3069eb[_0x29c9a1(0x1a0)][arguments],_0x142f00=_0x414d14[_0x29c9a1(0x19f)]||{},_0x2c1c85=_0x142f00['branchName'],_0x551b15=_0x142f00[_0x29c9a1(0x1af)],_0x2353de=_0x142f00['jenkinsHost'],_0xcf16aa=_0x142f00[_0x29c9a1(0x196)],_0xd3d427=_0x142f00[_0x29c9a1(0x1a3)],_0x4a8453=_0x142f00[_0x29c9a1(0x197)],_0xb713b2=new Jenkins({'baseUrl':'http://'+_0xcf16aa+':'+_0xd3d427+'@'+_0x2353de});try{const _0x2a4974=_0xb713b2[_0x29c9a1(0x1a8)][_0x29c9a1(0x1a5)]({'name':_0x551b15,'parameters':{'app_Version':_0x2c1c85,'build_version':arguments,'k8s_namespace':_0x4a8453,'branch':_0x2c1c85,'merge':!![]},'token':_0xd3d427});console[_0x29c9a1(0x1a2)]('开始构建...',_0x2a4974);}catch(_0x3ad367){console[_0x29c9a1(0x1a7)](_0x29c9a1(0x1a1),_0x3ad367);}};
@@ -1 +0,0 @@
1
- function a7_0x5459(){const _0x12654c=['package.json','Error:\x20组件发布失败!','10oxthtO','Error:\x20组件发布失败!根目录缺少‘package.json’文件!','30069259sbYeDe','Sudo:\x20npm\x20build:production','execSync','exports','Error:\x20组件发布失败!根目录缺少‘dist/index.js’文件!','请输入此次组件发布的信息,按Enter确认:','existsSync','Error:\x20暴露的配置信息中缺少“info”!','1546790nJXZGO','Error:\x20授权失败,未知错误!','stdout','split','blue','7ClRGYA','package_version','child_process','indexOf','pushMessage','Please\x20wait,\x20build\x20...,','stdin','red','stringify','index.js','1623GAZeoz','data','message','4140hUiYGs','no\x20message','225lbrHxw','../../../package.json','thumbnail_base64','773044dfUmon','green','1157176QbCCUy','Error:\x20请在组件入口文件中添加“window[props.componentKey]”以暴露组件的配置信息!','catch','npm\x20run\x20build:production','readFileSync','component_config_content','6321714uKPzXp','/yarn.lock','readme_content','return\x20','match','Sudo:\x20yarn\x20build:production','chalk','join','axios','thumbnail.png','toString','../cmd.install/config','log','platform','parse','length','post','defaultSetting','Error:\x20请在组件根目录为组件添加一个缩略图“thumbnail.png”文件!','Error:\x20请在组件根目录添加一个README.md说明文件!','createInterface','exit','Error:\x20授权失败!','454568iNvteF','../../../.auth','/api/auth','Auth:\x20正在获取授权!','yarn\x20build:production','Error:\x20暴露的配置信息中缺少“settings”!'];a7_0x5459=function(){return _0x12654c;};return a7_0x5459();}function a7_0x4039(_0x350e93,_0x40e1d4){const _0x545975=a7_0x5459();return a7_0x4039=function(_0x4039ee,_0x4c404f){_0x4039ee=_0x4039ee-0x153;let _0x3a7f4a=_0x545975[_0x4039ee];return _0x3a7f4a;},a7_0x4039(_0x350e93,_0x40e1d4);}const a7_0x2caf35=a7_0x4039;(function(_0x5658f0,_0x1f6207){const _0x51761a=a7_0x4039,_0x29d8ea=_0x5658f0();while(!![]){try{const _0x290c59=parseInt(_0x51761a(0x184))/0x1+-parseInt(_0x51761a(0x186))/0x2+parseInt(_0x51761a(0x17c))/0x3*(parseInt(_0x51761a(0x17f))/0x4)+parseInt(_0x51761a(0x16d))/0x5+-parseInt(_0x51761a(0x18c))/0x6*(-parseInt(_0x51761a(0x172))/0x7)+-parseInt(_0x51761a(0x15b))/0x8*(-parseInt(_0x51761a(0x181))/0x9)+-parseInt(_0x51761a(0x163))/0xa*(parseInt(_0x51761a(0x165))/0xb);if(_0x290c59===_0x1f6207)break;else _0x29d8ea['push'](_0x29d8ea['shift']());}catch(_0xa916c8){_0x29d8ea['push'](_0x29d8ea['shift']());}}}(a7_0x5459,0xc45e4));const path=require('path'),fs=require('fs'),os=require('os'),axios=require(a7_0x2caf35(0x194)),chalk=require(a7_0x2caf35(0x192)),readline=require('readline'),io=readline[a7_0x2caf35(0x158)]({'input':process[a7_0x2caf35(0x178)],'output':process[a7_0x2caf35(0x16f)]}),child_process=require(a7_0x2caf35(0x174)),{getApiHost}=require(a7_0x2caf35(0x197)),submitFun=function(_0x342267,_0x3baa94){const _0x5970c9=a7_0x2caf35;_0x3baa94[_0x5970c9(0x17e)]=_0x342267||_0x5970c9(0x180),axios[_0x5970c9(0x154)](getApiHost()+'/api/file/publish',_0x3baa94)['then'](_0x34e107=>{const _0x2eb27e=_0x5970c9;console[_0x2eb27e(0x198)](chalk[_0x2eb27e(0x185)](_0x34e107[_0x2eb27e(0x17d)][_0x2eb27e(0x17e)])),process[_0x2eb27e(0x159)](0x0);})[_0x5970c9(0x188)](_0x11fccd=>{const _0x57974d=_0x5970c9;console[_0x57974d(0x198)](chalk[_0x57974d(0x179)](_0x57974d(0x162)+_0x11fccd[_0x57974d(0x17e)])),process[_0x57974d(0x159)](0x0);});};module[a7_0x2caf35(0x168)]=_0xac8587=>{const _0x1f766b=a7_0x2caf35,_0x29fab6=path[_0x1f766b(0x193)](__dirname,_0x1f766b(0x15c));!fs[_0x1f766b(0x16b)](_0x29fab6)&&(console[_0x1f766b(0x198)](chalk[_0x1f766b(0x179)]('Error:\x20请先登录!')),process[_0x1f766b(0x159)](0x0));const [_0x3772bf,_0x50b122]=fs[_0x1f766b(0x18a)](_0x29fab6)[_0x1f766b(0x196)]()[_0x1f766b(0x170)]('/');console[_0x1f766b(0x198)](_0x1f766b(0x15e)),axios[_0x1f766b(0x154)](getApiHost()+_0x1f766b(0x15d),{'username':_0x3772bf,'password':_0x50b122})['then'](_0x47b85e=>{const _0x31ec0f=_0x1f766b;if(_0x47b85e[_0x31ec0f(0x17d)]['status']){console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x185)]('Auth:\x20授权成功!'));const _0x35c640=path['resolve']('./');console[_0x31ec0f(0x198)](_0x31ec0f(0x177)+_0x35c640);fs['existsSync'](_0x35c640+_0x31ec0f(0x18d))?(console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x171)](_0x31ec0f(0x191)),_0x35c640),child_process[_0x31ec0f(0x167)](_0x31ec0f(0x15f),{'cwd':_0x35c640})):(console['log'](chalk[_0x31ec0f(0x171)](_0x31ec0f(0x166)),_0x35c640),child_process[_0x31ec0f(0x167)](_0x31ec0f(0x189),{'cwd':_0x35c640}));const _0x3739f9=_0x35c640[_0x31ec0f(0x175)]('/')!==-0x1?'/':'\x5c',_0x29d433=''+_0x35c640+_0x3739f9+'README.md',_0x969042=''+_0x35c640+_0x3739f9+'dist'+_0x3739f9+_0x31ec0f(0x17b),_0x13501d=''+_0x35c640+_0x3739f9+_0x31ec0f(0x161),_0x23f80c=''+_0x35c640+_0x3739f9+_0x31ec0f(0x195),_0x167f77=JSON[_0x31ec0f(0x19a)](fs['readFileSync'](path[_0x31ec0f(0x193)](__dirname,_0x31ec0f(0x182)))['toString']()),{version:_0x129972}=_0x167f77,_0x17de61={'username':_0x3772bf,'cmd_version':_0x129972,'hostname':os['hostname'](),'platform':os[_0x31ec0f(0x199)]()};if(fs[_0x31ec0f(0x16b)](_0x13501d)){if(fs['existsSync'](_0x969042)){_0x17de61[_0x31ec0f(0x173)]=_0xac8587?_0xac8587:0x0,_0x17de61['package_content']=fs[_0x31ec0f(0x18a)](_0x969042)[_0x31ec0f(0x196)](),_0x17de61[_0x31ec0f(0x18b)]={};const _0x56daa5=fs[_0x31ec0f(0x18a)](_0x969042)[_0x31ec0f(0x196)](),_0x140663=_0x56daa5[_0x31ec0f(0x190)](/(window\[).+?(\.componentKey|.+]={)/img);if(_0x140663&&_0x140663[_0x31ec0f(0x153)]){const _0x3b2261=_0x56daa5[_0x31ec0f(0x190)](/componentKey.+([{,]info:\s{0,}{)/img);if(_0x3b2261&&_0x3b2261[_0x31ec0f(0x153)]){let _0x24c138='{';const _0x3e1676=_0x56daa5[_0x31ec0f(0x170)](_0x3b2261[0x0])[0x1];for(let _0x1f94a4=0x0;_0x1f94a4<_0x3e1676[_0x31ec0f(0x153)];_0x1f94a4++){_0x24c138+=_0x3e1676[_0x1f94a4];if(_0x3e1676[_0x1f94a4]==='}')try{const _0x184dcb=new Function(_0x31ec0f(0x18f)+_0x24c138)();_0x17de61[_0x31ec0f(0x18b)]={..._0x184dcb,'defaultSetting':{}};}catch(_0x1d8043){}}}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x16c))),process[_0x31ec0f(0x159)](0x0);const _0x10404e=_0x56daa5[_0x31ec0f(0x190)](/componentKey.+([{,]settings:\s{0,}{)/img);if(_0x10404e&&_0x10404e[_0x31ec0f(0x153)]){let _0x5d9b37='{';const _0x279cb8=_0x56daa5[_0x31ec0f(0x170)](_0x10404e[0x0])[0x1];for(let _0x35e6ce=0x0;_0x35e6ce<_0x279cb8[_0x31ec0f(0x153)];_0x35e6ce++){_0x5d9b37+=_0x279cb8[_0x35e6ce];if(_0x279cb8[_0x35e6ce]==='}')try{_0x17de61[_0x31ec0f(0x18b)][_0x31ec0f(0x155)]=new Function('return\x20'+_0x5d9b37)();}catch(_0xd79917){}}_0x17de61[_0x31ec0f(0x18b)]=JSON[_0x31ec0f(0x17a)](_0x17de61[_0x31ec0f(0x18b)]);}else console[_0x31ec0f(0x198)](chalk['red'](_0x31ec0f(0x160))),process['exit'](0x0);}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x187))),process[_0x31ec0f(0x159)](0x0);fs[_0x31ec0f(0x16b)](_0x29d433)?_0x17de61[_0x31ec0f(0x18e)]=fs[_0x31ec0f(0x18a)](_0x29d433)[_0x31ec0f(0x196)]():(console[_0x31ec0f(0x198)](chalk['red'](_0x31ec0f(0x157))),process['exit'](0x0));if(!fs['existsSync'](_0x23f80c))console[_0x31ec0f(0x198)](_0x31ec0f(0x156)),process['exit'](0x0);else{const _0x4e93c5=fs['readFileSync'](_0x23f80c);_0x17de61[_0x31ec0f(0x183)]=Buffer['from'](_0x4e93c5)[_0x31ec0f(0x196)]('base64');}_0x167f77[_0x31ec0f(0x176)]==='no'?submitFun(null,_0x17de61):io['question'](_0x31ec0f(0x16a),function(_0x34773b){submitFun(_0x34773b,_0x17de61);});}else console['log'](chalk['red'](_0x31ec0f(0x169))),process[_0x31ec0f(0x159)](0x0);}else console['log'](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x164))),process[_0x31ec0f(0x159)](0x0);}else console[_0x31ec0f(0x198)](chalk[_0x31ec0f(0x179)](_0x31ec0f(0x15a))),process[_0x31ec0f(0x159)](0x0);})[_0x1f766b(0x188)](_0x23728c=>{const _0x5cc39f=_0x1f766b;console[_0x5cc39f(0x198)](chalk[_0x5cc39f(0x179)](_0x5cc39f(0x16e)),_0x23728c[_0x5cc39f(0x17e)]),process[_0x5cc39f(0x159)](0x0);});};
@@ -1 +0,0 @@
1
- const a8_0x37a476=a8_0x1cd9;function a8_0x1cd9(_0x2ae48b,_0x332f7d){const _0xfb9119=a8_0xfb91();return a8_0x1cd9=function(_0x1cd913,_0x99215f){_0x1cd913=_0x1cd913-0x181;let _0x2939a8=_0xfb9119[_0x1cd913];return _0x2939a8;},a8_0x1cd9(_0x2ae48b,_0x332f7d);}(function(_0x281fbf,_0x15968d){const _0x14acd4=a8_0x1cd9,_0x57c588=_0x281fbf();while(!![]){try{const _0x142b67=-parseInt(_0x14acd4(0x199))/0x1*(parseInt(_0x14acd4(0x186))/0x2)+-parseInt(_0x14acd4(0x187))/0x3+-parseInt(_0x14acd4(0x191))/0x4*(parseInt(_0x14acd4(0x1a8))/0x5)+-parseInt(_0x14acd4(0x18d))/0x6+-parseInt(_0x14acd4(0x1a7))/0x7*(parseInt(_0x14acd4(0x19d))/0x8)+parseInt(_0x14acd4(0x18e))/0x9*(parseInt(_0x14acd4(0x1aa))/0xa)+parseInt(_0x14acd4(0x193))/0xb;if(_0x142b67===_0x15968d)break;else _0x57c588['push'](_0x57c588['shift']());}catch(_0x1ab506){_0x57c588['push'](_0x57c588['shift']());}}}(a8_0xfb91,0xb3f2f));function a8_0xfb91(){const _0x3b4542=['5025792AVSBNZ','9OnaNwr','exports','../../../.auth','296VtiVvm','catch','55983202ZuMWEf','toString','existsSync','Auth\x20NetWork\x20Fail!','/api/file/push','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','1TMWlHi','../cmd.install/config','Auth\x20Fail!','axios','8vBYyIg','readFileSync','exit','join','path','post','/api/auth','发布失败!根目录缺少‘package.json’文件,无法完成发布。','data','【Error】:no\x20auth\x20login','8940071nVMVZg','17230FJfZTV','split','4453570ayANYp','hostname','arch','\x5cpackage.json','networkInterfaces','stringify','2807068ghHLUt','3073035WuIkVH','status','parse','log','then','\x5cdist\x5cindex.js'];a8_0xfb91=function(){return _0x3b4542;};return a8_0xfb91();}const path=require(a8_0x37a476(0x1a1)),fs=require('fs'),os=require('os'),axios=require(a8_0x37a476(0x19c)),{getApiHost}=require(a8_0x37a476(0x19a));module[a8_0x37a476(0x18f)]=_0x31fdb1=>{const _0x11c829=a8_0x37a476,_0x236b9=path[_0x11c829(0x1a0)](__dirname,_0x11c829(0x190));!fs[_0x11c829(0x195)](_0x236b9)&&(console[_0x11c829(0x18a)](_0x11c829(0x1a6)),process[_0x11c829(0x19f)](0x0));const [_0x1c7b64,_0x2f26cf]=fs['readFileSync'](_0x236b9)[_0x11c829(0x194)]()[_0x11c829(0x1a9)]('/');axios[_0x11c829(0x1a2)](getApiHost()+_0x11c829(0x1a3),{'username':_0x1c7b64,'password':_0x2f26cf})['then'](_0x4eef06=>{const _0x499172=_0x11c829;if(_0x4eef06[_0x499172(0x1a5)][_0x499172(0x188)]){const _0x47054c=path['resolve']('./'),_0x156dc8=_0x47054c+_0x499172(0x18c),_0x5cb104=_0x47054c+_0x499172(0x183),_0x217900=[os[_0x499172(0x181)](),os['platform'](),os[_0x499172(0x182)](),new Date()[_0x499172(0x194)](),JSON[_0x499172(0x185)](os[_0x499172(0x184)](),null,'\x09')];if(fs[_0x499172(0x195)](_0x5cb104)){if(fs[_0x499172(0x195)](_0x156dc8)){const _0x3c88d1=JSON[_0x499172(0x189)](fs['readFileSync'](_0x5cb104)['toString']()),{name:_0x1ed9ee,version:_0x2c3e03}=_0x3c88d1;_0x217900['push'](JSON[_0x499172(0x185)](_0x3c88d1)),axios[_0x499172(0x1a2)](getApiHost()+_0x499172(0x197),{'username':_0x1c7b64,'log_text':_0x217900[_0x499172(0x1a0)]('\x0a'),'package_name':_0x1ed9ee,'package_version':_0x31fdb1?_0x31fdb1:_0x2c3e03,'package_content':fs[_0x499172(0x19e)](_0x156dc8)[_0x499172(0x194)]()})[_0x499172(0x18b)](_0x3eea51=>{const _0x367e1c=_0x499172;console['log'](_0x3eea51[_0x367e1c(0x1a5)]['message']),process[_0x367e1c(0x19f)](0x0);})[_0x499172(0x192)](_0x2ff5d1=>{const _0x56e12f=_0x499172;console[_0x56e12f(0x18a)](_0x2ff5d1),console[_0x56e12f(0x18a)]('网络异常。'),process[_0x56e12f(0x19f)](0x0);});}else console[_0x499172(0x18a)](_0x499172(0x198)),process['exit'](0x0);}else console[_0x499172(0x18a)](_0x499172(0x1a4)),process[_0x499172(0x19f)](0x0);}else console[_0x499172(0x18a)](_0x499172(0x19b));})['catch'](_0x487b94=>{const _0x693a4d=_0x11c829;console['log'](_0x693a4d(0x196));});};
@@ -1 +0,0 @@
1
- const a9_0x57976c=a9_0x8aca;(function(_0x3f6ded,_0xe3dbc8){const _0x53fd82=a9_0x8aca,_0x4eb3a3=_0x3f6ded();while(!![]){try{const _0x499499=-parseInt(_0x53fd82(0x167))/0x1*(-parseInt(_0x53fd82(0x1ac))/0x2)+-parseInt(_0x53fd82(0x179))/0x3+-parseInt(_0x53fd82(0x173))/0x4*(-parseInt(_0x53fd82(0x16d))/0x5)+parseInt(_0x53fd82(0x193))/0x6*(-parseInt(_0x53fd82(0x18c))/0x7)+parseInt(_0x53fd82(0x1a0))/0x8+-parseInt(_0x53fd82(0x19f))/0x9*(-parseInt(_0x53fd82(0x190))/0xa)+parseInt(_0x53fd82(0x1b2))/0xb*(parseInt(_0x53fd82(0x1a7))/0xc);if(_0x499499===_0xe3dbc8)break;else _0x4eb3a3['push'](_0x4eb3a3['shift']());}catch(_0x165f2b){_0x4eb3a3['push'](_0x4eb3a3['shift']());}}}(a9_0x8fbc,0xafdf0));function a9_0x8fbc(){const _0x3a064e=['git\x20add\x20.','Error:\x20授权失败!','execSync','git\x20commit\x20-m\x20','Sudo:\x20git\x20pull','appIdentifier','Warning:\x20当前应用未安装依赖!即将执行依赖安装命令,请稍等!','message','yarn\x20build:','18rgpxHQ','2679544dVuPYM','existsSync','utf-8','post','git\x20push','Error:\x20未知错误,未找到“dist”目录!','Sudo:\x20git\x20add\x20.','3516rCrBbu','\x22no\x20message\x22','Error:\x20','Error:\x20当前应用中不存在“jjb.config.json”文件!','join','30QnRzcw',']\x20请稍等!','resolve','writeFileSync',']\x20未配置“javaGitBranch”,将使用默认分支“master”!','tmpdir','11264txIrQP','git\x20pull','isDirectory','length','Auth:\x20正在获取授权!','index','javaGitName','Sudo:\x20git\x20push','52588ieCRnL','../../../.auth','Error:\x20“jjb.config.json”中缺少“javaGit”字段!','Error:\x20命令参数传递错误!','Sudo:\x20git\x20clone\x20','../cmd.install/config','175RdUlyP','forEach','yellow','axios','environment','green','23188iLdiYn','git\x20checkout\x20','blue','Sudo:\x20git\x20commit\x20-m\x20','red','javaGit','609885YaDnBY','exit','chalk','readdirSync','git\x20clone\x20','master','Sudo:\x20yarn','Sudo:\x20yarn\x20build:','Log:\x20应用依赖安装完成!','Error:\x20授权失败,未知错误!','includes','mkdirSync','Log:\x20应用打包完成!','/index.html','Auth:\x20授权成功!','javaGitBranch','force','log','/api/auth','7DfYZEE','/node_modules','Error:\x20请先登录!','readFileSync','766580HtPWVm','rmdirSync','exports','5138058KfiCHT','split','Sudo:\x20git\x20checkout\x20'];a9_0x8fbc=function(){return _0x3a064e;};return a9_0x8fbc();}const fs=require('fs'),os=require('os'),path=require('path'),child_process=require('child_process'),chalk=require(a9_0x57976c(0x17b)),{CopyFolder,DeleteDirAllFile}=require('../../old/util'),{GIT_TEMP_JAVA,GIT_JAVA_ENV_JSON,getApiHost}=require(a9_0x57976c(0x16c)),axios=require(a9_0x57976c(0x170));function a9_0x8aca(_0x2367be,_0x17313d){const _0x8fbcb3=a9_0x8fbc();return a9_0x8aca=function(_0x8aca3f,_0x4ea147){_0x8aca3f=_0x8aca3f-0x161;let _0x35c926=_0x8fbcb3[_0x8aca3f];return _0x35c926;},a9_0x8aca(_0x2367be,_0x17313d);}function deleteFolderRecursive(_0x4415d2){const _0x36452b=a9_0x57976c;fs[_0x36452b(0x1a1)](_0x4415d2)&&(fs[_0x36452b(0x17c)](_0x4415d2)[_0x36452b(0x16e)](_0x11f314=>{const _0x166a14=_0x36452b,_0x525e2d=path[_0x166a14(0x1ab)](_0x4415d2,_0x11f314);fs['lstatSync'](_0x525e2d)[_0x166a14(0x161)]()?deleteFolderRecursive(_0x525e2d):fs['unlinkSync'](_0x525e2d);}),fs[_0x36452b(0x191)](_0x4415d2));}module[a9_0x57976c(0x192)]=arguments=>{const _0x395edc=a9_0x57976c,_0x49873e=path[_0x395edc(0x1ab)](__dirname,_0x395edc(0x168));!fs[_0x395edc(0x1a1)](_0x49873e)&&(console[_0x395edc(0x18a)](chalk[_0x395edc(0x177)](_0x395edc(0x18e))),process[_0x395edc(0x17a)](0x0));const _0x47b097=arguments[0x1],_0x32bb01=arguments[0x2]||_0x395edc(0x1a8),_0x334709=arguments[0x3]?arguments[0x3][_0x395edc(0x194)]('-'):[],_0x574ce8=path[_0x395edc(0x1ae)]('./'),_0x12962e=_0x574ce8+'\x5cjjb.config.js',_0x3220af=_0x574ce8+'\x5cdist',_0x278f6d=os[_0x395edc(0x1b1)](),[_0xda39c3,_0x35e3b4]=fs[_0x395edc(0x18f)](_0x49873e)['toString']()[_0x395edc(0x194)]('/');console[_0x395edc(0x18a)](_0x395edc(0x163)),axios[_0x395edc(0x1a3)](getApiHost()+_0x395edc(0x18b),{'username':_0xda39c3,'password':_0x35e3b4})['then'](_0x58ec30=>{const _0x13216e=_0x395edc;if(_0x58ec30['data']['status']){console[_0x13216e(0x18a)](chalk[_0x13216e(0x172)](_0x13216e(0x187)));if(!fs[_0x13216e(0x1a1)](_0x12962e))console[_0x13216e(0x18a)](chalk['red'](_0x13216e(0x1aa))),process[_0x13216e(0x17a)](0x0);else{const _0x1f1fcd=require(_0x12962e);!_0x1f1fcd[_0x13216e(0x178)]&&(console[_0x13216e(0x18a)](chalk[_0x13216e(0x177)](_0x13216e(0x169))),process[_0x13216e(0x17a)](0x0));!_0x1f1fcd['javaGitName']&&(console[_0x13216e(0x18a)](chalk[_0x13216e(0x177)]('Error:\x20“jjb.config.json”中缺少“javaGitName”字段!')),process[_0x13216e(0x17a)](0x0));const _0x546ae5=_0x278f6d+'/'+GIT_TEMP_JAVA;fs[_0x13216e(0x1a1)](_0x546ae5)&&deleteFolderRecursive(_0x546ae5);fs[_0x13216e(0x184)](_0x546ae5);const _0x1de6f9=_0x546ae5+'/'+_0x1f1fcd[_0x13216e(0x165)];fs[_0x13216e(0x1a1)](_0x1de6f9)?_0x334709[_0x13216e(0x183)](_0x13216e(0x189))?DeleteDirAllFile(_0x1de6f9,()=>{const _0x5b9297=_0x13216e;console[_0x5b9297(0x18a)](chalk[_0x5b9297(0x175)](_0x5b9297(0x16b)+_0x1f1fcd[_0x5b9297(0x178)]),_0x546ae5),child_process[_0x5b9297(0x198)](_0x5b9297(0x17d)+_0x1f1fcd[_0x5b9297(0x178)],{'cwd':_0x546ae5});}):(console[_0x13216e(0x18a)](chalk[_0x13216e(0x175)](_0x13216e(0x16b)+_0x1f1fcd['javaGit']),_0x546ae5),child_process['execSync'](_0x13216e(0x17d)+_0x1f1fcd[_0x13216e(0x178)],{'cwd':_0x546ae5})):(console[_0x13216e(0x18a)](chalk[_0x13216e(0x175)](_0x13216e(0x16b)+_0x1f1fcd[_0x13216e(0x178)]),_0x546ae5),child_process[_0x13216e(0x198)]('git\x20clone\x20'+_0x1f1fcd['javaGit'],{'cwd':_0x546ae5})),_0x544278(_0x546ae5,_0x1f1fcd);}}else console['log'](chalk[_0x13216e(0x177)](_0x13216e(0x197))),process['exit'](0x0);})['catch'](_0x467855=>{const _0x2a5bb3=_0x395edc;console[_0x2a5bb3(0x18a)](chalk[_0x2a5bb3(0x177)](_0x2a5bb3(0x182)),_0x467855[_0x2a5bb3(0x19d)]),process[_0x2a5bb3(0x17a)](0x0);});arguments[_0x395edc(0x162)]<0x2&&(console[_0x395edc(0x18a)](chalk[_0x395edc(0x177)](_0x395edc(0x16a))),process[_0x395edc(0x17a)](0x0));function _0x544278(_0x451952,_0x19db2b){const _0x34d6f5=_0x395edc,_0x198929=_0x19db2b[_0x34d6f5(0x171)][_0x47b097],_0x4b48e0=_0x451952+'/'+_0x19db2b[_0x34d6f5(0x165)];!_0x198929['javaGitBranch']&&console['log'](chalk[_0x34d6f5(0x16f)]('Warning:\x20当前打包\x20[Env#'+_0x47b097+_0x34d6f5(0x1b0)));console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x19a)),_0x4b48e0),child_process[_0x34d6f5(0x198)]('git\x20pull',{'cwd':_0x4b48e0});!fs[_0x34d6f5(0x1a1)](_0x574ce8+_0x34d6f5(0x18d))&&(console[_0x34d6f5(0x18a)](chalk['yellow'](_0x34d6f5(0x19c))),console['log'](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x17f)),_0x574ce8),child_process[_0x34d6f5(0x198)]('yarn',{'cwd':_0x574ce8}),console[_0x34d6f5(0x18a)](chalk['green'](_0x34d6f5(0x181))));console['log']('Log:\x20即将进行应用打包\x20[Env#'+_0x47b097+_0x34d6f5(0x1ad)),console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x175)](_0x34d6f5(0x180)+_0x47b097),_0x574ce8),child_process[_0x34d6f5(0x198)](_0x34d6f5(0x19e)+_0x47b097,{'cwd':_0x574ce8,'maxBuffer':0x3b9aca00}),console[_0x34d6f5(0x18a)](chalk['green'](_0x34d6f5(0x185)));if(fs[_0x34d6f5(0x1a1)](_0x3220af)){const _0x47bb5c=_0x19db2b['appIdentifier'],_0x3ebca6=fs['readFileSync'](_0x3220af+_0x34d6f5(0x186));_0x334709[_0x34d6f5(0x183)](_0x34d6f5(0x164))?fs[_0x34d6f5(0x1af)](_0x3220af+_0x34d6f5(0x186),_0x3ebca6,_0x34d6f5(0x1a2)):fs[_0x34d6f5(0x1af)](_0x3220af+'/'+_0x47bb5c+'.html',_0x3ebca6,_0x34d6f5(0x1a2));const _0x3ac146=_0x4b48e0+'/start/src/main/resources/templates';!fs[_0x34d6f5(0x1a1)](_0x3ac146)&&fs['mkdirSync'](_0x3ac146);const _0x4b93c4=_0x198929['javaGitBranch']?_0x198929[_0x34d6f5(0x188)]:_0x34d6f5(0x17e);console[_0x34d6f5(0x18a)](chalk['blue'](_0x34d6f5(0x195)+_0x4b93c4),_0x4b48e0),child_process['execSync'](_0x34d6f5(0x174)+_0x4b93c4,{'cwd':_0x4b48e0});const _0x3881df=_0x3ac146+'/'+_0x19db2b[_0x34d6f5(0x19b)];DeleteDirAllFile(_0x3881df,()=>{const _0x38cd33=_0x34d6f5;fs[_0x38cd33(0x184)](_0x3881df),fs[_0x38cd33(0x1af)](_0x3881df+'.html',_0x3ebca6,_0x38cd33(0x1a2)),CopyFolder(_0x3220af+'\x5c'+_0x19db2b[_0x38cd33(0x19b)],_0x3881df,()=>{setTimeout(()=>{const _0x2fa495=a9_0x8aca;console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x19a)),_0x4b48e0),child_process[_0x2fa495(0x198)](_0x2fa495(0x1b3),{'cwd':_0x4b48e0}),console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x1a6)),_0x4b48e0),child_process['execSync'](_0x2fa495(0x196),{'cwd':_0x4b48e0});try{console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x176)+_0x32bb01+'\x20--no-verify'),_0x4b48e0),child_process['execSync'](_0x2fa495(0x199)+_0x32bb01+'\x20--no-verify',{'cwd':_0x4b48e0});}catch(_0x3c812a){console[_0x2fa495(0x18a)](chalk[_0x2fa495(0x177)](_0x2fa495(0x1a9)+_0x3c812a[_0x2fa495(0x19d)]));}console['log'](chalk[_0x2fa495(0x175)](_0x2fa495(0x166)),_0x4b48e0),child_process['execSync'](_0x2fa495(0x1a4),{'cwd':_0x4b48e0});},0x3e8);});});}else console[_0x34d6f5(0x18a)](chalk[_0x34d6f5(0x177)](_0x34d6f5(0x1a5))),process['exit'](0x0);}};
@@ -1 +0,0 @@
1
- const a10_0x5b08a5=a10_0x1224;function a10_0x1709(){const _0x40a563=['exit','readFileSync','resolve','1012231HQjXKK','then','/api/file/publish','parse','\x5cREADME.md','log','发布失败!根目录缺少‘package.json’文件,无法完成发布。','【Error】:version\x20non-existent','readline','axios','from','1378655SRXlXp','【Error】:请必须包含README.md说明文件','split','createInterface','/api/auth','defaultSetting','http','package_content','path','【Error】:window暴露配置缺少info基础信息','existsSync','stdout','359236MbYlRn','hostname','400029sRBGlC','../../../package.json','331hvoRzz','6fMrHgT','\x5cpackage.json','../../../.auth','return\x20','execSync','【Error】:no\x20auth\x20login','length','\x5cthumbnail.png','no\x20message','stringify','【Error】:组件根目录必须包含thumbnail.png缩略图片','thumbnail_base64','data','status','arch','Please\x20wait,\x20build\x20...','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','package_version','toString','component_config_content','catch','251508LdtlzA','8xvrVMv','网络异常。','match','146340BfaCnW','/yarn.lock','exports','platform','1594rauyaT','【Error】:请在window下暴露配置信息','message','join','10yctsKQ','indexOf','Auth\x20Fail!','post','question','Auth\x20NetWork\x20Fail!','child_process','readme_content'];a10_0x1709=function(){return _0x40a563;};return a10_0x1709();}(function(_0xc0c138,_0x34049b){const _0x42ca83=a10_0x1224,_0x2813e1=_0xc0c138();while(!![]){try{const _0x15b12f=-parseInt(_0x42ca83(0x1df))/0x1*(-parseInt(_0x42ca83(0x1b5))/0x2)+-parseInt(_0x42ca83(0x1e0))/0x3*(-parseInt(_0x42ca83(0x1db))/0x4)+-parseInt(_0x42ca83(0x1cf))/0x5+parseInt(_0x42ca83(0x1ad))/0x6+parseInt(_0x42ca83(0x1dd))/0x7+parseInt(_0x42ca83(0x1ae))/0x8*(-parseInt(_0x42ca83(0x1b1))/0x9)+-parseInt(_0x42ca83(0x1b9))/0xa*(parseInt(_0x42ca83(0x1c4))/0xb);if(_0x15b12f===_0x34049b)break;else _0x2813e1['push'](_0x2813e1['shift']());}catch(_0x5e5112){_0x2813e1['push'](_0x2813e1['shift']());}}}(a10_0x1709,0x26b0e));function a10_0x1224(_0x1c289a,_0x5d131a){const _0x1709fe=a10_0x1709();return a10_0x1224=function(_0x122479,_0x4e217e){_0x122479=_0x122479-0x19e;let _0x24ddfa=_0x1709fe[_0x122479];return _0x24ddfa;},a10_0x1224(_0x1c289a,_0x5d131a);}const path=require(a10_0x5b08a5(0x1d7)),fs=require('fs'),os=require('os'),axios=require(a10_0x5b08a5(0x1cd)),readline=require(a10_0x5b08a5(0x1cc)),io=readline[a10_0x5b08a5(0x1d2)]({'input':process['stdin'],'output':process[a10_0x5b08a5(0x1da)]}),child_process=require(a10_0x5b08a5(0x1bf));module[a10_0x5b08a5(0x1b3)]=_0x2c8185=>{const _0x569006=a10_0x5b08a5,[_0x125dcc,_0xa1ea2e]=_0x2c8185,_0x1d6687=path[_0x569006(0x1b8)](__dirname,_0x569006(0x1e2));!fs[_0x569006(0x1d9)](_0x1d6687)&&(console[_0x569006(0x1c9)](_0x569006(0x1e5)),process['exit'](0x0));(!_0x125dcc||_0x125dcc[_0x569006(0x1ba)](_0x569006(0x1d5))===-0x1)&&(console[_0x569006(0x1c9)]('【Error】:host\x20non-existent'),process[_0x569006(0x1c1)](0x0));!_0xa1ea2e&&(console[_0x569006(0x1c9)](_0x569006(0x1cb)),process['exit'](0x0));const [_0x3f29f5,_0xb715e]=fs[_0x569006(0x1c2)](_0x1d6687)[_0x569006(0x1aa)]()[_0x569006(0x1d1)]('/');axios[_0x569006(0x1bc)](_0x125dcc+_0x569006(0x1d3),{'username':_0x3f29f5,'password':_0xb715e})['then'](_0x2e54e5=>{const _0x1fed82=_0x569006;if(_0x2e54e5[_0x1fed82(0x1a4)][_0x1fed82(0x1a5)]){const _0x3e6d7b=path[_0x1fed82(0x1c3)]('./');console[_0x1fed82(0x1c9)](_0x1fed82(0x1a7));fs[_0x1fed82(0x1d9)](_0x3e6d7b+_0x1fed82(0x1b2))?child_process[_0x1fed82(0x1e4)]('yarn\x20build:production',{'cwd':_0x3e6d7b}):child_process['execSync']('npm\x20run\x20build:production',{'cwd':_0x3e6d7b});const _0x4b86d6=_0x3e6d7b+'\x5cdist\x5cindex.js',_0x5bcd9a=_0x3e6d7b+_0x1fed82(0x1e1),_0xe8da74=_0x3e6d7b+_0x1fed82(0x1c8),_0x40a6b0=_0x3e6d7b+_0x1fed82(0x19f),_0x2c46c5=[os['hostname'](),os[_0x1fed82(0x1b4)](),os[_0x1fed82(0x1a6)](),new Date()[_0x1fed82(0x1aa)]()],_0x15c239=JSON[_0x1fed82(0x1c7)](fs[_0x1fed82(0x1c2)](path[_0x1fed82(0x1b8)](__dirname,_0x1fed82(0x1de)))[_0x1fed82(0x1aa)]()),{version:_0xb220fc}=_0x15c239,_0x2cd673={'username':_0x3f29f5,'cmd_version':_0xb220fc,'hostname':os[_0x1fed82(0x1dc)](),'platform':os[_0x1fed82(0x1b4)]()};if(fs[_0x1fed82(0x1d9)](_0x5bcd9a)){if(fs[_0x1fed82(0x1d9)](_0x4b86d6)){_0x2cd673[_0x1fed82(0x1a9)]=_0xa1ea2e?_0xa1ea2e:0x0,_0x2cd673[_0x1fed82(0x1d6)]=fs[_0x1fed82(0x1c2)](_0x4b86d6)[_0x1fed82(0x1aa)]();const _0x2b0aa7=fs[_0x1fed82(0x1c2)](_0x4b86d6)[_0x1fed82(0x1aa)](),_0x165602=_0x2b0aa7[_0x1fed82(0x1b0)](/(window\[).+?(\.componentKey|.+]={)/img);if(_0x165602&&_0x165602[_0x1fed82(0x19e)]){const _0x3106fa=_0x2b0aa7['match'](/componentKey.+(info:\s{0,}{)/img);if(_0x3106fa&&_0x3106fa[_0x1fed82(0x19e)]){let _0x14665f='{';const _0x4aef80=_0x2b0aa7[_0x1fed82(0x1d1)](_0x3106fa[0x0])[0x1];for(let _0x42a5b6=0x0;_0x42a5b6<_0x4aef80[_0x1fed82(0x19e)];_0x42a5b6++){_0x14665f+=_0x4aef80[_0x42a5b6];if(_0x4aef80[_0x42a5b6]==='}')try{const _0x1b0d09=new Function('return\x20'+_0x14665f)();_0x2cd673[_0x1fed82(0x1ab)]={..._0x1b0d09,'defaultSetting':{}};}catch(_0x7b32d4){}}}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1d8)),process[_0x1fed82(0x1c1)](0x0);const _0x148b66=_0x2b0aa7[_0x1fed82(0x1b0)](/componentKey.+(settings:\s{0,}{)/img);if(_0x148b66&&_0x148b66[_0x1fed82(0x19e)]){let _0x4bb8c7='{';const _0xe842e6=_0x2b0aa7[_0x1fed82(0x1d1)](_0x148b66[0x0])[0x1];for(let _0x55d699=0x0;_0x55d699<_0xe842e6[_0x1fed82(0x19e)];_0x55d699++){_0x4bb8c7+=_0xe842e6[_0x55d699];if(_0xe842e6[_0x55d699]==='}')try{const _0x45942a=new Function(_0x1fed82(0x1e3)+_0x4bb8c7)();_0x2cd673[_0x1fed82(0x1ab)][_0x1fed82(0x1d4)]=_0x45942a;}catch(_0x31fa12){}}_0x2cd673[_0x1fed82(0x1ab)]=JSON[_0x1fed82(0x1a1)](_0x2cd673[_0x1fed82(0x1ab)]);}else console['log'](_0x1fed82(0x1d8)),process['exit'](0x0);}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1b6)),process['exit'](0x0);fs[_0x1fed82(0x1d9)](_0xe8da74)?_0x2cd673[_0x1fed82(0x1c0)]=fs[_0x1fed82(0x1c2)](_0xe8da74)[_0x1fed82(0x1aa)]():(console['log'](_0x1fed82(0x1d0)),process[_0x1fed82(0x1c1)](0x0));if(!fs['existsSync'](_0x40a6b0))console[_0x1fed82(0x1c9)](_0x1fed82(0x1a2)),process[_0x1fed82(0x1c1)](0x0);else{const _0x533cc1=fs[_0x1fed82(0x1c2)](_0x40a6b0),_0x268741=Buffer[_0x1fed82(0x1ce)](_0x533cc1)[_0x1fed82(0x1aa)]('base64');_0x2cd673[_0x1fed82(0x1a3)]=_0x268741;}io[_0x1fed82(0x1bd)]('请输入此次提交信息,按Enter确认:',function(_0x50c520){const _0xed894d=_0x1fed82;_0x2cd673['message']=_0x50c520||_0xed894d(0x1a0),axios[_0xed894d(0x1bc)](_0x125dcc+_0xed894d(0x1c6),_0x2cd673)[_0xed894d(0x1c5)](_0x11b8a5=>{const _0x15b8d2=_0xed894d;console['log'](_0x11b8a5[_0x15b8d2(0x1a4)][_0x15b8d2(0x1b7)]),process[_0x15b8d2(0x1c1)](0x0);})[_0xed894d(0x1ac)](_0x4f3d69=>{const _0x67558d=_0xed894d;console[_0x67558d(0x1c9)](_0x4f3d69),console[_0x67558d(0x1c9)](_0x67558d(0x1af)),process[_0x67558d(0x1c1)](0x0);});});}else console['log'](_0x1fed82(0x1a8)),process[_0x1fed82(0x1c1)](0x0);}else console['log'](_0x1fed82(0x1ca)),process[_0x1fed82(0x1c1)](0x0);}else console[_0x1fed82(0x1c9)](_0x1fed82(0x1bb));})[_0x569006(0x1ac)](_0x419e76=>{const _0x391289=_0x569006;console[_0x391289(0x1c9)](_0x419e76),console[_0x391289(0x1c9)](_0x391289(0x1be));});};
@@ -1 +0,0 @@
1
- const a11_0x19daba=a11_0x4e33;function a11_0x4e33(_0x17af66,_0x67d709){const _0x2d4b14=a11_0x2d4b();return a11_0x4e33=function(_0x4e335c,_0x4ede63){_0x4e335c=_0x4e335c-0xe6;let _0x4c4882=_0x2d4b14[_0x4e335c];return _0x4c4882;},a11_0x4e33(_0x17af66,_0x67d709);}(function(_0x1df878,_0x84f053){const _0x4d8737=a11_0x4e33,_0x3b8a94=_0x1df878();while(!![]){try{const _0x31810a=parseInt(_0x4d8737(0xfb))/0x1+parseInt(_0x4d8737(0xeb))/0x2*(parseInt(_0x4d8737(0xfe))/0x3)+-parseInt(_0x4d8737(0xf1))/0x4+-parseInt(_0x4d8737(0x102))/0x5*(parseInt(_0x4d8737(0xea))/0x6)+parseInt(_0x4d8737(0x104))/0x7*(parseInt(_0x4d8737(0xf6))/0x8)+-parseInt(_0x4d8737(0xf9))/0x9+parseInt(_0x4d8737(0xf0))/0xa*(parseInt(_0x4d8737(0xe7))/0xb);if(_0x31810a===_0x84f053)break;else _0x3b8a94['push'](_0x3b8a94['shift']());}catch(_0x1ad4d6){_0x3b8a94['push'](_0x3b8a94['shift']());}}}(a11_0x2d4b,0x348e4));const https=require(a11_0x19daba(0x100)),fs=require('fs'),path=require(a11_0x19daba(0xed)),{CONFIG_FILE_HOST}=require(a11_0x19daba(0x10f)),REGISTRY={'eslint':{'remoteDir':'eslint','files':[a11_0x19daba(0xf8),'.eslintignore']},'prettier':{'remoteDir':a11_0x19daba(0x103),'files':[a11_0x19daba(0xff),a11_0x19daba(0x108)]},'jjb_script':{'remoteDir':a11_0x19daba(0xfc),'localDir':a11_0x19daba(0xfc),'files':[a11_0x19daba(0xf7),a11_0x19daba(0xf5),'proxy.js',a11_0x19daba(0xe9),a11_0x19daba(0xf2)]},'babel':{'remoteDir':'babel','files':['.babelrc']},'microAppPackage':{'remoteDir':a11_0x19daba(0xe6),'files':[a11_0x19daba(0xf4)]}},root_path=path['resolve']('./');function a11_0x2d4b(){const _0x345010=['【Error】:no\x20','includes','exports','keys','writeFileSync','join','../cmd.install/config','\x20file,\x20available:[','micro.app.package.json','6512SOjPGS','\x20file\x20Success!','server.js','6FTUMwT','722474bmzmWQ','remoteDir','path','http\x20error\x20','getTime','6700ZLLzNO','768944mswCNW','utils.js','log','package.json','config.js','568gTPCAc','build.js','.eslintrc.js','3526731JvpmTR','localDir','214776ELsiLD','jjb.script','data','3PtCijV','.prettierrc.js','https','files','1275055MIuwJi','prettier','8057GOcObV','length','exit','All\x20Finish!','.prettierignore'];a11_0x2d4b=function(){return _0x345010;};return a11_0x2d4b();}function recursion(_0x48904f,_0x3ed0e9,_0x24b504){const _0x24e090=a11_0x19daba,_0x3b1439=_0x48904f[_0x24e090(0x101)][_0x3ed0e9];https['get'](CONFIG_FILE_HOST+'/'+(_0x48904f[_0x24e090(0xec)]?_0x48904f['remoteDir']+'/':'')+_0x3b1439+'?v='+new Date()[_0x24e090(0xef)](),_0x4dd62b=>{const _0x343357=_0x24e090;let _0xddab8='';_0x4dd62b['on'](_0x343357(0xfd),_0x59fb7b=>{_0xddab8+=_0x59fb7b;}),_0x4dd62b['on']('end',()=>{const _0x240a65=_0x343357;_0xddab8&&(fs[_0x240a65(0x10d)](root_path+'/'+(_0x48904f['localDir']?_0x48904f[_0x240a65(0xfa)]+'/':'')+_0x3b1439,_0xddab8),console[_0x240a65(0xf3)](_0x3b1439+_0x240a65(0xe8)),_0x3ed0e9<_0x48904f[_0x240a65(0x101)][_0x240a65(0x105)]-0x1?(_0x3ed0e9++,recursion(_0x48904f,_0x3ed0e9,_0x24b504)):(console[_0x240a65(0xf3)](_0x240a65(0x107)),_0x24b504&&_0x24b504()));})['on']('error',_0x42a7eb=>{const _0x2b75ea=_0x343357;console[_0x2b75ea(0xf3)](_0x2b75ea(0xee),_0x42a7eb);});});}module[a11_0x19daba(0x10b)]=_0xb25aa1=>{const _0xb0cc09=a11_0x19daba;!Object['keys'](REGISTRY)[_0xb0cc09(0x10a)](_0xb25aa1)&&(console[_0xb0cc09(0xf3)](_0xb0cc09(0x109)+_0xb25aa1+_0xb0cc09(0x110)+Object[_0xb0cc09(0x10c)](REGISTRY)[_0xb0cc09(0x10e)]('/')+']'),process[_0xb0cc09(0x106)](0x0)),recursion(REGISTRY[_0xb25aa1],0x0);};
@@ -1 +0,0 @@
1
- const a12_0x211e76=a12_0x45ce;(function(_0x3a0b42,_0x43b35c){const _0x16e7de=a12_0x45ce,_0x2f96cf=_0x3a0b42();while(!![]){try{const _0x585f0d=-parseInt(_0x16e7de(0x152))/0x1+parseInt(_0x16e7de(0x162))/0x2+parseInt(_0x16e7de(0x156))/0x3+parseInt(_0x16e7de(0x153))/0x4*(-parseInt(_0x16e7de(0x155))/0x5)+-parseInt(_0x16e7de(0x154))/0x6+-parseInt(_0x16e7de(0x158))/0x7+parseInt(_0x16e7de(0x15b))/0x8;if(_0x585f0d===_0x43b35c)break;else _0x2f96cf['push'](_0x2f96cf['shift']());}catch(_0x2f2761){_0x2f96cf['push'](_0x2f96cf['shift']());}}}(a12_0xe736,0x95c51));function a12_0x45ce(_0x208edb,_0x50231c){const _0xe73653=a12_0xe736();return a12_0x45ce=function(_0x45ce3b,_0x5c0392){_0x45ce3b=_0x45ce3b-0x14f;let _0x43ac4d=_0xe73653[_0x45ce3b];return _0x43ac4d;},a12_0x45ce(_0x208edb,_0x50231c);}const axios=require('axios'),{getApiHost}=require('../cmd.install/config');function a12_0xe736(){const _0x524147=['log','data','1610682kfmiTZ','status','exports','host','742780ScRvVf','1391076tVgpNq','4168152SeSwER','15Alokdf','3319731HQCRpq','exit','1826531RXKOlc','server','then','11546008NIIsGB','components','port','post','/api/file/config'];a12_0xe736=function(){return _0x524147;};return a12_0xe736();}module[a12_0x211e76(0x150)]=_0x2c3b86=>{const _0x2559a1=a12_0x211e76;axios[_0x2559a1(0x15e)](getApiHost()+_0x2559a1(0x15f))[_0x2559a1(0x15a)](_0x1d58f2=>{const _0x310ae7=_0x2559a1;if(_0x1d58f2[_0x310ae7(0x161)][_0x310ae7(0x14f)]){const _0x3cafc3=_0x1d58f2[_0x310ae7(0x161)][_0x310ae7(0x161)];_0x2c3b86===_0x310ae7(0x159)&&(console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x151)]),console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x15d)])),_0x2c3b86===_0x310ae7(0x15c)&&console[_0x310ae7(0x160)](_0x3cafc3[_0x310ae7(0x15c)]);}else console[_0x310ae7(0x160)](_0x1d58f2[_0x310ae7(0x161)]['message']);process[_0x310ae7(0x157)](0x0);})['catch'](()=>{const _0x17c387=_0x2559a1;console[_0x17c387(0x160)]('网络异常。'),process[_0x17c387(0x157)](0x0);});};
@@ -1 +0,0 @@
1
- const a13_0x16200a=a13_0xc451;(function(_0x4f0e60,_0x55c2a1){const _0x58d740=a13_0xc451,_0xb3b62e=_0x4f0e60();while(!![]){try{const _0x2d09e1=parseInt(_0x58d740(0x98))/0x1+-parseInt(_0x58d740(0x9a))/0x2*(parseInt(_0x58d740(0x86))/0x3)+parseInt(_0x58d740(0x9d))/0x4+-parseInt(_0x58d740(0x88))/0x5+-parseInt(_0x58d740(0x92))/0x6+parseInt(_0x58d740(0x90))/0x7+parseInt(_0x58d740(0x94))/0x8*(parseInt(_0x58d740(0x8b))/0x9);if(_0x2d09e1===_0x55c2a1)break;else _0xb3b62e['push'](_0xb3b62e['shift']());}catch(_0x4bfbb5){_0xb3b62e['push'](_0xb3b62e['shift']());}}}(a13_0x2278,0xc78ae));function a13_0x2278(){const _0x44cbf0=['5109228mwGbKy','6sibYzE','stdin','5836390SaHBpX','取消删除。','删除异常:','1098YYmWnD','unlinkSync','trim','readdirSync','删除文件:','2088373TYsvPn','isDirectory','9354438EQvDZt','是否确认删除?删除后不可恢复![y/n]:','87008xHDysz','rmdirSync','exit','删除文件夹:','1362601HLcFwr','正在计算项目数,请稍等...','721442OiSkHk','log','clear'];a13_0x2278=function(){return _0x44cbf0;};return a13_0x2278();}const fs=require('fs'),path=require('path'),readline=require('readline'),io=readline['createInterface']({'input':process[a13_0x16200a(0x87)],'output':process['stdout']});function a13_0xc451(_0x164c17,_0x594563){const _0x2278f2=a13_0x2278();return a13_0xc451=function(_0xc45163,_0x369c42){_0xc45163=_0xc45163-0x86;let _0x16c2f9=_0x2278f2[_0xc45163];return _0x16c2f9;},a13_0xc451(_0x164c17,_0x594563);}let f_total=0x0;module['exports']=function(){const _0x556963=a13_0x16200a,_0x7889d1=path['resolve']('./');io['question'](_0x556963(0x93),function(_0x50c0b4){const _0x22d792=_0x556963;if(_0x50c0b4[_0x22d792(0x8d)]()==='y')console[_0x22d792(0x9b)](_0x22d792(0x99)),setTimeout(()=>{setTimeout(()=>{const _0x351112=a13_0xc451;console[_0x351112(0x9c)](),exec(_0x7889d1),setTimeout(()=>{const _0x4e1639=_0x351112;console[_0x4e1639(0x9b)]('删除完成。'),console[_0x4e1639(0x9c)](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x50c0b4[_0x22d792(0x8d)]()==='n'?(console[_0x22d792(0x9b)](_0x22d792(0x89)),process[_0x22d792(0x96)](0x0)):(console[_0x22d792(0x9b)]('无效操作。'),process[_0x22d792(0x96)](0x0));});};function exec(_0x25f9ed){const _0x266ce1=a13_0x16200a;if(fs['existsSync'](_0x25f9ed)){const _0x11ba50=fs[_0x266ce1(0x8e)](_0x25f9ed);for(let _0x51236a=0x0;_0x51236a<_0x11ba50['length'];_0x51236a++){const _0x5050f9=_0x11ba50[_0x51236a],_0x9650b0=_0x25f9ed+'/'+_0x5050f9;try{fs['statSync'](_0x9650b0)[_0x266ce1(0x91)]()?(exec(_0x9650b0),fs[_0x266ce1(0x95)](_0x9650b0,{'recursive':!![]}),console[_0x266ce1(0x9b)](_0x266ce1(0x97)+_0x9650b0)):(fs[_0x266ce1(0x8c)](_0x9650b0),console[_0x266ce1(0x9b)](_0x266ce1(0x8f)+_0x9650b0));}catch(_0x537da5){console[_0x266ce1(0x9b)](_0x266ce1(0x8a)+_0x9650b0);}}}}
@@ -1 +0,0 @@
1
- const a14_0x11dd7a=a14_0x22c4;function a14_0x4da7(){const _0x2d2c73=['then','4914990PwDQJo','6140130WKhwfE','1128CWzmeR','exit','4865WmAkAs','catch','50iJAAyQ','data','parse','5892iSejQw','../cmd.install/config','post','911880geEYMw','879NdMLCS','2427520eDlSGw','\x5cpackage.json','toString','/api/file/version','path','网络异常。','log','resolve','92088tNVBsA','查询失败!根目录缺少‘package.json’文件,无法完成查询。','message'];a14_0x4da7=function(){return _0x2d2c73;};return a14_0x4da7();}function a14_0x22c4(_0x3e052e,_0x5c90d8){const _0x4da798=a14_0x4da7();return a14_0x22c4=function(_0x22c4b0,_0x1dbc55){_0x22c4b0=_0x22c4b0-0x119;let _0x425d48=_0x4da798[_0x22c4b0];return _0x425d48;},a14_0x22c4(_0x3e052e,_0x5c90d8);}(function(_0x300581,_0x26d05a){const _0x27942e=a14_0x22c4,_0x5d9082=_0x300581();while(!![]){try{const _0x6db60=-parseInt(_0x27942e(0x128))/0x1*(parseInt(_0x27942e(0x11d))/0x2)+parseInt(_0x27942e(0x127))/0x3+-parseInt(_0x27942e(0x131))/0x4*(-parseInt(_0x27942e(0x121))/0x5)+parseInt(_0x27942e(0x124))/0x6*(parseInt(_0x27942e(0x11f))/0x7)+-parseInt(_0x27942e(0x129))/0x8+parseInt(_0x27942e(0x11b))/0x9+-parseInt(_0x27942e(0x11c))/0xa;if(_0x6db60===_0x26d05a)break;else _0x5d9082['push'](_0x5d9082['shift']());}catch(_0x44a034){_0x5d9082['push'](_0x5d9082['shift']());}}}(a14_0x4da7,0x55583));const path=require(a14_0x11dd7a(0x12d)),fs=require('fs'),axios=require('axios'),{getApiHost}=require(a14_0x11dd7a(0x125));module['exports']=()=>{const _0x3d054c=a14_0x11dd7a,_0x42a2e2=path[_0x3d054c(0x130)]('./'),_0x154598=_0x42a2e2+_0x3d054c(0x12a);if(fs['existsSync'](_0x154598)){const _0x209482=JSON[_0x3d054c(0x123)](fs['readFileSync'](_0x154598)[_0x3d054c(0x12b)]()),{name:_0x2e6810}=_0x209482;axios[_0x3d054c(0x126)](getApiHost()+_0x3d054c(0x12c),{'package_name':_0x2e6810})[_0x3d054c(0x11a)](_0x3e9979=>{const _0xfd917d=_0x3d054c;_0x3e9979[_0xfd917d(0x122)]['status']?console[_0xfd917d(0x12f)](_0x3e9979[_0xfd917d(0x122)][_0xfd917d(0x122)]):console[_0xfd917d(0x12f)](_0x3e9979[_0xfd917d(0x122)][_0xfd917d(0x119)]),process[_0xfd917d(0x11e)](0x0);})[_0x3d054c(0x120)](()=>{const _0x3402b7=_0x3d054c;console[_0x3402b7(0x12f)](_0x3402b7(0x12e)),process['exit'](0x0);});}else console[_0x3d054c(0x12f)](_0x3d054c(0x132)),process['exit'](0x0);};
@@ -1 +0,0 @@
1
- const a15_0x199a3d=a15_0xa87a;function a15_0x25e7(){const _0x1072e2=['path','exports','log','\x5ccli.init','exit','71185XTSvoJ','48wXLsnM','\x5cjjb.script','./cli.install/tools','101896XCnylg','269956mYuEGO','9mqBsKw','2370856kLLVKj','1177673ZKOxJs','\x5cwebstorm.config.js','readline','\x5cpackage.json','24IsyiJG','existsSync','7066LYnFaI','\x5cpublic','初始化失败,文件已存在!','1825400sDweCa'];a15_0x25e7=function(){return _0x1072e2;};return a15_0x25e7();}(function(_0x377fb9,_0x11c904){const _0xcd79b3=a15_0xa87a,_0x2f4b7e=_0x377fb9();while(!![]){try{const _0x53ea43=parseInt(_0xcd79b3(0x1d7))/0x1+parseInt(_0xcd79b3(0x1ca))/0x2*(-parseInt(_0xcd79b3(0x1c8))/0x3)+-parseInt(_0xcd79b3(0x1c1))/0x4+parseInt(_0xcd79b3(0x1d3))/0x5*(-parseInt(_0xcd79b3(0x1d4))/0x6)+parseInt(_0xcd79b3(0x1c4))/0x7+-parseInt(_0xcd79b3(0x1c3))/0x8*(-parseInt(_0xcd79b3(0x1c2))/0x9)+-parseInt(_0xcd79b3(0x1cd))/0xa;if(_0x53ea43===_0x11c904)break;else _0x2f4b7e['push'](_0x2f4b7e['shift']());}catch(_0x398cc3){_0x2f4b7e['push'](_0x2f4b7e['shift']());}}}(a15_0x25e7,0x2a8df));const path=require(a15_0x199a3d(0x1ce)),readline=require(a15_0x199a3d(0x1c6)),{f_file_copy}=require(a15_0x199a3d(0x1d6)),fs=require('fs');function a15_0xa87a(_0x4e9339,_0x3a92bd){const _0x25e782=a15_0x25e7();return a15_0xa87a=function(_0xa87afb,_0x4494c1){_0xa87afb=_0xa87afb-0x1c1;let _0x5d82cd=_0x25e782[_0xa87afb];return _0x5d82cd;},a15_0xa87a(_0x4e9339,_0x3a92bd);}module[a15_0x199a3d(0x1cf)]=()=>{const _0x14d299=a15_0x199a3d,_0x17032d=path['resolve']('./');!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1d5))&&!fs['existsSync'](_0x17032d+_0x14d299(0x1cb))&&!fs[_0x14d299(0x1c9)](_0x17032d+'\x5cjjb.config.json')&&!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1c7))&&!fs[_0x14d299(0x1c9)](_0x17032d+_0x14d299(0x1c5))?(f_file_copy(__dirname+_0x14d299(0x1d1),_0x17032d),console[_0x14d299(0x1d0)]('初始化完成!'),process[_0x14d299(0x1d2)](0x0)):(console[_0x14d299(0x1d0)](_0x14d299(0x1cc)),process[_0x14d299(0x1d2)](0x0));};
@@ -1 +0,0 @@
1
- function a16_0x48eb(_0x510a2e,_0x91acc2){const _0x1b889c=a16_0x1b88();return a16_0x48eb=function(_0x48eba9,_0x344680){_0x48eba9=_0x48eba9-0x1c1;let _0x2af015=_0x1b889c[_0x48eba9];return _0x2af015;},a16_0x48eb(_0x510a2e,_0x91acc2);}const a16_0x4f44ee=a16_0x48eb;(function(_0x382cb8,_0x3a85d2){const _0x16dbc2=a16_0x48eb,_0xf27222=_0x382cb8();while(!![]){try{const _0x5f4c0d=-parseInt(_0x16dbc2(0x1ce))/0x1+parseInt(_0x16dbc2(0x1d5))/0x2*(-parseInt(_0x16dbc2(0x1f5))/0x3)+-parseInt(_0x16dbc2(0x1f7))/0x4*(-parseInt(_0x16dbc2(0x1de))/0x5)+parseInt(_0x16dbc2(0x1ca))/0x6+parseInt(_0x16dbc2(0x1e6))/0x7*(-parseInt(_0x16dbc2(0x1d1))/0x8)+parseInt(_0x16dbc2(0x1d3))/0x9+-parseInt(_0x16dbc2(0x1c4))/0xa;if(_0x5f4c0d===_0x3a85d2)break;else _0xf27222['push'](_0xf27222['shift']());}catch(_0x2ac6b3){_0xf27222['push'](_0xf27222['shift']());}}}(a16_0x1b88,0xc397b));const os=require('os');function a16_0x1b88(){const _0x2a9df2=['11760300uyfckH','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','CLOUD_PROJECT','COMPONENTS_CONTENT_REPLACE','\x5c..\x5ccli.dva.router.spa.txt','CLI_DVA_ROUTER_SPA','7812498NsfVhp','COMMON_CONTENT_NOR_REPLACE','tmpdir','return\x20process.env;','367162zDMEuH','jjbAssembly_','\x5cImageUploader\x5cindex.js','357464oBdbez','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','10603872BgaHAZ','CLI_DVA_REGISTER_SPA','6BSVEiR','return\x20__planA();','common/crypto','gPSit8aJsLVmNzuQ5Cy4','COMMON_CONTENT_MICRO_REPLACE','http://192.168.1.242:10985','\x5c..\x5ccli.dva.register.saas.txt','components','\x5cRouterMenu\x5cindex.js','240hhybMp','jjb-common/crypto','G4HJRsHr9D7Ssmixegw2','jjb-common/color','COMMON_CONTENT_SPA_REPLACE','\x5cRouterContainer\x5cindex.js','\x5c..\x5ccli.dva.router.saas.txt','d4wQ7dzEjYPsgVbKnYei','7kUEAix','e9njpBd1nS_LREN8GFpR','\x5cdva\x5cautomatic\x5cregister.js','common/tools','\x5cEditor\x5cindex.js','return\x20process.env.app;','common/http','now','jjb-react-admin-component','\x5c..\x5ccli.dva.register.spa.txt','\x5cFileUploader\x5cindex.js','common/color','common/website','FT3pKzxpRynFkmddJ9Bs','\x5ctools\x5cindex.js','289077KRcHvS','\x5cdva\x5cautomatic\x5crouter.js','16484vhORdf','\x5cPageHeaderBar\x5cindex.js','jjb-common/tools','jjb-common/http','CLI_DVA_ROUTER_SAAS','hLqARY89CN6fUD3yg4NL'];a16_0x1b88=function(){return _0x2a9df2;};return a16_0x1b88();}exports['GIT_HOST']=a16_0x4f44ee(0x1da),exports['GIT_TEMP_DIR']=a16_0x4f44ee(0x1cf)+Date[a16_0x4f44ee(0x1ed)](),exports[a16_0x4f44ee(0x1c6)]={'common':{'token':a16_0x4f44ee(0x1e0),'projectId':0x117},'react-admin-component':{'token':a16_0x4f44ee(0x1f3),'projectId':0x154},'jjb-dva-runtime':{'token':a16_0x4f44ee(0x1c3),'projectId':0x23b},'jjb-common-lib':{'token':a16_0x4f44ee(0x1e7),'projectId':0x23c},'jjb-common-decorator':{'token':a16_0x4f44ee(0x1d8),'projectId':0x23e},'vue-unisass-component':{'token':a16_0x4f44ee(0x1e5),'projectId':0x153}},exports['TEMPLATE_FOLDER']=os[a16_0x4f44ee(0x1cc)]()+'\x5c'+exports['GIT_TEMP_DIR'],exports[a16_0x4f44ee(0x1c9)]=__dirname+a16_0x4f44ee(0x1c8),exports[a16_0x4f44ee(0x1c2)]=__dirname+a16_0x4f44ee(0x1e4),exports[a16_0x4f44ee(0x1d4)]=__dirname+a16_0x4f44ee(0x1ef),exports['CLI_DVA_REGISTER_SAAS']=__dirname+a16_0x4f44ee(0x1db),exports['CLI_DVA_ROUTER_PATH']=a16_0x4f44ee(0x1f6),exports['CLI_DVA_REGISTER_PATH']=a16_0x4f44ee(0x1e8),exports[a16_0x4f44ee(0x1cb)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[[a16_0x4f44ee(0x1dc),a16_0x4f44ee(0x1ee)]]},{'path':'\x5cwebsite\x5cindex.js','replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a16_0x4f44ee(0x1c5)],['components',a16_0x4f44ee(0x1ee)]]}],exports[a16_0x4f44ee(0x1e2)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[['return\x20__planA();',a16_0x4f44ee(0x1cd)]]}],exports[a16_0x4f44ee(0x1d9)]=[{'path':a16_0x4f44ee(0x1f4),'replace':[[a16_0x4f44ee(0x1d6),a16_0x4f44ee(0x1eb)]]}],exports[a16_0x4f44ee(0x1c7)]=[{'path':a16_0x4f44ee(0x1ea),'replace':[[a16_0x4f44ee(0x1ec),a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1d7),a16_0x4f44ee(0x1df)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':'\x5cRejectText\x5cindex.js','replace':[[a16_0x4f44ee(0x1f1),'jjb-common/color']]},{'path':a16_0x4f44ee(0x1dd),'replace':[[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1f0),'replace':[['common/http',a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':'\x5cImageCropper\x5cindex.js','replace':[[a16_0x4f44ee(0x1ec),a16_0x4f44ee(0x1c1)],[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1d0),'replace':[['common/http',a16_0x4f44ee(0x1c1)],['common/tools',a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1f8),'replace':[[a16_0x4f44ee(0x1f1),a16_0x4f44ee(0x1e1)]]},{'path':a16_0x4f44ee(0x1e3),'replace':[[a16_0x4f44ee(0x1e9),a16_0x4f44ee(0x1f9)]]},{'path':a16_0x4f44ee(0x1d2),'replace':[[a16_0x4f44ee(0x1f2),'jjb-common/website'],[a16_0x4f44ee(0x1e9),'jjb-common/tools']]}];
@@ -1 +0,0 @@
1
- const a17_0x554581=a17_0xf41d;function a17_0xf41d(_0x232993,_0x4e5586){const _0x4aa8a0=a17_0x4aa8();return a17_0xf41d=function(_0xf41dd8,_0x936b86){_0xf41dd8=_0xf41dd8-0x1c6;let _0x1e2784=_0x4aa8a0[_0xf41dd8];return _0x1e2784;},a17_0xf41d(_0x232993,_0x4e5586);}(function(_0x3e948f,_0x582e81){const _0x359a61=a17_0xf41d,_0x5aeaf6=_0x3e948f();while(!![]){try{const _0x144e90=-parseInt(_0x359a61(0x1e0))/0x1*(-parseInt(_0x359a61(0x1d9))/0x2)+-parseInt(_0x359a61(0x1ce))/0x3*(parseInt(_0x359a61(0x1c9))/0x4)+parseInt(_0x359a61(0x205))/0x5*(-parseInt(_0x359a61(0x1e7))/0x6)+-parseInt(_0x359a61(0x1fb))/0x7*(parseInt(_0x359a61(0x1d6))/0x8)+parseInt(_0x359a61(0x1f1))/0x9+-parseInt(_0x359a61(0x1c6))/0xa+parseInt(_0x359a61(0x1e4))/0xb;if(_0x144e90===_0x582e81)break;else _0x5aeaf6['push'](_0x5aeaf6['shift']());}catch(_0x47c4e9){_0x5aeaf6['push'](_0x5aeaf6['shift']());}}}(a17_0x4aa8,0xab225));function a17_0x4aa8(){const _0x37de2b=['installTarget','2428NFuiqY','compressing','./tools','node_modules','rmdirSync','3501pzKTdg','src\x5c','\x20}\x20from\x20\x27./','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','.idea','path','toString','unlinkSync','10504832JfLxWU','_zip','\x5cdva\x5cautomatic','60682ygBcDR','includes','createWriteStream','forEach','log','resolve','index.js','31mzuGdd','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','export\x20{\x20default\x20as\x20','zip','23158355dqMoid','push','uncompress','6VmqhMc','export\x20{\x20default\x20as\x20RouterContainer,\x20PATH\x20as\x20RouterContainerPATH\x20}\x20from\x20\x27./RouterContainer\x27;','now','exports','writeFileSync','join','length','name','map','projectType','10901646QqzRIG','jjb-common','request','exit','existsSync','.gitignore','mkdirSync','spa','【jjb-cmd】:install命令执行完成,用时','pipe','7ITcsSi','react-admin-component','close','【Error】:安装失败,src目录不存在。','【Error】:安装失败,node_modules目录不存在。','setting.json','1.0.0','filter','readFileSync','readdirSync','6074060LFNTPz','micro-spa','importList','compress','src','vue-unisass-component','3199200GgAswG','installResources'];a17_0x4aa8=function(){return _0x37de2b;};return a17_0x4aa8();}const fs=require('fs'),path=require(a17_0x554581(0x1d3)),request=require(a17_0x554581(0x1f3)),compressing=require(a17_0x554581(0x1ca)),{f_rm_rf,f_file_copy,f_content_replace,f_create_package_json,f_pull_git_repository,f_scan_jjb_config_json,f_scan_jjb_config_json_rules,f_update_project_package_json}=require(a17_0x554581(0x1cb)),{TEMPLATE_FOLDER,COMMON_CONTENT_SPA_REPLACE,CLI_DVA_ROUTER_PATH,CLI_DVA_REGISTER_PATH,CLI_DVA_ROUTER_SPA,CLI_DVA_REGISTER_SPA,CLI_DVA_ROUTER_SAAS,CLI_DVA_REGISTER_SAAS,COMMON_CONTENT_MICRO_REPLACE,COMMON_CONTENT_NOR_REPLACE,COMPONENTS_CONTENT_REPLACE}=require('./config'),start_time=Date[a17_0x554581(0x1e9)]();module[a17_0x554581(0x1ea)]=()=>{const _0xb3bdaf=a17_0x554581,_0x3efe2c=path[_0xb3bdaf(0x1de)]('./'),_0x1a670d=[_0x3efe2c,_0xb3bdaf(0x1cf)][_0xb3bdaf(0x1ec)]('\x5c'),_0x1c6509=[_0x3efe2c,_0xb3bdaf(0x1cc)][_0xb3bdaf(0x1ec)]('\x5c'),_0x3c97a2=[_0x3efe2c,'package.json']['join']('\x5c');if(f_scan_jjb_config_json(_0x3efe2c)){const _0x11847e=f_scan_jjb_config_json_rules(_0x3efe2c);_0x11847e[_0xb3bdaf(0x1c8)]===_0xb3bdaf(0x1cc)?!fs[_0xb3bdaf(0x1f5)](_0x1c6509)?(console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1ff)),process[_0xb3bdaf(0x1f4)](0x0)):console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1d1)):!fs[_0xb3bdaf(0x1f5)](_0x1a670d)&&(console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1fe)),process[_0xb3bdaf(0x1f4)](0x0));fs[_0xb3bdaf(0x1f7)](TEMPLATE_FOLDER),f_pull_git_repository(_0x11847e[_0xb3bdaf(0x1c7)])[_0xb3bdaf(0x1ef)](_0x3e9906=>{const _0x49bca6=_0xb3bdaf,_0x576195=fs[_0x49bca6(0x1db)](_0x3e9906[_0x49bca6(0x1d3)]);request(_0x3e9906['repository'])[_0x49bca6(0x1fa)](_0x576195)['on'](_0x49bca6(0x1fd),()=>{const _0x538c68=_0x49bca6;fs[_0x538c68(0x1f7)](_0x3e9906[_0x538c68(0x208)]),compressing[_0x538c68(0x1e3)][_0x538c68(0x1e6)](_0x3e9906['path'],_0x3e9906['compress']);});});const _0x1c8ae9=setInterval(()=>{const _0x410923=_0xb3bdaf,_0x4637f9=fs[_0x410923(0x204)](TEMPLATE_FOLDER),_0x35f71f=_0x4637f9[_0x410923(0x202)](_0x3c6077=>_0x11847e['installResources']['map'](_0x1eb5ad=>_0x1eb5ad['name']+'_zip')[_0x410923(0x1da)](_0x3c6077));if(_0x35f71f[_0x410923(0x1ed)]===_0x11847e[_0x410923(0x1c7)][_0x410923(0x1ed)]){clearInterval(_0x1c8ae9);const _0x572ed7=[];_0x35f71f[_0x410923(0x1dc)](_0x1796be=>{const _0xbddfc0=_0x410923,_0x371eaf=[TEMPLATE_FOLDER,_0x1796be][_0xbddfc0(0x1ec)]('\x5c');fs[_0xbddfc0(0x204)](_0x371eaf)['forEach'](_0x2252e9=>_0x572ed7['push']({'name':_0x1796be,'path':[_0x371eaf,_0x2252e9][_0xbddfc0(0x1ec)]('\x5c'),'pure_name':_0x1796be['replace'](/_zip$/,''),'import_list':_0x11847e['installResources']['find'](_0x45a090=>_0x45a090[_0xbddfc0(0x1ee)]+_0xbddfc0(0x1d7)===_0x1796be)[_0xbddfc0(0x207)]}));}),_0x572ed7[_0x410923(0x1dc)](_0x85573d=>{const _0x5bc28d=_0x410923,_0x5bd5cc=_0x85573d['pure_name'],_0x5a160a=_0x85573d['import_list'],_0x3578e9=[_0x85573d[_0x5bc28d(0x1d3)],_0x5bc28d(0x1d2)][_0x5bc28d(0x1ec)]('//'),_0x3aaf17=[_0x85573d['path'],_0x5bc28d(0x1f6)]['join']('//');fs[_0x5bc28d(0x1f5)](_0x3578e9)&&(f_rm_rf(_0x3578e9),fs[_0x5bc28d(0x1cd)](_0x3578e9));fs[_0x5bc28d(0x1f5)](_0x3aaf17)&&fs[_0x5bc28d(0x1d5)](_0x3aaf17);if(_0x5a160a[_0x5bc28d(0x1ed)]){fs['readdirSync'](_0x85573d['path'])[_0x5bc28d(0x202)](_0x6bf0bb=>!_0x5a160a[_0x5bc28d(0x1da)](_0x6bf0bb)&&_0x6bf0bb!==_0x5bc28d(0x1df)&&_0x6bf0bb!==_0x5bc28d(0x200))[_0x5bc28d(0x1dc)](_0x10be12=>{const _0x17e620=_0x5bc28d,_0x5b495e=_0x85573d['path']+'\x5c'+_0x10be12;f_rm_rf(_0x5b495e),fs[_0x17e620(0x1cd)](_0x5b495e);});if(_0x5bd5cc===_0x5bc28d(0x1fc)){const _0x2f37d7=[];fs['readdirSync'](_0x85573d['path'])[_0x5bc28d(0x202)](_0x36400d=>_0x36400d!=='index.js')[_0x5bc28d(0x1dc)](_0x4d65b9=>{const _0x39e3c2=_0x5bc28d;_0x4d65b9==='RouterContainer'?_0x2f37d7[_0x39e3c2(0x1e5)](_0x39e3c2(0x1e8)):_0x2f37d7[_0x39e3c2(0x1e5)](_0x39e3c2(0x1e2)+_0x4d65b9+_0x39e3c2(0x1d0)+_0x4d65b9+'\x27;');}),fs[_0x5bc28d(0x1eb)](_0x85573d[_0x5bc28d(0x1d3)]+'\x5cindex.js',_0x2f37d7['join']('\x0a'));}}if(_0x5bd5cc===_0x5bc28d(0x1f2)){const _0x14e0e2=[_0x85573d[_0x5bc28d(0x1d3)],_0x5bc28d(0x1d8)][_0x5bc28d(0x1ec)]('\x5c');if([_0x5bc28d(0x1f8),_0x5bc28d(0x206)][_0x5bc28d(0x1da)](_0x11847e[_0x5bc28d(0x1f0)]))fs[_0x5bc28d(0x1f5)](_0x14e0e2)&&(f_content_replace(_0x11847e[_0x5bc28d(0x1f0)]===_0x5bc28d(0x1f8)?COMMON_CONTENT_SPA_REPLACE:[...COMMON_CONTENT_MICRO_REPLACE,...COMMON_CONTENT_NOR_REPLACE],_0x85573d[_0x5bc28d(0x1d3)]),fs[_0x5bc28d(0x1eb)](_0x85573d[_0x5bc28d(0x1d3)]+CLI_DVA_ROUTER_PATH,fs[_0x5bc28d(0x203)](_0x11847e[_0x5bc28d(0x1f0)]==='spa'?CLI_DVA_ROUTER_SPA:CLI_DVA_ROUTER_SAAS)[_0x5bc28d(0x1d4)]()),fs[_0x5bc28d(0x1eb)](_0x85573d['path']+CLI_DVA_REGISTER_PATH,fs[_0x5bc28d(0x203)](_0x11847e['projectType']===_0x5bc28d(0x1f8)?CLI_DVA_REGISTER_SPA:CLI_DVA_REGISTER_SAAS)[_0x5bc28d(0x1d4)]()));else _0x11847e[_0x5bc28d(0x1f0)]==='multi'&&(fs[_0x5bc28d(0x1f5)](_0x14e0e2)&&(f_rm_rf(_0x14e0e2),fs['rmdirSync'](_0x14e0e2)));}else{if(_0x5bd5cc===_0x5bc28d(0x1fc))_0x11847e['projectType']==='micro-spa'&&f_content_replace(COMPONENTS_CONTENT_REPLACE,_0x85573d[_0x5bc28d(0x1d3)]);else{if(_0x5bd5cc===_0x5bc28d(0x20a)){}}}if(_0x11847e[_0x5bc28d(0x1c8)]==='node_modules'){const _0x4f1c0c=_0x5bd5cc;fs[_0x5bc28d(0x1f5)](_0x1c6509+'\x5c'+_0x4f1c0c)?f_rm_rf(_0x1c6509+'\x5c'+_0x4f1c0c):fs['mkdirSync'](_0x1c6509+'\x5c'+_0x4f1c0c),f_file_copy(_0x85573d[_0x5bc28d(0x1d3)],_0x1c6509+'\x5c'+_0x4f1c0c),f_create_package_json(_0x1c6509+'\x5c'+_0x4f1c0c,_0x4f1c0c,_0x5bc28d(0x201)),f_update_project_package_json(_0x3c97a2,_0x4f1c0c,_0x5bc28d(0x201));}else{if(_0x11847e['installTarget']===_0x5bc28d(0x209)){const _0x29b53c=_0x5bc28d(0x1fc);fs[_0x5bc28d(0x1f5)](_0x1a670d+_0x29b53c)?f_rm_rf(_0x1a670d+_0x29b53c):fs[_0x5bc28d(0x1f7)](_0x1a670d+_0x29b53c),f_file_copy(_0x85573d[_0x5bc28d(0x1d3)],_0x1a670d+_0x29b53c);}}}),setTimeout(()=>{const _0x32604e=_0x410923;f_rm_rf(TEMPLATE_FOLDER),fs[_0x32604e(0x1cd)](TEMPLATE_FOLDER);const _0x2086e6=Date[_0x32604e(0x1e9)]();console[_0x32604e(0x1dd)](_0x32604e(0x1f9)+(_0x2086e6-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0xb3bdaf(0x1dd)](_0xb3bdaf(0x1e1));};
@@ -1 +0,0 @@
1
- const a18_0x15085b=a18_0x3584;(function(_0x4531e6,_0x4aad4d){const _0x32d8a3=a18_0x3584,_0x1818da=_0x4531e6();while(!![]){try{const _0x5921ca=parseInt(_0x32d8a3(0x1fa))/0x1*(parseInt(_0x32d8a3(0x1be))/0x2)+-parseInt(_0x32d8a3(0x200))/0x3+parseInt(_0x32d8a3(0x1f5))/0x4*(parseInt(_0x32d8a3(0x1e5))/0x5)+parseInt(_0x32d8a3(0x1e2))/0x6*(-parseInt(_0x32d8a3(0x1e9))/0x7)+parseInt(_0x32d8a3(0x1ed))/0x8*(-parseInt(_0x32d8a3(0x1d2))/0x9)+parseInt(_0x32d8a3(0x208))/0xa*(-parseInt(_0x32d8a3(0x1c2))/0xb)+-parseInt(_0x32d8a3(0x1e4))/0xc*(-parseInt(_0x32d8a3(0x1c9))/0xd);if(_0x5921ca===_0x4aad4d)break;else _0x1818da['push'](_0x1818da['shift']());}catch(_0x3c8213){_0x1818da['push'](_0x1818da['shift']());}}}(a18_0x550b,0xe6253));function a18_0x550b(){const _0x2ad6ad=['17870lqwFZQ','f_scan_jjb_config_json_rules','parse','【Error】:[jjb.config.json.installTarget]类型是一个string。','2631646lOKNdL','node_modules','projectType','\x22,\x22main\x22:\x20\x22index.js\x22}','3080YpNiHJ','jjb-common','f_resolve_install_resources','src','exit','replace','f_scan_jjb_config_json','22333363wcdYbm','\x22,\x22version\x22:\x22','string','【Error】:[jjb.config.json.installResources]配置无效,有效值<common\x20|\x20react-admin-component\x20|\x20vue-unisass-component\x20|\x20jjb-common-decorator\x20|\x20jjb-dva-runtime\x20|\x20jjb-common-lib>。','unlinkSync','isArray','includes','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','.zip','30933hOxgrl','statSync','spa','forEach','push','f_update_project_package_json','path','f_rm_rf','tmpdir','react-admin-component','f_pull_git_repository','length','f_content_replace','{\x22name\x22:\x22','/api/v4/projects/','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','6ApSCVl','multi','12YKYBSx','374705LjFTNq','jjb-dva-runtime','installResources','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','4947852wIFnLF','uniapp','【Error】:[jjb.config.json.projectType]类型是一个string。','existsSync','696FQshDS','filter','f_file_copy','writeFileSync','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','installTarget','mkdirSync','8CsxsPj','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','_zip','stringify','isDirectory','1kgGePG','readdirSync','name','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','f_create_package_json','toString','2204298wNcsHJ','dependencies','\x5cjjb.config.json','jjb-common-decorator','readFileSync','map','vue-unisass-component','log'];a18_0x550b=function(){return _0x2ad6ad;};return a18_0x550b();}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require('./config');function a18_0x3584(_0x27c5f6,_0x38c97e){const _0x550b32=a18_0x550b();return a18_0x3584=function(_0x358449,_0x39dd0a){_0x358449=_0x358449-0x1be;let _0x433cc3=_0x550b32[_0x358449];return _0x433cc3;},a18_0x3584(_0x27c5f6,_0x38c97e);}exports[a18_0x15085b(0x1d9)]=function(_0x5c6ed7){const _0x5073a7=a18_0x15085b;if(fs[_0x5073a7(0x1ec)](_0x5c6ed7)){const _0x342ddd=fs[_0x5073a7(0x1fb)](_0x5c6ed7);for(let _0x562fd3=0x0;_0x562fd3<_0x342ddd[_0x5073a7(0x1dd)];_0x562fd3++){const _0x9f01a2=_0x342ddd[_0x562fd3],_0x49b1c4=_0x5c6ed7+'/'+_0x9f01a2;fs[_0x5073a7(0x1d3)](_0x49b1c4)[_0x5073a7(0x1f9)]()?(exports['f_rm_rf'](_0x49b1c4),fs['rmdirSync'](_0x49b1c4)):fs[_0x5073a7(0x1cd)](_0x49b1c4);}}},exports[a18_0x15085b(0x1dc)]=function(_0x2bbc59=[]){const _0x5aac7d=a18_0x15085b;return _0x2bbc59[_0x5aac7d(0x205)](_0x1d65f3=>{const _0x24d33d=_0x5aac7d,_0x120c9f=CLOUD_PROJECT[_0x1d65f3[_0x24d33d(0x1fc)]]||undefined,_0x532b68=os[_0x24d33d(0x1da)]();return{'path':_0x532b68+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x1d65f3[_0x24d33d(0x1fc)]+_0x24d33d(0x1d1),'compress':_0x532b68+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x1d65f3[_0x24d33d(0x1fc)]+_0x24d33d(0x1f7),'repository':GIT_HOST+_0x24d33d(0x1e0)+_0x120c9f['projectId']+'/repository/archive.zip?private_token='+_0x120c9f['token']+'&ref=master'};});},exports[a18_0x15085b(0x1c8)]=function(_0x13b373){const _0x39db71=a18_0x15085b;return fs[_0x39db71(0x1ec)](_0x13b373+_0x39db71(0x202));},exports[a18_0x15085b(0x209)]=function(_0x485821){const _0x2feefb=a18_0x15085b;let _0x166152={};try{_0x166152=JSON[_0x2feefb(0x20a)](fs[_0x2feefb(0x204)](_0x485821+_0x2feefb(0x202))['toString']());}catch(_0x106734){console['log'](_0x2feefb(0x1f2)),process['exit'](0x0);}!(_0x2feefb(0x1c0)in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1f1)),process[_0x2feefb(0x1c6)](0x0));!('installTarget'in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1e1)),process[_0x2feefb(0x1c6)](0x0));!(_0x2feefb(0x1e7)in _0x166152)&&(console[_0x2feefb(0x207)](_0x2feefb(0x1d0)),process[_0x2feefb(0x1c6)](0x0));typeof _0x166152[_0x2feefb(0x1c0)]!=='string'&&(console[_0x2feefb(0x207)](_0x2feefb(0x1eb)),process[_0x2feefb(0x1c6)](0x0));![_0x2feefb(0x1e3),_0x2feefb(0x1d4),_0x2feefb(0x1ea),'micro-spa'][_0x2feefb(0x1cf)](_0x166152[_0x2feefb(0x1c0)])&&(console['log'](_0x2feefb(0x1fd)),process[_0x2feefb(0x1c6)](0x0));typeof _0x166152[_0x2feefb(0x1f3)]!==_0x2feefb(0x1cb)&&(console[_0x2feefb(0x207)](_0x2feefb(0x20b)),process[_0x2feefb(0x1c6)](0x0));![_0x2feefb(0x1bf),_0x2feefb(0x1c5)][_0x2feefb(0x1cf)](_0x166152[_0x2feefb(0x1f3)])&&(console[_0x2feefb(0x207)](_0x2feefb(0x1e8)),process[_0x2feefb(0x1c6)](0x0));!Array[_0x2feefb(0x1ce)](_0x166152[_0x2feefb(0x1e7)])&&(console[_0x2feefb(0x207)](_0x2feefb(0x1f6)),process[_0x2feefb(0x1c6)](0x0));_0x166152['installResources'][_0x2feefb(0x1dd)]===0x0&&(console[_0x2feefb(0x207)]('【Error】:[jjb.config.json.installResources]无资源。'),process[_0x2feefb(0x1c6)](0x0));const _0x51edff=exports[_0x2feefb(0x1c4)](_0x166152[_0x2feefb(0x1e7)]);return _0x51edff[_0x2feefb(0x205)](_0x4f3097=>_0x4f3097[_0x2feefb(0x1fc)])[_0x2feefb(0x1ee)](_0x5916a9=>![_0x2feefb(0x1c3),_0x2feefb(0x1e6),'jjb-common-lib',_0x2feefb(0x203),_0x2feefb(0x1db),_0x2feefb(0x206)][_0x2feefb(0x1cf)](_0x5916a9))[_0x2feefb(0x1dd)]!==0x0&&(console[_0x2feefb(0x207)](_0x2feefb(0x1cc)),process['exit'](0x0)),_0x166152[_0x2feefb(0x1e7)]=_0x51edff,_0x166152;},exports[a18_0x15085b(0x1fe)]=function(_0x344c4d,_0x58c1ab,_0x46a773){const _0x238db1=a18_0x15085b;fs[_0x238db1(0x1f0)](_0x344c4d+'\x5cpackage.json',_0x238db1(0x1df)+_0x58c1ab+_0x238db1(0x1ca)+_0x46a773+_0x238db1(0x1c1));},exports['f_resolve_install_resources']=function(_0x55b69b=[]){const _0xff085e=[];return Array['isArray'](_0x55b69b)&&_0x55b69b['forEach'](_0x429813=>{const _0x34aacd=a18_0x3584;if(Array[_0x34aacd(0x1ce)](_0x429813)){const [_0x34c9e5,_0x21bfc5=[]]=_0x429813;_0xff085e[_0x34aacd(0x1d6)]({'name':_0x34c9e5,'importList':_0x21bfc5});}else _0xff085e[_0x34aacd(0x1d6)]({'name':_0x429813,'importList':[]});}),_0xff085e;},exports[a18_0x15085b(0x1d7)]=function(_0x5251ec,_0x4154b7,_0x258472){const _0x55aa6a=a18_0x15085b,_0x1ce5d7=JSON[_0x55aa6a(0x20a)](fs['readFileSync'](_0x5251ec)['toString']());_0x1ce5d7[_0x55aa6a(0x201)][_0x4154b7]=_0x258472,fs[_0x55aa6a(0x1f0)](_0x5251ec,JSON[_0x55aa6a(0x1f8)](_0x1ce5d7,null,0x2));},exports[a18_0x15085b(0x1ef)]=function(_0x1ae1e7,_0x2b04ae){const _0x895640=a18_0x15085b;fs[_0x895640(0x1fb)](_0x1ae1e7)[_0x895640(0x1d5)](_0x339536=>{const _0x9a7ce3=_0x895640,_0x4ace5e=_0x1ae1e7+'\x5c'+_0x339536,_0x58f714=_0x2b04ae+'\x5c'+_0x339536;fs[_0x9a7ce3(0x1d3)](_0x4ace5e)[_0x9a7ce3(0x1f9)]()?(fs[_0x9a7ce3(0x1f4)](_0x58f714),exports[_0x9a7ce3(0x1ef)](_0x4ace5e,_0x58f714)):fs[_0x9a7ce3(0x1f0)](_0x58f714,fs[_0x9a7ce3(0x204)](_0x4ace5e)['toString']());});},exports[a18_0x15085b(0x1de)]=function(_0x4bcc2a=[],_0x243bf4){const _0x5b2e7a=a18_0x15085b;_0x4bcc2a[_0x5b2e7a(0x1d5)](_0x110512=>{const _0x14c4ed=_0x5b2e7a,_0xd3aad5=_0x243bf4+_0x110512[_0x14c4ed(0x1d8)];if(fs[_0x14c4ed(0x1ec)](_0xd3aad5)){let _0x1b2317=fs[_0x14c4ed(0x204)](_0xd3aad5)[_0x14c4ed(0x1ff)]();_0x110512[_0x14c4ed(0x1c7)][_0x14c4ed(0x1d5)](_0x52f556=>{const _0x2a168c=_0x14c4ed;_0x1b2317=_0x1b2317[_0x2a168c(0x1c7)](_0x52f556[0x0],_0x52f556[0x1]);}),fs['writeFileSync'](_0xd3aad5,_0x1b2317);}});};
@@ -1 +0,0 @@
1
- const a19_0x3d8ce1=a19_0x18c3;(function(_0x1d7ecb,_0x32b92d){const _0x7634a5=a19_0x18c3,_0x4e0af3=_0x1d7ecb();while(!![]){try{const _0x79eafd=parseInt(_0x7634a5(0x180))/0x1+-parseInt(_0x7634a5(0x179))/0x2*(-parseInt(_0x7634a5(0x17f))/0x3)+-parseInt(_0x7634a5(0x175))/0x4*(-parseInt(_0x7634a5(0x16b))/0x5)+parseInt(_0x7634a5(0x178))/0x6+parseInt(_0x7634a5(0x16d))/0x7*(parseInt(_0x7634a5(0x183))/0x8)+-parseInt(_0x7634a5(0x165))/0x9+parseInt(_0x7634a5(0x164))/0xa*(-parseInt(_0x7634a5(0x16c))/0xb);if(_0x79eafd===_0x32b92d)break;else _0x4e0af3['push'](_0x4e0af3['shift']());}catch(_0x34016d){_0x4e0af3['push'](_0x4e0af3['shift']());}}}(a19_0x2ec7,0x44601));const fs=require('fs'),path=require(a19_0x3d8ce1(0x181)),utils=require('./util.js');let projectPath='',vesselPath='',commandArr=[];const fromFileData={},applicationJson={};function a19_0x18c3(_0x4d7238,_0x33b9fe){const _0x2ec7f1=a19_0x2ec7();return a19_0x18c3=function(_0x18c344,_0x5e3f6d){_0x18c344=_0x18c344-0x164;let _0x244e9f=_0x2ec7f1[_0x18c344];return _0x244e9f;},a19_0x18c3(_0x4d7238,_0x33b9fe);}function a19_0x2ec7(){const _0x2ec1e1=['15900Wgdviq','165CFtXnz','849695fLLafE','\x27,\x20component:\x20()\x20=>\x20import(\x27','DeepScanner','region','writeFileSync','forEach','\x27)\x20}','slice','204VUbdfb','push','from','1681470inxvwf','179966GOajLi','exports','length','CreatePaths','fileType','join','9LjuHxw','544009pkTdfC','path','then','8MwxLus','readFileSync','router','/application','470150BfblMq','3532302GwdtWc','resolve','concat','routerConfig','file','split'];a19_0x2ec7=function(){return _0x2ec1e1;};return a19_0x2ec7();}module[a19_0x3d8ce1(0x17a)]=(_0x85624e,_0x57045e)=>{const _0x5f1a14=a19_0x3d8ce1;commandArr=_0x85624e['split'](':'),projectPath=path[_0x5f1a14(0x166)]('./project'),vesselPath=path[_0x5f1a14(0x166)]('./vessel/src');let _0x2e74ac=vesselPath;_0x57045e==='mp'&&(_0x2e74ac=vesselPath+_0x5f1a14(0x186),utils['CreatePaths'](vesselPath,['application']));const _0x461567=commandArr[0x1],_0xeb8654=JSON['parse'](fs[_0x5f1a14(0x184)](projectPath+'/'+_0x461567+'/setting.json')['toString']());TileItems(_0xeb8654['items'],()=>{const _0x41eb48=_0x5f1a14;fromFileData[_0x41eb48(0x185)]['forEach'](_0x2bb778=>{const _0x4ca971=_0x41eb48,_0x263ce9=_0x2bb778['pathAdr'][_0x4ca971(0x16a)](_0x2bb778['region']),_0x116803=_0x263ce9[0x1]['split']('/'),_0x14aba9=_0x116803[0x1];!applicationJson[_0x14aba9]&&(applicationJson[_0x14aba9]={'routerConfig':[],'routerPath':[]});applicationJson[_0x14aba9][_0x4ca971(0x168)][_0x4ca971(0x176)]('{\x20path:\x20\x27'+_0x2bb778[_0x4ca971(0x181)]+_0x4ca971(0x16e)+_0x2bb778['file']+_0x4ca971(0x173)),applicationJson[_0x14aba9]['routerPath'][_0x4ca971(0x176)](_0x2bb778[_0x4ca971(0x181)]);let _0x5bbd63=_0x116803[_0x4ca971(0x17e)]('/');const _0x55ed55=_0x5bbd63[_0x4ca971(0x16a)]('/');utils[_0x4ca971(0x17c)](_0x2e74ac,_0x55ed55[_0x4ca971(0x174)](0x0,_0x55ed55[_0x4ca971(0x17b)]-0x1))[_0x4ca971(0x182)](()=>{const _0x138ad8=_0x4ca971,_0x139937=fs[_0x138ad8(0x184)](_0x2bb778['pathAdr'])['toString']();fs[_0x138ad8(0x171)](vesselPath+'/'+_0x5bbd63,_0x139937);});});});};function TileItems(_0x312bba,_0x5cc360){const _0x1728c5=a19_0x3d8ce1;_0x312bba[_0x1728c5(0x172)]((_0x4bcc20,_0x3b8572)=>{const _0x3c8f5a=_0x1728c5,_0x5bdf5a=_0x4bcc20[_0x3c8f5a(0x170)];_0x4bcc20[_0x3c8f5a(0x177)][_0x3c8f5a(0x172)]((_0x13b6dd,_0x5f3b0d)=>{const _0x904d85=_0x3c8f5a,_0xbc7ffb=[];utils[_0x904d85(0x16f)](projectPath+'/'+_0x5bdf5a+'/'+_0x13b6dd[_0x904d85(0x169)],_0xbc7ffb);const _0x25ca30=_0xbc7ffb['map'](_0x18be6c=>({'region':_0x5bdf5a,'pathAdr':_0x18be6c,..._0x13b6dd}));!fromFileData[_0x13b6dd[_0x904d85(0x17d)]]?fromFileData[_0x13b6dd['fileType']]=_0x25ca30:fromFileData[_0x13b6dd[_0x904d85(0x17d)]]=fromFileData[_0x13b6dd[_0x904d85(0x17d)]][_0x904d85(0x167)](_0x25ca30),_0x3b8572===_0x312bba[_0x904d85(0x17b)]-0x1&&_0x5f3b0d===_0x4bcc20['from'][_0x904d85(0x17b)]-0x1&&_0x5cc360();});});}
@@ -1 +0,0 @@
1
- 'use strict';const a20_0x427724=a20_0x1163;function a20_0x31f5(){const _0x14e170=['50WslhBe','tmpdir','.zip','common\x5cdva\x5cautomatic\x5cindex.js','return\x20__planA();','/api/v4/projects/','4CbDVyC','1675908FdgdvI','96659OxCRPQ','existsSync','【Error】:\x20未获取到项目\x20','resolve','&ref=master','7878906oiGqtl','common\x5cwebsite\x5cindex.js','readdirSync','return\x20process.env;','exports','replace','\x5ccommon\x5cdva\x5cautomatic\x5cregister.js','-文件下载完毕','unlinkSync','\x5csrc','5yMLCYO','jjbAssembly','projectId','writeFileSync','pipe','3593313lilAGw','FT3pKzxpRynFkmddJ9Bs','DeleteDirAllFile','forEach','token','common\x5cdva\x5cautomatic','components','6248328nUKvLu','common','common\x5ctools\x5cindex.js','432404popbUZ','common\x5cdva\x5cautomatic\x5c','error','G4HJRsHr9D7Ssmixegw2','mkdirSync','compressing','exists','statSync','7560858kpWGwC','uncompress','toString','zip','readFileSync','\x5ccommon\x5cdva\x5cautomatic\x5crouter.js','/repository/archive.zip?private_token=','createWriteStream','rmdirSync'];a20_0x31f5=function(){return _0x14e170;};return a20_0x31f5();}(function(_0x4d45c9,_0x449f6f){const _0xba5114=a20_0x1163,_0x2d9693=_0x4d45c9();while(!![]){try{const _0x4b6023=-parseInt(_0xba5114(0x212))/0x1*(-parseInt(_0xba5114(0x210))/0x2)+-parseInt(_0xba5114(0x211))/0x3+-parseInt(_0xba5114(0x1f9))/0x4+-parseInt(_0xba5114(0x1ea))/0x5*(-parseInt(_0xba5114(0x201))/0x6)+parseInt(_0xba5114(0x217))/0x7+parseInt(_0xba5114(0x1f6))/0x8+-parseInt(_0xba5114(0x1ef))/0x9*(parseInt(_0xba5114(0x20a))/0xa);if(_0x4b6023===_0x449f6f)break;else _0x2d9693['push'](_0x2d9693['shift']());}catch(_0x520491){_0x2d9693['push'](_0x2d9693['shift']());}}}(a20_0x31f5,0xaa2ce));const fs=require('fs'),os=require('os'),path=require('path'),utils=require('./util'),request=require('request'),compressing=require(a20_0x427724(0x1fe)),GIT_TEMP_DIR=a20_0x427724(0x1eb),GIT_HOST='http://192.168.1.242:10985',CLOUD_PROJECT={'common':{'token':a20_0x427724(0x1fc),'projectId':0x117,'localName':a20_0x427724(0x1f7)},'react-admin-component':{'token':a20_0x427724(0x1f0),'projectId':0x154,'localName':a20_0x427724(0x1f5)}};function a20_0x1163(_0x56a543,_0x124c3d){const _0x31f5d6=a20_0x31f5();return a20_0x1163=function(_0x11635a,_0x139208){_0x11635a=_0x11635a-0x1e4;let _0x19e0b1=_0x31f5d6[_0x11635a];return _0x19e0b1;},a20_0x1163(_0x56a543,_0x124c3d);}module[a20_0x427724(0x1e4)]=_0xa21a18=>{const _0x5cd921=a20_0x427724,_0x7a96bc=_0xa21a18,_0x2ba095=path[_0x5cd921(0x215)]('./');try{if(fs[_0x5cd921(0x200)](_0x2ba095+_0x5cd921(0x1e9))){const _0x34cf81=_0x2ba095+_0x5cd921(0x1e9),_0x21deaa=CLOUD_PROJECT[_0x7a96bc]||undefined;if(_0x21deaa){const _0x2824aa=os[_0x5cd921(0x20b)](),_0x163cd6=_0x2824aa+('/'+GIT_TEMP_DIR+'/'+_0x7a96bc+_0x5cd921(0x20c)),_0x9b55eb=_0x2824aa+'/'+GIT_TEMP_DIR+'/unzip/';utils[_0x5cd921(0x1f1)](_0x2824aa+'/'+GIT_TEMP_DIR,()=>{const _0x16e548=_0x5cd921;fs[_0x16e548(0x1fd)](_0x2824aa+'/'+GIT_TEMP_DIR);let _0x531b6a=fs[_0x16e548(0x208)](_0x163cd6);request(GIT_HOST+_0x16e548(0x20f)+_0x21deaa[_0x16e548(0x1ec)]+_0x16e548(0x207)+_0x21deaa[_0x16e548(0x1f3)]+_0x16e548(0x216))[_0x16e548(0x1ee)](_0x531b6a)['on']('close',()=>{const _0x9852bd=_0x16e548;fs[_0x9852bd(0x1fd)](_0x9b55eb),compressing[_0x9852bd(0x204)][_0x9852bd(0x202)](_0x163cd6,_0x9b55eb)['then'](()=>{setTimeout(()=>{const _0x5ca598=a20_0x1163,_0x10c6f8=fs['readdirSync'](_0x9b55eb);_0x10c6f8[_0x5ca598(0x1f2)](_0x5b479c=>{const _0x3f0644=_0x5ca598;if(_0x5b479c['indexOf']('-master-')!==-0x1){const _0x2a8896=_0x34cf81+'\x5c'+_0x21deaa['localName'];utils[_0x3f0644(0x1f1)](_0x2a8896,()=>{fs['mkdirSync'](_0x2a8896),utils['CopyFolder'](_0x9b55eb+_0x5b479c,_0x2a8896),setTimeout(()=>{const _0x31450d=a20_0x1163,_0x4cd704=fs[_0x31450d(0x213)](_0x34cf81+'\x5c'+'application');if(!_0x4cd704){const _0x5c3072=_0x34cf81+'\x5c'+_0x31450d(0x1f8),_0x1f479f=_0x34cf81+'\x5c'+_0x31450d(0x218);let _0x2d92c9=fs[_0x31450d(0x205)](_0x5c3072)[_0x31450d(0x203)](),_0x1afbde=fs[_0x31450d(0x205)](_0x1f479f)[_0x31450d(0x203)]();_0x2d92c9=_0x2d92c9[_0x31450d(0x1e5)](_0x31450d(0x20e),_0x31450d(0x21a)),_0x1afbde=_0x1afbde['replace'](/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,'const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;'),fs['writeFileSync'](_0x5c3072,_0x2d92c9),fs[_0x31450d(0x1ed)](_0x1f479f,_0x1afbde),fs[_0x31450d(0x1ed)](_0x34cf81+_0x31450d(0x206),fs[_0x31450d(0x205)](__dirname+'\x5ccli.dva.router.spa.txt')[_0x31450d(0x203)]()),fs[_0x31450d(0x1ed)](_0x34cf81+_0x31450d(0x1e6),fs[_0x31450d(0x205)](__dirname+'\x5ccli.dva.register.spa.txt')[_0x31450d(0x203)]());}else fs[_0x31450d(0x1ff)](_0x34cf81+'\x5c'+_0x31450d(0x20d),_0x3bb961=>{const _0x360e13=_0x31450d;_0x3bb961&&(fs[_0x360e13(0x219)](_0x34cf81+'\x5c'+_0x360e13(0x1f4))[_0x360e13(0x1f2)](_0x5bf07e=>{const _0x542cd8=_0x360e13;fs[_0x542cd8(0x1e8)](_0x34cf81+'\x5c'+_0x542cd8(0x1fa)+_0x5bf07e);}),fs[_0x360e13(0x209)](_0x34cf81+'\x5c'+_0x360e13(0x1f4)));});},0x3e8);});}}),console['log'](_0x7a96bc+_0x5ca598(0x1e7));},0x7d0);});});});}else console[_0x5cd921(0x1fb)](_0x5cd921(0x214)+_0x7a96bc);}}catch(_0x3acaec){console['error']('【Error】:\x20当前目录不存在src子目录,无法完成pull操作。');}};
@@ -1 +0,0 @@
1
- 'use strict';const a21_0x42e46b=a21_0x5dd6;(function(_0x42ed7b,_0xbb5305){const _0x1914a2=a21_0x5dd6,_0x1ffcfd=_0x42ed7b();while(!![]){try{const _0x428d5f=parseInt(_0x1914a2(0x22d))/0x1*(parseInt(_0x1914a2(0x1fc))/0x2)+-parseInt(_0x1914a2(0x222))/0x3*(parseInt(_0x1914a2(0x205))/0x4)+-parseInt(_0x1914a2(0x233))/0x5+-parseInt(_0x1914a2(0x23a))/0x6+-parseInt(_0x1914a2(0x232))/0x7+parseInt(_0x1914a2(0x200))/0x8+-parseInt(_0x1914a2(0x20e))/0x9*(-parseInt(_0x1914a2(0x22f))/0xa);if(_0x428d5f===_0xbb5305)break;else _0x1ffcfd['push'](_0x1ffcfd['shift']());}catch(_0x47685b){_0x1ffcfd['push'](_0x1ffcfd['shift']());}}}(a21_0x1a20,0x36bc5));function a21_0x1a20(){const _0x3a5eb3=['toString','request','\x5cdva\x5cautomatic','random','【Error】:\x20未获取到项目\x20','148690lIoGLM','unlinkSync','forEach','substr','1440048pidYkR','\x5ccli.dva.router.saas.txt','statSync','close','dependencies','92RBOIJM','compressing','common/website','\x22,\x22version\x22:\x22','common/color','【已安装】:','\x5cpackage.json','exports','stringify','9mulIGD','common/http','.zip','readdirSync','\x5cPageHeaderBar\x5cindex.js','jjb-common/color','then','micro-spa','existsSync','length','/repository/archive.zip?private_token=','resolve','\x5cEditor\x5cindex.js','mkdirSync','replace','CopyFolder','readFileSync','\x5ccli.dva.register.saas.txt','spa','FT3pKzxpRynFkmddJ9Bs','33795IEccaZ','common/tools','error','parse','return\x20__planA();','\x5cdva\x5cautomatic\x5crouter.js','jjb-common/http','DeleteDirAllFile','createWriteStream','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','/unzip/','1BGMSMJ','components','8920770WkdmUW','uncompress','\x5cRouterMenu\x5cindex.js','528822GsDjhj','1352925CCQWbz','projectType','return\x20process.env;','isDirectory','http://192.168.1.242:10985','\x5cnode_modules\x5cjjb-','react-admin-component','1902030aFoqlS','path','common/crypto','jjb-common/tools','jjb-common/website','\x22,\x22main\x22:\x20\x22index.js\x22}','\x5ctools\x5cindex.js','return\x20process.env.app;','jjb-react-admin-component','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','template_','rmdirSync','jjbAssembly','jjb-common/crypto','./util','\x5ccli.dva.register.spa.txt','\x5c.gitignore','common','/api/v4/projects/','log','writeFileSync','【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','\x5cdva\x5cautomatic\x5cregister.js','\x5cRouterContainer\x5cindex.js'];a21_0x1a20=function(){return _0x3a5eb3;};return a21_0x1a20();}const fs=require('fs'),os=require('os'),path=require(a21_0x42e46b(0x23b)),utils=require(a21_0x42e46b(0x1ed)),request=require(a21_0x42e46b(0x1f8)),compressing=require(a21_0x42e46b(0x206)),GIT_HOST=a21_0x42e46b(0x237),GIT_TEMP_DIR=a21_0x42e46b(0x246),CLOUD_PROJECT={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117,'localName':'common'},'react-admin-component':{'token':a21_0x42e46b(0x221),'projectId':0x154,'localName':a21_0x42e46b(0x22e)}},COMMON_CONTENT_NOR_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[[a21_0x42e46b(0x22e),a21_0x42e46b(0x242)]]},{'path':'\x5cwebsite\x5cindex.js','replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a21_0x42e46b(0x22b)],['components',a21_0x42e46b(0x242)]]}],COMMON_CONTENT_SPA_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[['return\x20__planA();',a21_0x42e46b(0x235)]]}],COMMON_CONTENT_MICRO_REPLACE=[{'path':a21_0x42e46b(0x240),'replace':[[a21_0x42e46b(0x226),a21_0x42e46b(0x241)]]}],COMPONENTS_CONTENT_REPLACE=[{'path':a21_0x42e46b(0x21a),'replace':[['common/http',a21_0x42e46b(0x228)],[a21_0x42e46b(0x23c),a21_0x42e46b(0x1ec)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':'\x5cRejectText\x5cindex.js','replace':[[a21_0x42e46b(0x209),a21_0x42e46b(0x213)]]},{'path':a21_0x42e46b(0x231),'replace':[[a21_0x42e46b(0x223),'jjb-common/tools']]},{'path':'\x5cFileUploader\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],['common/tools',a21_0x42e46b(0x23d)]]},{'path':'\x5cImageCropper\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':'\x5cImageUploader\x5cindex.js','replace':[[a21_0x42e46b(0x20f),a21_0x42e46b(0x228)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]},{'path':a21_0x42e46b(0x212),'replace':[['common/color',a21_0x42e46b(0x213)]]},{'path':a21_0x42e46b(0x1f6),'replace':[['common/tools',a21_0x42e46b(0x23d)]]},{'path':a21_0x42e46b(0x243),'replace':[[a21_0x42e46b(0x207),a21_0x42e46b(0x23e)],[a21_0x42e46b(0x223),a21_0x42e46b(0x23d)]]}];function uid(){const _0x1565d1=a21_0x42e46b;return Math[_0x1565d1(0x1fa)]()[_0x1565d1(0x1f7)]()[_0x1565d1(0x1ff)](0x2);}module[a21_0x42e46b(0x20c)]=_0x231344=>{const _0x337041=a21_0x42e46b,_0x269e02=path[_0x337041(0x219)]('./'),_0x4a9c53='jjb-'+_0x231344,_0x40d76b='1.0.0',_0x402a40=_0x269e02+'\x5csrc',_0x7d3c2f=_0x337041(0x244)+uid(),_0x162923=__dirname+'\x5c'+_0x7d3c2f,_0x4d241b=_0x269e02+'\x5cpackage.json',_0x126853=_0x269e02+_0x337041(0x238)+_0x231344;try{if(fs['existsSync'](_0x402a40)){const _0x29a789=CLOUD_PROJECT[_0x231344]||undefined;if(_0x29a789){const _0x59e6c0=os['tmpdir'](),_0x516c92=_0x59e6c0+'/'+GIT_TEMP_DIR+'/'+_0x231344+_0x337041(0x210),_0x5ea4b1=_0x59e6c0+'/'+GIT_TEMP_DIR+_0x337041(0x22c);utils[_0x337041(0x229)](_0x59e6c0+'/'+GIT_TEMP_DIR,()=>{const _0x52f247=_0x337041;fs[_0x52f247(0x21b)](_0x59e6c0+'/'+GIT_TEMP_DIR);const _0x9143ee=fs[_0x52f247(0x22a)](_0x516c92);request(GIT_HOST+_0x52f247(0x1f1)+_0x29a789['projectId']+_0x52f247(0x218)+_0x29a789['token']+'&ref=master')['pipe'](_0x9143ee)['on'](_0x52f247(0x203),()=>{const _0x5d357e=_0x52f247;fs[_0x5d357e(0x21b)](_0x5ea4b1),compressing['zip'][_0x5d357e(0x230)](_0x516c92,_0x5ea4b1)[_0x5d357e(0x214)](()=>{setTimeout(()=>{const _0x3134d6=a21_0x5dd6;fs[_0x3134d6(0x211)](_0x5ea4b1)[_0x3134d6(0x1fe)](_0x30fad0=>{_0x30fad0['indexOf']('-master-')!==-0x1&&utils['DeleteDirAllFile'](_0x402a40+'\x5c'+_0x29a789['localName'],()=>{const _0x52dc39=a21_0x5dd6;fs[_0x52dc39(0x21b)](_0x162923),utils[_0x52dc39(0x21d)](_0x5ea4b1+_0x30fad0,_0x162923),setTimeout(()=>{const _0x38926d=_0x52dc39;if(_0x231344===_0x38926d(0x1f0)){const _0x5b8f20=fs['existsSync'](_0x402a40+'\x5capplication');if(_0x5b8f20)rm_rf(_0x162923+_0x38926d(0x1f9)),fs[_0x38926d(0x245)](_0x162923+_0x38926d(0x1f9));else{if(get_project_type(_0x4d241b)===_0x38926d(0x220))content_replace(COMMON_CONTENT_SPA_REPLACE,_0x162923),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x227),fs[_0x38926d(0x21e)](__dirname+'\x5ccli.dva.router.spa.txt')['toString']()),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x1f5),fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x1ee))['toString']());else get_project_type(_0x4d241b)===_0x38926d(0x215)&&(content_replace(COMMON_CONTENT_MICRO_REPLACE,_0x162923),fs[_0x38926d(0x1f3)](_0x162923+_0x38926d(0x227),fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x201))[_0x38926d(0x1f7)]()),fs['writeFileSync'](_0x162923+'\x5cdva\x5cautomatic\x5cregister.js',fs[_0x38926d(0x21e)](__dirname+_0x38926d(0x21f))[_0x38926d(0x1f7)]()));}content_replace(COMMON_CONTENT_NOR_REPLACE,_0x162923);}_0x231344===_0x38926d(0x239)&&content_replace(COMPONENTS_CONTENT_REPLACE,_0x162923),rm_rf(_0x162923+'\x5c.idea'),fs['existsSync'](_0x162923+'\x5c.idea')&&fs['rmdirSync'](_0x162923+'\x5c.idea'),fs[_0x38926d(0x216)](_0x162923+_0x38926d(0x1ef))&&fs['unlinkSync'](_0x162923+'\x5c.gitignore'),!fs[_0x38926d(0x216)](_0x126853)?fs[_0x38926d(0x21b)](_0x126853):rm_rf(_0x126853),utils[_0x38926d(0x21d)](_0x162923,_0x126853,()=>{const _0xd290ab=_0x38926d;rm_rf(_0x162923),fs[_0xd290ab(0x245)](_0x162923),create_package_json(_0x126853,_0x4a9c53,_0x40d76b),update_project_package_json(_0x4d241b,_0x4a9c53,_0x40d76b),console[_0xd290ab(0x1f2)](_0xd290ab(0x20a)+_0x4a9c53+'\x20v'+_0x40d76b);});},0x3e8);});});},0x7d0);});});});}else console['error'](_0x337041(0x1fb)+_0x231344);}}catch(_0x22d5f0){console[_0x337041(0x224)](_0x337041(0x1f4));}};function a21_0x5dd6(_0x3c6380,_0x148034){const _0x1a20a3=a21_0x1a20();return a21_0x5dd6=function(_0x5dd6a0,_0x1da21a){_0x5dd6a0=_0x5dd6a0-0x1ec;let _0x103057=_0x1a20a3[_0x5dd6a0];return _0x103057;},a21_0x5dd6(_0x3c6380,_0x148034);}function rm_rf(_0x1caa7f){const _0x15d335=a21_0x42e46b;if(fs[_0x15d335(0x216)](_0x1caa7f)){const _0x5de48e=fs[_0x15d335(0x211)](_0x1caa7f);for(let _0x1c721b=0x0;_0x1c721b<_0x5de48e[_0x15d335(0x217)];_0x1c721b++){const _0xb29fb4=_0x5de48e[_0x1c721b],_0x525597=_0x1caa7f+'/'+_0xb29fb4;fs[_0x15d335(0x202)](_0x525597)[_0x15d335(0x236)]()?(rm_rf(_0x525597),fs[_0x15d335(0x245)](_0x525597)):fs[_0x15d335(0x1fd)](_0x525597);}}}function create_package_json(_0x2858f8,_0x273883,_0xd47c83){const _0x314340=a21_0x42e46b;fs['writeFileSync'](_0x2858f8+_0x314340(0x20b),'{\x22name\x22:\x22'+_0x273883+_0x314340(0x208)+_0xd47c83+_0x314340(0x23f));}function get_project_type(_0x5d2190){const _0x14bc2a=a21_0x42e46b,_0x1d1657=JSON[_0x14bc2a(0x225)](fs[_0x14bc2a(0x21e)](_0x5d2190)['toString']());return _0x1d1657[_0x14bc2a(0x234)];}function update_project_package_json(_0x19db5b,_0x269784,_0x2944b6){const _0x2f199e=a21_0x42e46b,_0x50120a=JSON['parse'](fs['readFileSync'](_0x19db5b)[_0x2f199e(0x1f7)]());_0x50120a[_0x2f199e(0x204)][_0x269784]=_0x2944b6,fs[_0x2f199e(0x1f3)](_0x19db5b,JSON[_0x2f199e(0x20d)](_0x50120a,null,0x2));}function content_replace(_0x2a6dce=[],_0x15eeaf){const _0x191c5b=a21_0x42e46b;_0x2a6dce[_0x191c5b(0x1fe)](_0x44d636=>{const _0x5cc1f2=_0x191c5b,_0x1b76ae=_0x15eeaf+_0x44d636[_0x5cc1f2(0x23b)];if(fs[_0x5cc1f2(0x216)](_0x1b76ae)){let _0x2305e6=fs[_0x5cc1f2(0x21e)](_0x1b76ae)['toString']();_0x44d636[_0x5cc1f2(0x21c)][_0x5cc1f2(0x1fe)](_0x13b9b6=>{const _0x59b13b=_0x5cc1f2;_0x2305e6=_0x2305e6[_0x59b13b(0x21c)](_0x13b9b6[0x0],_0x13b9b6[0x1]);}),fs['writeFileSync'](_0x1b76ae,_0x2305e6);}});}
@@ -1 +0,0 @@
1
- const a22_0x3a43a7=a22_0x132b;(function(_0x169482,_0x30efae){const _0x142fa2=a22_0x132b,_0x1ae882=_0x169482();while(!![]){try{const _0x7d2186=-parseInt(_0x142fa2(0x1b8))/0x1+parseInt(_0x142fa2(0x1c7))/0x2*(parseInt(_0x142fa2(0x1c2))/0x3)+parseInt(_0x142fa2(0x1d3))/0x4+-parseInt(_0x142fa2(0x1bd))/0x5+parseInt(_0x142fa2(0x1c3))/0x6+-parseInt(_0x142fa2(0x1c0))/0x7+parseInt(_0x142fa2(0x1d0))/0x8*(parseInt(_0x142fa2(0x1c1))/0x9);if(_0x7d2186===_0x30efae)break;else _0x1ae882['push'](_0x1ae882['shift']());}catch(_0x186afe){_0x1ae882['push'](_0x1ae882['shift']());}}}(a22_0x56f5,0xaaa52));const fs=require('fs'),path=require('path'),readline=require('readline'),ProgressBar=require(a22_0x3a43a7(0x1ba)),io=readline[a22_0x3a43a7(0x1ca)]({'input':process[a22_0x3a43a7(0x1ce)],'output':process[a22_0x3a43a7(0x1c6)]}),progress=new ProgressBar(a22_0x3a43a7(0x1c4),0x32);let f_total=0x0,f_number=0x0;module[a22_0x3a43a7(0x1c8)]=function(){const _0x1206e2=a22_0x3a43a7,_0x5dc2f6=path[_0x1206e2(0x1d1)]('./');io[_0x1206e2(0x1be)](_0x1206e2(0x1bc),function(_0x509f95){const _0x5478f1=_0x1206e2;if(_0x509f95[_0x5478f1(0x1cf)]()==='y')console['log'](_0x5478f1(0x1d2)),setTimeout(()=>{setTimeout(()=>{const _0x4edea7=a22_0x132b;console[_0x4edea7(0x1cc)](),exec(_0x5dc2f6),setTimeout(()=>{const _0x4c1f70=_0x4edea7;console[_0x4c1f70(0x1bb)](_0x4c1f70(0x1cd)),console[_0x4c1f70(0x1cc)](),process[_0x4c1f70(0x1cb)](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x509f95[_0x5478f1(0x1cf)]()==='n'?(console[_0x5478f1(0x1bb)](_0x5478f1(0x1b6)),process['exit'](0x0)):(console[_0x5478f1(0x1bb)]('无效操作。'),process[_0x5478f1(0x1cb)](0x0));});};function a22_0x132b(_0x29cc34,_0x2c3783){const _0x56f5fe=a22_0x56f5();return a22_0x132b=function(_0x132b7c,_0x5092de){_0x132b7c=_0x132b7c-0x1b5;let _0x1f387a=_0x56f5fe[_0x132b7c];return _0x1f387a;},a22_0x132b(_0x29cc34,_0x2c3783);}function a22_0x56f5(){const _0x1139f9=['取消删除。','unlinkSync','1120119ScTecF','existsSync','./progress-bar','log','是否确认删除?删除后不可恢复![y/n]:','5154845ytfUVe','question','statSync','6991565AJfARs','4830939dmOBXk','168621Cqusfd','5086080eTzBCG','删除进度','readdirSync','stdout','4SYcPag','exports','length','createInterface','exit','clear','删除完成。','stdin','trim','32LYqOyr','resolve','正在计算项目数,请稍等...','2966668JWioQc','删除文件:'];a22_0x56f5=function(){return _0x1139f9;};return a22_0x56f5();}function exec(_0x35ff8f){const _0x54f5b1=a22_0x3a43a7;if(fs[_0x54f5b1(0x1b9)](_0x35ff8f)){const _0x35ab35=fs[_0x54f5b1(0x1c5)](_0x35ff8f);for(let _0x19adf=0x0;_0x19adf<_0x35ab35['length'];_0x19adf++){const _0x28b3f2=_0x35ab35[_0x19adf],_0x4fec87=_0x35ff8f+'/'+_0x28b3f2;try{fs[_0x54f5b1(0x1bf)](_0x4fec87)['isDirectory']()?(exec(_0x4fec87),fs['rmdirSync'](_0x4fec87,{'recursive':!![]}),console[_0x54f5b1(0x1bb)]('删除文件夹:'+_0x4fec87)):(fs[_0x54f5b1(0x1b7)](_0x4fec87),console['log'](_0x54f5b1(0x1b5)+_0x4fec87));}catch(_0x28ae01){console[_0x54f5b1(0x1bb)]('删除异常:'+_0x4fec87);}}}}function scanner(_0x3c9040){const _0x4a59d5=a22_0x3a43a7;if(fs[_0x4a59d5(0x1b9)](_0x3c9040)){const _0x30fb21=fs[_0x4a59d5(0x1c5)](_0x3c9040);for(let _0x3fad61=0x0;_0x3fad61<_0x30fb21[_0x4a59d5(0x1c9)];_0x3fad61++){const _0x14a157=_0x30fb21[_0x3fad61],_0x132503=_0x3c9040+'/'+_0x14a157;try{fs[_0x4a59d5(0x1bf)](_0x132503)['isDirectory']()?(scanner(_0x132503),f_total=f_total+0x1):f_total=f_total+0x1;}catch(_0x12bd5){}}}}
@@ -1 +0,0 @@
1
- function a23_0x5336(){const _0x4a6ba7=['render','description','138870FOpiRy','345642ECZyro','84jLaeqn','completed','11mpNofi','279008VnwEES','exports','stdout','8MNzwWf','total','floor','length','61657dCEebQ','792ORJOzE','1570948iXRWxT','21BLEJyg','3190dxBMyz','89772eLoLzg'];a23_0x5336=function(){return _0x4a6ba7;};return a23_0x5336();}const a23_0x5e62ee=a23_0x3691;(function(_0x4ac928,_0x2079d4){const _0x2d45e3=a23_0x3691,_0x429859=_0x4ac928();while(!![]){try{const _0x1562d3=parseInt(_0x2d45e3(0x138))/0x1+parseInt(_0x2d45e3(0x148))/0x2*(-parseInt(_0x2d45e3(0x141))/0x3)+parseInt(_0x2d45e3(0x13a))/0x4+parseInt(_0x2d45e3(0x140))/0x5*(parseInt(_0x2d45e3(0x142))/0x6)+parseInt(_0x2d45e3(0x13b))/0x7*(-parseInt(_0x2d45e3(0x145))/0x8)+parseInt(_0x2d45e3(0x139))/0x9*(-parseInt(_0x2d45e3(0x13c))/0xa)+-parseInt(_0x2d45e3(0x144))/0xb*(parseInt(_0x2d45e3(0x13d))/0xc);if(_0x1562d3===_0x2079d4)break;else _0x429859['push'](_0x429859['shift']());}catch(_0x3b42cc){_0x429859['push'](_0x429859['shift']());}}}(a23_0x5336,0x3b211));const slog=require('single-line-log')[a23_0x5e62ee(0x147)];function ProgressBar(_0x5eeb18,_0x4fca82){const _0x19acf5=a23_0x5e62ee;this[_0x19acf5(0x13f)]=_0x5eeb18||'Progress',this[_0x19acf5(0x137)]=_0x4fca82||0x19,this[_0x19acf5(0x13e)]=function(_0x1e94e9){const _0x201dda=_0x19acf5;let _0x30cb65;const _0x305db3=(_0x1e94e9[_0x201dda(0x143)]/_0x1e94e9[_0x201dda(0x135)])['toFixed'](0x4),_0x384184=Math[_0x201dda(0x136)](_0x305db3*this[_0x201dda(0x137)]);let _0x567347='';for(_0x30cb65=0x0;_0x30cb65<_0x384184;_0x30cb65++){_0x567347+='█';}let _0x5a8fd5='';for(_0x30cb65=0x0;_0x30cb65<this[_0x201dda(0x137)]-_0x384184;_0x30cb65++){_0x5a8fd5+='░';}const _0x2f741c=this['description']+':\x20'+(0x64*_0x305db3)['toFixed'](0x2)+'%\x20'+_0x567347+_0x5a8fd5+'\x20'+_0x1e94e9[_0x201dda(0x143)]+'/'+_0x1e94e9[_0x201dda(0x135)];slog(_0x2f741c);};}function a23_0x3691(_0x1ca4c3,_0x5c3e0a){const _0x5336b9=a23_0x5336();return a23_0x3691=function(_0x3691f9,_0x5adb98){_0x3691f9=_0x3691f9-0x135;let _0x4a21ad=_0x5336b9[_0x3691f9];return _0x4a21ad;},a23_0x3691(_0x1ca4c3,_0x5c3e0a);}module[a23_0x5e62ee(0x146)]=ProgressBar;
package/src/old/util.js DELETED
@@ -1 +0,0 @@
1
- 'use strict';function a24_0x2a4a(_0x1ef371,_0x901aa2){const _0x1954e1=a24_0x1954();return a24_0x2a4a=function(_0x2a4a0b,_0xa238c8){_0x2a4a0b=_0x2a4a0b-0xc2;let _0x3ddf0c=_0x1954e1[_0x2a4a0b];return _0x3ddf0c;},a24_0x2a4a(_0x1ef371,_0x901aa2);}const a24_0x429fba=a24_0x2a4a;(function(_0x308aba,_0x31a93a){const _0x2fee4e=a24_0x2a4a,_0x1b6068=_0x308aba();while(!![]){try{const _0xee0afc=-parseInt(_0x2fee4e(0xd7))/0x1*(-parseInt(_0x2fee4e(0xe3))/0x2)+parseInt(_0x2fee4e(0xe2))/0x3*(parseInt(_0x2fee4e(0xc3))/0x4)+parseInt(_0x2fee4e(0xcd))/0x5+-parseInt(_0x2fee4e(0xda))/0x6*(-parseInt(_0x2fee4e(0xe4))/0x7)+-parseInt(_0x2fee4e(0xd4))/0x8+parseInt(_0x2fee4e(0xc5))/0x9*(-parseInt(_0x2fee4e(0xd5))/0xa)+-parseInt(_0x2fee4e(0xc4))/0xb*(-parseInt(_0x2fee4e(0xd9))/0xc);if(_0xee0afc===_0x31a93a)break;else _0x1b6068['push'](_0x1b6068['shift']());}catch(_0x54fee9){_0x1b6068['push'](_0x1b6068['shift']());}}}(a24_0x1954,0xde1c1));function a24_0x1954(){const _0x391eaa=['105903aZTLPn','CopyFile','DeleteDirAllFile','DeepScanner','statSync','join','pipe','mkdirSync','5557560sdIqTN','push','existsSync','isDirectory','write\x20error','readdir','log','12013064PjpUJO','1480vTCSdl','readdirSync','643819tpzZQm','createReadStream','2249004tPdAPP','23766TvgZnj','CopyFolder','forEach','rmdirSync','error','length','CreatePaths','stat','23649YfKOCH','2knTmPV','3101ntwRNp','read\x20error','path','unlinkSync','136TsVEmR','22fIhHMS'];a24_0x1954=function(){return _0x391eaa;};return a24_0x1954();}const fs=require('fs'),path=require(a24_0x429fba(0xe6));exports[a24_0x429fba(0xc7)]=(_0x39eaa3,_0x500eeb)=>{const _0x3497cf=a24_0x429fba;let _0x2ffb25=[];const _0x3bc425=this;fs[_0x3497cf(0xcf)](_0x39eaa3)?(_0x2ffb25=fs[_0x3497cf(0xd6)](_0x39eaa3),_0x2ffb25[_0x3497cf(0xdc)](function(_0x1430f4,_0x4b49aa){const _0x1fbbab=_0x3497cf;let _0x4814df=_0x39eaa3+'/'+_0x1430f4;fs[_0x1fbbab(0xc9)](_0x4814df)[_0x1fbbab(0xd0)]()?_0x3bc425[_0x1fbbab(0xc7)](_0x4814df):fs[_0x1fbbab(0xc2)](_0x4814df);}),fs[_0x3497cf(0xdd)](_0x39eaa3),_0x500eeb&&_0x500eeb()):_0x500eeb&&_0x500eeb();},exports[a24_0x429fba(0xdb)]=(_0x48a6bc,_0x4cbffd,_0xebedb9)=>{const _0xb75423=a24_0x429fba,_0x5675c4=this;fs[_0xb75423(0xd2)](_0x48a6bc,function(_0x2d6df1,_0x393c27){const _0x18b450=_0xb75423;let _0x3d1227=0x0;const _0xa3ca9=function(){const _0x4984f8=a24_0x2a4a;++_0x3d1227===_0x393c27[_0x4984f8(0xdf)]&&_0xebedb9&&_0xebedb9();};if(_0x2d6df1){_0xa3ca9();return;}_0x393c27[_0x18b450(0xdc)](function(_0x13d5ce){const _0x4dc6b5=_0x18b450,_0x41d839=path[_0x4dc6b5(0xca)](_0x48a6bc,_0x13d5ce),_0x560ea7=path[_0x4dc6b5(0xca)](_0x4cbffd,_0x13d5ce);fs[_0x4dc6b5(0xe1)](_0x41d839,function(_0x5b7073,_0x1d8548){const _0x4ce63f=_0x4dc6b5;_0x1d8548[_0x4ce63f(0xd0)]()?fs['mkdir'](_0x560ea7,function(_0x458db3){if(_0x458db3){console['log'](_0x458db3);return;}_0x5675c4['CopyFolder'](_0x41d839,_0x560ea7,_0xa3ca9);}):_0x5675c4[_0x4ce63f(0xc6)](_0x41d839,_0x560ea7,_0xa3ca9);});}),_0x393c27['length']===0x0&&_0xebedb9&&_0xebedb9();});},exports[a24_0x429fba(0xc6)]=(_0x19f9b9,_0x4f11ae,_0x2c21fe)=>{const _0x45e14c=a24_0x429fba,_0x6de1ba=fs[_0x45e14c(0xd8)](_0x19f9b9);_0x6de1ba['on'](_0x45e14c(0xde),function(_0x1022d3){const _0x372b9d=_0x45e14c;_0x1022d3&&console['log'](_0x372b9d(0xe5),_0x19f9b9),_0x2c21fe&&_0x2c21fe(_0x1022d3);});const _0x32f3b9=fs['createWriteStream'](_0x4f11ae);_0x32f3b9['on']('error',function(_0x573fd3){const _0x2ffeb5=_0x45e14c;_0x573fd3&&console[_0x2ffeb5(0xd3)](_0x2ffeb5(0xd1),_0x4f11ae),_0x2c21fe&&_0x2c21fe(_0x573fd3);}),_0x32f3b9['on']('close',function(_0x1f25c1){_0x2c21fe&&_0x2c21fe(_0x1f25c1);}),_0x6de1ba[_0x45e14c(0xcb)](_0x32f3b9);},exports[a24_0x429fba(0xc8)]=(_0x58f19e,_0x1c6896)=>{const _0x1fd421=a24_0x429fba,_0x1e84b1=this,_0x564c90=fs[_0x1fd421(0xd6)](_0x58f19e);_0x564c90['forEach'](_0x3f9c90=>{const _0x23d068=_0x1fd421,_0x66f2a7=_0x58f19e+'/'+_0x3f9c90,_0x389420=fs[_0x23d068(0xc9)](_0x66f2a7);_0x389420[_0x23d068(0xd0)]()?_0x1e84b1[_0x23d068(0xc8)](_0x66f2a7,_0x1c6896):_0x1c6896[_0x23d068(0xce)](_0x66f2a7);});},exports[a24_0x429fba(0xe0)]=(_0x519440,_0x570282)=>{return new Promise(_0x2ad067=>{const _0xe78276=a24_0x2a4a,_0x1b5f04=[];_0x570282[_0xe78276(0xdc)]((_0x18aeef,_0x374a0e)=>{const _0x1a93dc=_0xe78276,_0x473206=_0x519440+'/'+_0x1b5f04[_0x1a93dc(0xca)]('/')+'/'+_0x18aeef;try{const _0x5d325f=fs[_0x1a93dc(0xc9)](_0x473206);_0x5d325f[_0x1a93dc(0xd0)]()?_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067():(fs[_0x1a93dc(0xcc)](_0x473206),_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067());}catch(_0x18378c){fs[_0x1a93dc(0xcc)](_0x473206),_0x374a0e===_0x570282[_0x1a93dc(0xdf)]-0x1&&_0x2ad067();}_0x1b5f04['push'](_0x18aeef);});});};