jjb-cmd 2.1.13 → 2.1.15

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/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  <h1>重庆市建教帮科技有限公司-前端脚手架</h1>
2
2
  <h3>更新日志:</h3>
3
3
  <ul>
4
+ <li>
5
+ <p>2.1.15</p>
6
+ <div>push命令增加beta选项</div>
7
+ </li>
4
8
  <li>
5
9
  <p>2.1.13</p>
6
10
  <div>增加远程更新配置文件</div>
@@ -0,0 +1,65 @@
1
+ #! /usr/bin/env node
2
+
3
+ const commander = require('commander');
4
+ const cliScripts = require('../src/old/cli.pull.js');
5
+ const cliScripts2 = require('../src/old/cli.pull2.js');
6
+ const cliScripts3 = require('../src/old/cli.install/index.js');
7
+ const cliScripts4 = require('../src/old/cli.rm-rf.js');
8
+ const cliScripts6 = require('../src/old/cli.init');
9
+ const MergeScripts = require('../src/old/cli.merge.js');
10
+
11
+ commander.command('v').description('-- 查看版本').action(() => {
12
+ console.log('当前版本 v1.0.12');
13
+ });
14
+
15
+ commander.command('help').description('-- 帮助').action(() => {
16
+ console.log('使用方法:');
17
+ console.log('1.jjb-cmd v -- 查看版本。');
18
+ console.log('2.jjb-cmd help -- 帮助。');
19
+ console.log('3.jjb-cmd view res -- 预览资源。');
20
+ console.log('4.jjb-cmd [actionName (有效值 pull | pull2 | install | rm-rf)] [...args] -- 基础功能。');
21
+ });
22
+
23
+ commander.command('view res').description('-- 预览资源').action(() => {
24
+ console.log('当前可资源:');
25
+ console.log('[common, react-admin-component]');
26
+ });
27
+
28
+ // pull 命令
29
+ commander.command('pull -- <文件夹名称必填。>').description('-- 文件名称').action(res => {
30
+ console.log('pull命令已过时,新项目请使用pull2.');
31
+ cliScripts(res);
32
+ });
33
+
34
+ // pull 命令
35
+ commander.command('pull2 -- <文件夹名称必填。>').description('-- 文件名称').action(res => {
36
+ cliScripts2(res);
37
+ });
38
+
39
+ // pull 命令
40
+ commander.command('init').description('-- 初始化项目').action(res => {
41
+ cliScripts6(res);
42
+ });
43
+
44
+ // rm-rf 命令
45
+ commander.command('rm-rf').description('-- 删除全部').action(res => {
46
+ cliScripts4(res);
47
+ });
48
+
49
+ // install 安装
50
+ commander.command('install').description('-- 安装').action(res => {
51
+ cliScripts3(res);
52
+ });
53
+
54
+ //多省多应用命令
55
+ commander.command('mp -- <multi prov多省多应用启动dev>').description('-- multi prov多省多应用合并').action(res => {
56
+ MergeScripts(res, 'mp');
57
+ console.log('start test');
58
+ });
59
+
60
+ //多省单应用
61
+ commander.command('sp -- <single prov多省单应用>').description('-- single prov多省单应用').action(res => {
62
+
63
+ });
64
+
65
+ commander.parse(process.argv);
package/bin/command.js ADDED
@@ -0,0 +1,143 @@
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
+ console.log('当前版本 v2.0.0');
11
+ });
12
+
13
+ commander.command('view res').description('-- 预览资源').action(() => {
14
+ console.log('当前可资源:');
15
+ console.log('[common, react-admin-component]');
16
+ });
17
+
18
+ commander.command('link').option('-A').description('-- 创建符号链接').action(args => {
19
+ let dirList = [];
20
+ const hasFlag = args.A;
21
+ const root_path = path.resolve('./');
22
+ let r1 = readline.createInterface({
23
+ input: process.stdin,
24
+ output: process.stdout
25
+ });
26
+ r1.question('Target Path:', function (answer) {
27
+ const arr = answer.split('\\');
28
+ const name = arr.length
29
+ ? arr[ arr.length - 1 ]
30
+ : '';
31
+ if (hasFlag) {
32
+ dirList = dirList.concat(fs.readdirSync(root_path).map(dir => {
33
+ return `${root_path}\\${dir}`;
34
+ }).filter(dir => fs.statSync(dir).isDirectory()).map(dir => {
35
+ return {
36
+ dir: dir + '\\' + name,
37
+ link: answer
38
+ };
39
+ }));
40
+ } else {
41
+ dirList = dirList.concat(root_path).map(dir => {
42
+ return {
43
+ dir: dir + '\\' + name,
44
+ link: answer
45
+ };
46
+ });
47
+ }
48
+ dirList.forEach(item => {
49
+ child_process.execSync(`mklink /D ${item.dir} ${item.link}`, (error, stdout) => {
50
+ if (!error) {
51
+ console.log(stdout);
52
+ }
53
+ });
54
+ });
55
+ console.log('执行完成。');
56
+ process.exit(0);
57
+ });
58
+ r1.on('close', () => process.exit(0));
59
+ });
60
+
61
+ // auth 命令
62
+ commander.command('auth [args]').description('-- 授权').action(args => {
63
+ require('../src/new/cmd.auth/index.js')(process.argv.splice(3));
64
+ });
65
+
66
+ // publish 命令
67
+ commander.command('push [args]').description('-- 发布包').action(args => {
68
+ if (args) {
69
+ if ([
70
+ 'server',
71
+ 'version',
72
+ 'v',
73
+ 'latest',
74
+ 'beta',
75
+ 'components'
76
+ ].includes(args)) {
77
+ if ([
78
+ 'v',
79
+ 'version'
80
+ ].includes(args)) {
81
+ require('../src/new/cmd.version/index.js')();
82
+ }
83
+ if ([
84
+ 'server',
85
+ 'components'
86
+ ].includes(args)) {
87
+ require('../src/new/cmd.reglist/index.js')(args);
88
+ }
89
+ if ([ 'latest', 'beta' ].includes(args)) {
90
+ require('../src/new/cmd.push/index.js')(args);
91
+ }
92
+ } else if (['java'].includes(args)) {
93
+ require('../src/new/cmd.push/java.js')(process.argv.splice(3));
94
+ } else {
95
+ console.log(`无效的选项‘${args}’。`);
96
+ process.exit(0);
97
+ }
98
+ } else {
99
+ require('../src/new/cmd.push/index.js')(null);
100
+ }
101
+ });
102
+
103
+ // reglist 命令
104
+ commander.command('reg [args]').description('-- 查询注册表').action(a => {
105
+ // require('../src/new/cmd.reglist/index.js')();
106
+ });
107
+
108
+ // init 命令
109
+ commander.command('init -- <templateName>').description('-- 初始化模板').action(stdin => {
110
+ if ([
111
+ 'lib',
112
+ 'react-component',
113
+ 'micro-app',
114
+ 'micro-app-ts'
115
+ ].includes(stdin)) {
116
+ require('../src/new/cmd.init/index.js')(stdin);
117
+ } else {
118
+ console.log(`初始化失败,未能正确输入模板类型,仅支持(lib,react-component,micro-app,micro-app-ts)模板。`);
119
+ process.exit(0);
120
+ }
121
+ });
122
+
123
+ // rm-rf 命令
124
+ commander.command('rm-rf').description('-- 删除全部').action(() => {
125
+ require('../src/new/cmd.rm-rf/index.js')();
126
+ });
127
+
128
+ // install 安装
129
+ commander.command('install').description('-- 安装').action(() => {
130
+ require('../src/new/cmd.install/index.js')();
131
+ });
132
+
133
+ // install 安装
134
+ commander.command('install.app').description('-- 安装').action(stdin => {
135
+ require('../src/new/cmd.install.app/index.js')(stdin);
136
+ });
137
+
138
+ //从服务端更新本地文件
139
+ commander.command('refresh').description('-- 更新').action(stdin => {
140
+ require('../src/new/cmd.refresh/index.js')(stdin);
141
+ });
142
+
143
+ commander.parse(process.argv);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jjb-cmd",
3
3
  "use": "no",
4
- "version": "2.1.13",
4
+ "version": "2.1.15",
5
5
  "description": "jjb脚手架工具",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -1 +1 @@
1
- const a0_0x118345=a0_0x2e6b;(function(_0x469702,_0x25055d){const _0x3d7338=a0_0x2e6b,_0x43af79=_0x469702();while(!![]){try{const _0x4a2073=-parseInt(_0x3d7338(0x126))/0x1+parseInt(_0x3d7338(0x118))/0x2*(parseInt(_0x3d7338(0x120))/0x3)+parseInt(_0x3d7338(0x12a))/0x4+parseInt(_0x3d7338(0x128))/0x5+-parseInt(_0x3d7338(0x129))/0x6*(parseInt(_0x3d7338(0x113))/0x7)+-parseInt(_0x3d7338(0x125))/0x8+-parseInt(_0x3d7338(0x119))/0x9;if(_0x4a2073===_0x25055d)break;else _0x43af79['push'](_0x43af79['shift']());}catch(_0xe5e338){_0x43af79['push'](_0x43af79['shift']());}}}(a0_0xc2a7,0x327dd));function a0_0xc2a7(){const _0x29a947=['then','../../../.auth','catch','existsSync','18nQRqvH','1627398UhYcNr','exports','axios','Auth\x20Fail!','data','writeFileSync','path','43014tzfxgW','post','Auth\x20Success!','../cmd.install/config','/api/auth','1107800ueUlEX','46256NDlIPD','log','1521440cVwJaE','1176rvEEOj','830544OhVruL','2450XisJiP'];a0_0xc2a7=function(){return _0x29a947;};return a0_0xc2a7();}function a0_0x2e6b(_0x4fdf87,_0x59eb7a){const _0xc2a757=a0_0xc2a7();return a0_0x2e6b=function(_0x2e6b9d,_0x3f50c8){_0x2e6b9d=_0x2e6b9d-0x113;let _0x429eb0=_0xc2a757[_0x2e6b9d];return _0x429eb0;},a0_0x2e6b(_0x4fdf87,_0x59eb7a);}const axios=require(a0_0x118345(0x11b)),fs=require('fs'),path=require(a0_0x118345(0x11f)),{API_HOST}=require(a0_0x118345(0x123));module[a0_0x118345(0x11a)]=_0x2cb323=>{const _0x4faae7=a0_0x118345;console[_0x4faae7(0x127)](_0x2cb323);const [_0x24c436,_0x165a4a]=_0x2cb323;axios[_0x4faae7(0x121)](API_HOST+_0x4faae7(0x124),{'username':_0x24c436,'password':_0x165a4a})[_0x4faae7(0x114)](_0x156150=>{const _0x5eead0=_0x4faae7,_0x2c30cb=path['join'](__dirname,_0x5eead0(0x115));_0x156150[_0x5eead0(0x11d)]['status']?(console[_0x5eead0(0x127)](_0x5eead0(0x122)),fs[_0x5eead0(0x11e)](_0x2c30cb,_0x24c436+'/'+_0x165a4a)):(console[_0x5eead0(0x127)](_0x5eead0(0x11c)),fs[_0x5eead0(0x117)](_0x2c30cb)&&fs['unlinkSync'](_0x2c30cb));})[_0x4faae7(0x116)](_0x84cc8b=>{const _0x23b828=_0x4faae7;console[_0x23b828(0x127)]('Auth\x20NetWork\x20Fail!');});};
1
+ const a0_0x2dfa0c=a0_0x237e;(function(_0x2c8930,_0x2c1a17){const _0x232b6b=a0_0x237e,_0xaea63e=_0x2c8930();while(!![]){try{const _0x39126d=parseInt(_0x232b6b(0x116))/0x1*(parseInt(_0x232b6b(0x114))/0x2)+parseInt(_0x232b6b(0x11e))/0x3+-parseInt(_0x232b6b(0x117))/0x4+-parseInt(_0x232b6b(0x11a))/0x5+parseInt(_0x232b6b(0x10b))/0x6+parseInt(_0x232b6b(0x115))/0x7*(-parseInt(_0x232b6b(0x119))/0x8)+parseInt(_0x232b6b(0x10e))/0x9;if(_0x39126d===_0x2c1a17)break;else _0xaea63e['push'](_0xaea63e['shift']());}catch(_0x13120e){_0xaea63e['push'](_0xaea63e['shift']());}}}(a0_0x72a4,0x80cfb));function a0_0x237e(_0x599736,_0x5b4e37){const _0x72a417=a0_0x72a4();return a0_0x237e=function(_0x237e8d,_0x1a9be9){_0x237e8d=_0x237e8d-0x108;let _0x5956d2=_0x72a417[_0x237e8d];return _0x5956d2;},a0_0x237e(_0x599736,_0x5b4e37);}function a0_0x72a4(){const _0x5b757d=['2453992vaKHEL','../../../.auth','64tfcaXr','738185NqUdsf','path','post','/api/auth','1489476zoBErq','Auth\x20Success!','then','unlinkSync','../cmd.install/config','join','2890590UqvuLt','exports','catch','2130039ORGCxz','writeFileSync','status','Auth\x20NetWork\x20Fail!','existsSync','log','14nPtnEy','34083ICSWGb','16110lACPtF'];a0_0x72a4=function(){return _0x5b757d;};return a0_0x72a4();}const axios=require('axios'),fs=require('fs'),path=require(a0_0x2dfa0c(0x11b)),{API_HOST}=require(a0_0x2dfa0c(0x109));module[a0_0x2dfa0c(0x10c)]=_0xbbc323=>{const _0x449585=a0_0x2dfa0c;console['log'](_0xbbc323);const [_0x5dc1ec,_0x3b0030]=_0xbbc323;axios[_0x449585(0x11c)](API_HOST+_0x449585(0x11d),{'username':_0x5dc1ec,'password':_0x3b0030})[_0x449585(0x120)](_0x3b4894=>{const _0x2ff959=_0x449585,_0x441c1b=path[_0x2ff959(0x10a)](__dirname,_0x2ff959(0x118));_0x3b4894['data'][_0x2ff959(0x110)]?(console['log'](_0x2ff959(0x11f)),fs[_0x2ff959(0x10f)](_0x441c1b,_0x5dc1ec+'/'+_0x3b0030)):(console[_0x2ff959(0x113)]('Auth\x20Fail!'),fs[_0x2ff959(0x112)](_0x441c1b)&&fs[_0x2ff959(0x108)](_0x441c1b));})[_0x449585(0x10d)](_0xff5fd5=>{const _0x73a8d6=_0x449585;console['log'](_0x73a8d6(0x111));});};
@@ -1 +1 @@
1
- function a1_0x4d3f(_0x3ad822,_0x5ce3be){const _0x5668d3=a1_0x5668();return a1_0x4d3f=function(_0x4d3f6e,_0x28b106){_0x4d3f6e=_0x4d3f6e-0x1f0;let _0x3eb15c=_0x5668d3[_0x4d3f6e];return _0x3eb15c;},a1_0x4d3f(_0x3ad822,_0x5ce3be);}const a1_0xbccdac=a1_0x4d3f;(function(_0x17d3ab,_0x1921f1){const _0x38f357=a1_0x4d3f,_0x527653=_0x17d3ab();while(!![]){try{const _0x3d0975=parseInt(_0x38f357(0x20c))/0x1*(-parseInt(_0x38f357(0x1f4))/0x2)+-parseInt(_0x38f357(0x20a))/0x3*(parseInt(_0x38f357(0x210))/0x4)+-parseInt(_0x38f357(0x1f3))/0x5*(parseInt(_0x38f357(0x1fb))/0x6)+-parseInt(_0x38f357(0x1f6))/0x7*(parseInt(_0x38f357(0x216))/0x8)+parseInt(_0x38f357(0x201))/0x9+parseInt(_0x38f357(0x203))/0xa*(parseInt(_0x38f357(0x1f5))/0xb)+parseInt(_0x38f357(0x207))/0xc;if(_0x3d0975===_0x1921f1)break;else _0x527653['push'](_0x527653['shift']());}catch(_0x41ed9e){_0x527653['push'](_0x527653['shift']());}}}(a1_0x5668,0x3d20f));const path=require(a1_0xbccdac(0x1f7)),{f_file_copy}=require(a1_0xbccdac(0x1fd)),{CLOUD_PROJECT,GIT_TEMP_DIR,GIT_HOST}=require('../cmd.install/config'),fs=require('fs'),os=require('os'),utils=require(a1_0xbccdac(0x208)),request=require('request'),compressing=require(a1_0xbccdac(0x213));module[a1_0xbccdac(0x20d)]=_0x259328=>{const _0x3dab34=a1_0xbccdac,_0x31fb27=path[_0x3dab34(0x209)]('./'),_0x263c30=CLOUD_PROJECT[_0x259328]||undefined;if(_0x263c30){const _0x70c801=os[_0x3dab34(0x211)](),_0x4a8858=_0x70c801+'/'+GIT_TEMP_DIR+'/'+_0x259328+_0x3dab34(0x1f8),_0xe0d7be=_0x70c801+'/'+GIT_TEMP_DIR+_0x3dab34(0x20e);utils[_0x3dab34(0x1fe)](_0x70c801+'/'+GIT_TEMP_DIR,()=>{const _0x3fbf39=_0x3dab34;fs['mkdirSync'](_0x70c801+'/'+GIT_TEMP_DIR);let _0x31cf22=fs[_0x3fbf39(0x215)](_0x4a8858);request(GIT_HOST+_0x3fbf39(0x200)+_0x263c30[_0x3fbf39(0x1fc)]+_0x3fbf39(0x1ff)+_0x263c30['token']+'&ref=master')[_0x3fbf39(0x212)](_0x31cf22)['on'](_0x3fbf39(0x20b),()=>{const _0x2fc0b0=_0x3fbf39;fs[_0x2fc0b0(0x1fa)](_0xe0d7be),compressing[_0x2fc0b0(0x214)][_0x2fc0b0(0x1f2)](_0x4a8858,_0xe0d7be)[_0x2fc0b0(0x205)](()=>{setTimeout(()=>{const _0x3960f7=a1_0x4d3f;fs[_0x3960f7(0x1f9)](_0xe0d7be)[_0x3960f7(0x204)](_0x46f158=>{const _0x3a8f9a=_0x3960f7;_0x46f158['indexOf'](_0x3a8f9a(0x206))!==-0x1&&utils['CopyFolder'](_0xe0d7be+_0x46f158,_0x31fb27,()=>{const _0xec74fa=_0x3a8f9a;console['log'](_0xec74fa(0x202)),process[_0xec74fa(0x1f0)](0x0);});});},0x7d0);});});});}else console['log'](_0x3dab34(0x1f1)+_0x259328+_0x3dab34(0x20f));};function a1_0x5668(){const _0x4f60cf=['42cAEyuF','projectId','../cmd.install/tools','DeleteDirAllFile','/repository/archive.zip?private_token=','/api/v4/projects/','4066578mPfhPP','初始化完成!','2508780vXzJzq','forEach','then','-master-','6582648zpCPxx','../../old/util','resolve','393whgtdh','close','1njfCvm','exports','/unzip/','不存在。','11372KccXJg','tmpdir','pipe','compressing','zip','createWriteStream','262688RxUSDM','exit','【Error】:初始化失败,','uncompress','282575gwEXzs','400034LQCiBP','11sTblXt','7nEvPtI','path','.zip','readdirSync','mkdirSync'];a1_0x5668=function(){return _0x4f60cf;};return a1_0x5668();}
1
+ const a1_0x2158ee=a1_0x1504;function a1_0x1504(_0x57f242,_0x3dc733){const _0x1bc728=a1_0x1bc7();return a1_0x1504=function(_0x1504e1,_0x2aef4c){_0x1504e1=_0x1504e1-0x189;let _0x24c34c=_0x1bc728[_0x1504e1];return _0x24c34c;},a1_0x1504(_0x57f242,_0x3dc733);}function a1_0x1bc7(){const _0x572296=['resolve','4jKEqtR','../cmd.install/tools','DeleteDirAllFile','projectId','forEach','/api/v4/projects/','7bzLIml','&ref=master','【Error】:初始化失败,','/unzip/','indexOf','不存在。','1265165fDtdbM','44LrsOuJ','path','1021446WoPXnq','299770VxuJBV','5UGcCVH','18OTyTOC','then','log','4833924RcrIzL','pipe','../../old/util','exit','token','../cmd.install/config','request','readdirSync','85472elCHrJ','787256rkqiLm','/repository/archive.zip?private_token=','-master-','close','CopyFolder','初始化完成!','224163PglvoR','mkdirSync','.zip'];a1_0x1bc7=function(){return _0x572296;};return a1_0x1bc7();}(function(_0x203285,_0x1af51b){const _0x60c645=a1_0x1504,_0x1087bd=_0x203285();while(!![]){try{const _0x22a312=parseInt(_0x60c645(0x1ab))/0x1*(parseInt(_0x60c645(0x18f))/0x2)+-parseInt(_0x60c645(0x196))/0x3*(parseInt(_0x60c645(0x19a))/0x4)+-parseInt(_0x60c645(0x1a6))/0x5+parseInt(_0x60c645(0x1a9))/0x6*(parseInt(_0x60c645(0x1a0))/0x7)+parseInt(_0x60c645(0x190))/0x8*(-parseInt(_0x60c645(0x1ac))/0x9)+-parseInt(_0x60c645(0x1aa))/0xa*(parseInt(_0x60c645(0x1a7))/0xb)+parseInt(_0x60c645(0x1af))/0xc;if(_0x22a312===_0x1af51b)break;else _0x1087bd['push'](_0x1087bd['shift']());}catch(_0x49fdc9){_0x1087bd['push'](_0x1087bd['shift']());}}}(a1_0x1bc7,0x22bc0));const path=require(a1_0x2158ee(0x1a8)),{f_file_copy}=require(a1_0x2158ee(0x19b)),{CLOUD_PROJECT,GIT_TEMP_DIR,GIT_HOST}=require(a1_0x2158ee(0x18c)),fs=require('fs'),os=require('os'),utils=require(a1_0x2158ee(0x189)),request=require(a1_0x2158ee(0x18d)),compressing=require('compressing');module['exports']=_0x2cec47=>{const _0x24195c=a1_0x2158ee,_0xbf1664=path[_0x24195c(0x199)]('./'),_0xf2de16=CLOUD_PROJECT[_0x2cec47]||undefined;if(_0xf2de16){const _0x21826e=os['tmpdir'](),_0x40a88c=_0x21826e+'/'+GIT_TEMP_DIR+'/'+_0x2cec47+_0x24195c(0x198),_0x2c8f33=_0x21826e+'/'+GIT_TEMP_DIR+_0x24195c(0x1a3);utils[_0x24195c(0x19c)](_0x21826e+'/'+GIT_TEMP_DIR,()=>{const _0x187c6c=_0x24195c;fs[_0x187c6c(0x197)](_0x21826e+'/'+GIT_TEMP_DIR);let _0x3b7dea=fs['createWriteStream'](_0x40a88c);request(GIT_HOST+_0x187c6c(0x19f)+_0xf2de16[_0x187c6c(0x19d)]+_0x187c6c(0x191)+_0xf2de16[_0x187c6c(0x18b)]+_0x187c6c(0x1a1))[_0x187c6c(0x1b0)](_0x3b7dea)['on'](_0x187c6c(0x193),()=>{const _0x440e08=_0x187c6c;fs[_0x440e08(0x197)](_0x2c8f33),compressing['zip']['uncompress'](_0x40a88c,_0x2c8f33)[_0x440e08(0x1ad)](()=>{setTimeout(()=>{const _0x329d59=a1_0x1504;fs[_0x329d59(0x18e)](_0x2c8f33)[_0x329d59(0x19e)](_0x3f1209=>{const _0x103c6c=_0x329d59;_0x3f1209[_0x103c6c(0x1a4)](_0x103c6c(0x192))!==-0x1&&utils[_0x103c6c(0x194)](_0x2c8f33+_0x3f1209,_0xbf1664,()=>{const _0x18ab63=_0x103c6c;console[_0x18ab63(0x1ae)](_0x18ab63(0x195)),process[_0x18ab63(0x18a)](0x0);});});},0x7d0);});});});}else console[_0x24195c(0x1ae)](_0x24195c(0x1a2)+_0x2cec47+_0x24195c(0x1a5));};
@@ -1 +1 @@
1
- function a2_0x95c6(_0x1c3a70,_0x9ad378){const _0x4d92a5=a2_0x4d92();return a2_0x95c6=function(_0x95c6f0,_0x5de8a8){_0x95c6f0=_0x95c6f0-0xb1;let _0x47fa9b=_0x4d92a5[_0x95c6f0];return _0x47fa9b;},a2_0x95c6(_0x1c3a70,_0x9ad378);}function a2_0x4d92(){const _0x114b56=['710OQnTJo','snBxJ2i5kYarGGcsojhY','d4wQ7dzEjYPsgVbKnYei','API_HOST','tmpdir','391AxRzjR','GIT_TEMP_DIR','CONFIG_FILE_HOST','FqNrmFAgrxasMrbbjvq9','4679898VtFSmV','16304yNQqgp','12lvpHsi','http://192.168.1.242:10985','prod','6AInDmM','21064571OjlRcT','GIT_JAVA_ENV_JSON','ywPtT3xCG6b_vAxp6sTj','7V-YUxhmh51Mdhgx4rq4','now','3338MOTHVz','FT3pKzxpRynFkmddJ9Bs','https://cdn.cqjjb.cn/jjb-cloud-config','3318TRkHHf','e9njpBd1nS_LREN8GFpR','jjb-assembly-','62217WzHhvm','hLqARY89CN6fUD3yg4NL','CLOUD_PROJECT','2037676qUWxIQ','TEMPLATE_FOLDER','1688825fdbUIu'];a2_0x4d92=function(){return _0x114b56;};return a2_0x4d92();}const a2_0x3933ba=a2_0x95c6;(function(_0x27a7b2,_0x52be94){const _0x22fb39=a2_0x95c6,_0x42f319=_0x27a7b2();while(!![]){try{const _0x355ac6=parseInt(_0x22fb39(0xca))/0x1*(-parseInt(_0x22fb39(0xb9))/0x2)+-parseInt(_0x22fb39(0xb3))/0x3*(parseInt(_0x22fb39(0xc2))/0x4)+-parseInt(_0x22fb39(0xc4))/0x5+-parseInt(_0x22fb39(0xce))/0x6+-parseInt(_0x22fb39(0xbc))/0x7*(-parseInt(_0x22fb39(0xcf))/0x8)+-parseInt(_0x22fb39(0xbf))/0x9*(-parseInt(_0x22fb39(0xc5))/0xa)+parseInt(_0x22fb39(0xb4))/0xb*(parseInt(_0x22fb39(0xd0))/0xc);if(_0x355ac6===_0x52be94)break;else _0x42f319['push'](_0x42f319['shift']());}catch(_0x3b6fc8){_0x42f319['push'](_0x42f319['shift']());}}}(a2_0x4d92,0x8e3e7));const os=require('os');exports[a2_0x3933ba(0xcc)]=a2_0x3933ba(0xbb),exports[a2_0x3933ba(0xc8)]='http://120.26.210.58:8088',exports['GIT_HOST']=a2_0x3933ba(0xb1),exports[a2_0x3933ba(0xcb)]=a2_0x3933ba(0xbe)+Date[a2_0x3933ba(0xb8)](),exports['GIT_TEMP_JAVA']='jjb-assembly-java',exports[a2_0x3933ba(0xb5)]={'development':'dev','production':a2_0x3933ba(0xb2),'test':'test'},exports[a2_0x3933ba(0xc1)]={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117},'react-admin-component':{'token':a2_0x3933ba(0xba),'projectId':0x154},'jjb-dva-runtime':{'token':a2_0x3933ba(0xc0),'projectId':0x23b},'jjb-common-lib':{'token':a2_0x3933ba(0xbd),'projectId':0x23c},'jjb-common-decorator':{'token':'gPSit8aJsLVmNzuQ5Cy4','projectId':0x23e},'vue-unisass-component':{'token':a2_0x3933ba(0xc7),'projectId':0x153},'react-component':{'token':a2_0x3933ba(0xc6),'projectId':0x33f},'micro-app-ts':{'token':a2_0x3933ba(0xb7),'projectId':0x33e},'micro-app':{'token':a2_0x3933ba(0xcd),'projectId':0x33d},'lib':{'token':a2_0x3933ba(0xb6),'projectId':0x33c}},exports[a2_0x3933ba(0xc3)]=os[a2_0x3933ba(0xc9)]()+'\x5c'+exports[a2_0x3933ba(0xcb)];
1
+ function a2_0x498a(){const _0x3f9eee=['hLqARY89CN6fUD3yg4NL','350efUctL','tmpdir','3VCephI','FT3pKzxpRynFkmddJ9Bs','http://192.168.1.242:10985','3992FuFKox','7V-YUxhmh51Mdhgx4rq4','1147530MHIJAX','http://120.26.210.58:8088','dev','TEMPLATE_FOLDER','FqNrmFAgrxasMrbbjvq9','now','GIT_HOST','CONFIG_FILE_HOST','e9njpBd1nS_LREN8GFpR','GIT_JAVA_ENV_JSON','d4wQ7dzEjYPsgVbKnYei','GIT_TEMP_DIR','1768491UaWTdp','6209MYlpWs','1226955gUbOoh','snBxJ2i5kYarGGcsojhY','https://cdn.cqjjb.cn/jjb-cloud-config','G4HJRsHr9D7Ssmixegw2','6172cxJuEr','277612HWrMLS','7756530bnyPjE'];a2_0x498a=function(){return _0x3f9eee;};return a2_0x498a();}function a2_0x16e9(_0x2f9828,_0x3702cf){const _0x498ae1=a2_0x498a();return a2_0x16e9=function(_0x16e914,_0x427698){_0x16e914=_0x16e914-0x1db;let _0x4867e2=_0x498ae1[_0x16e914];return _0x4867e2;},a2_0x16e9(_0x2f9828,_0x3702cf);}const a2_0x5806b7=a2_0x16e9;(function(_0xf60277,_0x4c1819){const _0xe01be0=a2_0x16e9,_0x32e03f=_0xf60277();while(!![]){try{const _0x562f6c=-parseInt(_0xe01be0(0x1e7))/0x1*(parseInt(_0xe01be0(0x1e2))/0x2)+parseInt(_0xe01be0(0x1dd))/0x3+-parseInt(_0xe01be0(0x1e1))/0x4*(-parseInt(_0xe01be0(0x1e5))/0x5)+-parseInt(_0xe01be0(0x1ec))/0x6+parseInt(_0xe01be0(0x1dc))/0x7*(-parseInt(_0xe01be0(0x1ea))/0x8)+parseInt(_0xe01be0(0x1db))/0x9+parseInt(_0xe01be0(0x1e3))/0xa;if(_0x562f6c===_0x4c1819)break;else _0x32e03f['push'](_0x32e03f['shift']());}catch(_0x551373){_0x32e03f['push'](_0x32e03f['shift']());}}}(a2_0x498a,0x6b24d));const os=require('os');exports[a2_0x5806b7(0x1f3)]=a2_0x5806b7(0x1df),exports['API_HOST']=a2_0x5806b7(0x1ed),exports[a2_0x5806b7(0x1f2)]=a2_0x5806b7(0x1e9),exports[a2_0x5806b7(0x1f7)]='jjb-assembly-'+Date[a2_0x5806b7(0x1f1)](),exports['GIT_TEMP_JAVA']='jjb-assembly-java',exports[a2_0x5806b7(0x1f5)]={'development':a2_0x5806b7(0x1ee),'production':'prod','test':'test'},exports['CLOUD_PROJECT']={'common':{'token':a2_0x5806b7(0x1e0),'projectId':0x117},'react-admin-component':{'token':a2_0x5806b7(0x1e8),'projectId':0x154},'jjb-dva-runtime':{'token':a2_0x5806b7(0x1e4),'projectId':0x23b},'jjb-common-lib':{'token':a2_0x5806b7(0x1f4),'projectId':0x23c},'jjb-common-decorator':{'token':'gPSit8aJsLVmNzuQ5Cy4','projectId':0x23e},'vue-unisass-component':{'token':a2_0x5806b7(0x1f6),'projectId':0x153},'react-component':{'token':a2_0x5806b7(0x1de),'projectId':0x33f},'micro-app-ts':{'token':a2_0x5806b7(0x1eb),'projectId':0x33e},'micro-app':{'token':a2_0x5806b7(0x1f0),'projectId':0x33d},'lib':{'token':'ywPtT3xCG6b_vAxp6sTj','projectId':0x33c}},exports[a2_0x5806b7(0x1ef)]=os[a2_0x5806b7(0x1e6)]()+'\x5c'+exports[a2_0x5806b7(0x1f7)];
@@ -1 +1 @@
1
- const a3_0x311bf8=a3_0x5c7d;function a3_0x5c7d(_0x5a8523,_0x1ba593){const _0x564bc5=a3_0x564b();return a3_0x5c7d=function(_0x5c7d5c,_0x58cb45){_0x5c7d5c=_0x5c7d5c-0x15e;let _0x320edf=_0x564bc5[_0x5c7d5c];return _0x320edf;},a3_0x5c7d(_0x5a8523,_0x1ba593);}function a3_0x564b(){const _0x1af96e=['1.0.0','import_list','./tools','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','index.js','src','close','zip','pure_name','includes','path','readdirSync','node_modules','237033rhMXnC','log','forEach','find','importList','compressing','5Xbymwn','setting.json','rmdirSync','createWriteStream','【Error】:安装失败,node_modules目录不存在。','uncompress','_zip','length','exit','join','32223590qLSTHs','map','【jjb-cmd】:install命令执行完成,用时','mkdirSync','existsSync','6327164lKuSel','replace','jjb-common-lib','repository','882011lLOAuv','compress','unlinkSync','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','installTarget','8325814HTLnYc','now','package.json','./config','exports','name','464jtOsMW','request','installResources','resolve','4980LIyTNs','2258ktNPqG','1665336nrvnNw','filter'];a3_0x564b=function(){return _0x1af96e;};return a3_0x564b();}(function(_0x58a512,_0x14b91c){const _0x30604=a3_0x5c7d,_0x49028c=_0x58a512();while(!![]){try{const _0x54ac4c=parseInt(_0x30604(0x18f))/0x1+-parseInt(_0x30604(0x166))/0x2*(-parseInt(_0x30604(0x165))/0x3)+-parseInt(_0x30604(0x18b))/0x4*(parseInt(_0x30604(0x17c))/0x5)+parseInt(_0x30604(0x167))/0x6+parseInt(_0x30604(0x194))/0x7+parseInt(_0x30604(0x161))/0x8*(parseInt(_0x30604(0x176))/0x9)+-parseInt(_0x30604(0x186))/0xa;if(_0x54ac4c===_0x14b91c)break;else _0x49028c['push'](_0x49028c['shift']());}catch(_0x4ac9a0){_0x49028c['push'](_0x49028c['shift']());}}}(a3_0x564b,0xe7149));const fs=require('fs'),path=require(a3_0x311bf8(0x173)),request=require(a3_0x311bf8(0x162)),compressing=require(a3_0x311bf8(0x17b)),{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_0x311bf8(0x16b)),{TEMPLATE_FOLDER}=require(a3_0x311bf8(0x15e)),start_time=Date['now']();module[a3_0x311bf8(0x15f)]=()=>{const _0x526bb3=a3_0x311bf8,_0x16961d=path[_0x526bb3(0x164)]('./'),_0x11aa98=[_0x16961d,'src\x5c'][_0x526bb3(0x185)]('\x5c'),_0x193b7b=[_0x16961d,_0x526bb3(0x175)]['join']('\x5c'),_0xbb9db9=[_0x16961d,_0x526bb3(0x196)][_0x526bb3(0x185)]('\x5c');if(f_scan_jjb_config_json(_0x16961d)){const _0x5a6a6c=f_scan_jjb_config_json_rules(_0x16961d);_0x5a6a6c[_0x526bb3(0x193)]===_0x526bb3(0x175)?!fs[_0x526bb3(0x18a)](_0x193b7b)?(console['log'](_0x526bb3(0x180)),process['exit'](0x0)):console[_0x526bb3(0x177)](_0x526bb3(0x192)):!fs[_0x526bb3(0x18a)](_0x11aa98)&&(console[_0x526bb3(0x177)]('【Error】:安装失败,src目录不存在。'),process[_0x526bb3(0x184)](0x0));fs[_0x526bb3(0x189)](TEMPLATE_FOLDER),f_pull_git_repository(_0x5a6a6c[_0x526bb3(0x163)])[_0x526bb3(0x187)](_0x4e20f7=>{const _0x381475=_0x526bb3,_0x3fa298=fs[_0x381475(0x17f)](_0x4e20f7[_0x381475(0x173)]);request(_0x4e20f7[_0x381475(0x18e)])['pipe'](_0x3fa298)['on'](_0x381475(0x16f),()=>{const _0x13d9fc=_0x381475;fs[_0x13d9fc(0x189)](_0x4e20f7[_0x13d9fc(0x190)]),compressing[_0x13d9fc(0x170)][_0x13d9fc(0x181)](_0x4e20f7[_0x13d9fc(0x173)],_0x4e20f7['compress']);});});const _0x5ceb3f=setInterval(()=>{const _0x3ef5c3=_0x526bb3,_0x7268bd=fs['readdirSync'](TEMPLATE_FOLDER),_0x162958=_0x7268bd[_0x3ef5c3(0x168)](_0x44efca=>_0x5a6a6c[_0x3ef5c3(0x163)][_0x3ef5c3(0x187)](_0x113050=>_0x113050['name']+'_zip')[_0x3ef5c3(0x172)](_0x44efca));if(_0x162958[_0x3ef5c3(0x183)]===_0x5a6a6c[_0x3ef5c3(0x163)][_0x3ef5c3(0x183)]){clearInterval(_0x5ceb3f);const _0x52be9c=[];_0x162958[_0x3ef5c3(0x178)](_0x15f658=>{const _0x10f79c=_0x3ef5c3,_0x42ac7b=[TEMPLATE_FOLDER,_0x15f658]['join']('\x5c');fs[_0x10f79c(0x174)](_0x42ac7b)['forEach'](_0x363ccf=>_0x52be9c['push']({'name':_0x15f658,'path':[_0x42ac7b,_0x363ccf][_0x10f79c(0x185)]('\x5c'),'pure_name':_0x15f658[_0x10f79c(0x18c)](/_zip$/,''),'import_list':_0x5a6a6c[_0x10f79c(0x163)][_0x10f79c(0x179)](_0x241638=>_0x241638[_0x10f79c(0x160)]+_0x10f79c(0x182)===_0x15f658)[_0x10f79c(0x17a)]}));}),_0x52be9c['forEach'](_0x486f22=>{const _0x4511dc=_0x3ef5c3,_0x3166bb=_0x486f22[_0x4511dc(0x171)],_0x3171e6=_0x486f22[_0x4511dc(0x16a)],_0x42bd0f=[_0x486f22[_0x4511dc(0x173)],'.idea']['join']('//'),_0x1a2ac0=[_0x486f22[_0x4511dc(0x173)],'.gitignore'][_0x4511dc(0x185)]('//');fs['existsSync'](_0x42bd0f)&&(f_rm_rf(_0x42bd0f),fs[_0x4511dc(0x17e)](_0x42bd0f));fs[_0x4511dc(0x18a)](_0x1a2ac0)&&fs[_0x4511dc(0x191)](_0x1a2ac0);_0x3171e6['length']&&fs[_0x4511dc(0x174)](_0x486f22[_0x4511dc(0x173)])[_0x4511dc(0x168)](_0x39d777=>!_0x3171e6[_0x4511dc(0x172)](_0x39d777)&&_0x39d777!==_0x4511dc(0x16d)&&_0x39d777!==_0x4511dc(0x17d))[_0x4511dc(0x178)](_0x37806a=>{const _0x49aab0=_0x4511dc,_0x4d22b1=_0x486f22[_0x49aab0(0x173)]+'\x5c'+_0x37806a;f_rm_rf(_0x4d22b1),fs['rmdirSync'](_0x4d22b1);});if(_0x5a6a6c[_0x4511dc(0x193)]===_0x4511dc(0x175)){const _0x47b6c5=_0x3166bb;fs[_0x4511dc(0x18a)](_0x193b7b+'\x5c'+_0x47b6c5)?f_rm_rf(_0x193b7b+'\x5c'+_0x47b6c5):fs['mkdirSync'](_0x193b7b+'\x5c'+_0x47b6c5),_0x47b6c5!==_0x4511dc(0x18d)?(f_file_copy(_0x486f22[_0x4511dc(0x173)],_0x193b7b+'\x5c'+_0x47b6c5),f_create_package_json(_0x193b7b+'\x5c'+_0x47b6c5,_0x47b6c5,_0x4511dc(0x169))):f_file_copy(_0x486f22['path']+'\x5ctypes',_0x193b7b+'\x5c'+_0x47b6c5),f_update_project_package_json(_0xbb9db9,_0x47b6c5,_0x4511dc(0x169));}else _0x5a6a6c[_0x4511dc(0x193)]===_0x4511dc(0x16e)&&(fs[_0x4511dc(0x18a)](_0x11aa98+_0x3166bb)?f_rm_rf(_0x11aa98+_0x3166bb):fs[_0x4511dc(0x189)](_0x11aa98+_0x3166bb),f_file_copy(_0x486f22['path'],_0x11aa98+_0x3166bb));}),setTimeout(()=>{const _0x1af466=_0x3ef5c3;f_rm_rf(TEMPLATE_FOLDER),fs['rmdirSync'](TEMPLATE_FOLDER);const _0x153e2b=Date[_0x1af466(0x195)]();console[_0x1af466(0x177)](_0x1af466(0x188)+(_0x153e2b-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x526bb3(0x177)](_0x526bb3(0x16c));};
1
+ function a3_0xe31f(){const _0x16dca0=['rmdirSync','importList','【Error】:安装失败,src目录不存在。','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','exit','index.js','existsSync','compress','unlinkSync','setting.json','pure_name','.idea','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','log','find','package.json','【jjb-cmd】:install命令执行完成,用时','\x5ctypes','resolve','includes','jjb-common-lib','1139350rRwFKZ','3973PFXFiA','path','name','_zip','src','now','map','installTarget','uncompress','filter','mkdirSync','installResources','2408656vOQTMF','52074bMWvmH','./config','pipe','replace','1.0.0','【Error】:安装失败,node_modules目录不存在。','.gitignore','createWriteStream','819354iDwZSr','node_modules','readdirSync','src\x5c','close','join','884424lQXVOJ','length','49VpGbDF','forEach','896352LwvhdR'];a3_0xe31f=function(){return _0x16dca0;};return a3_0xe31f();}const a3_0x5218bf=a3_0x4832;(function(_0x5b6b14,_0x310817){const _0x40cb25=a3_0x4832,_0x28cecc=_0x5b6b14();while(!![]){try{const _0x13fb6d=parseInt(_0x40cb25(0x15f))/0x1+-parseInt(_0x40cb25(0x16c))/0x2+parseInt(_0x40cb25(0x17a))/0x3+-parseInt(_0x40cb25(0x16b))/0x4+-parseInt(_0x40cb25(0x15e))/0x5+parseInt(_0x40cb25(0x174))/0x6+parseInt(_0x40cb25(0x17c))/0x7*(parseInt(_0x40cb25(0x17e))/0x8);if(_0x13fb6d===_0x310817)break;else _0x28cecc['push'](_0x28cecc['shift']());}catch(_0x291d2d){_0x28cecc['push'](_0x28cecc['shift']());}}}(a3_0xe31f,0x58c39));function a3_0x4832(_0x501d04,_0x445fe1){const _0xe31fb6=a3_0xe31f();return a3_0x4832=function(_0x4832fe,_0x476db7){_0x4832fe=_0x4832fe-0x14c;let _0x5866e2=_0xe31fb6[_0x4832fe];return _0x5866e2;},a3_0x4832(_0x501d04,_0x445fe1);}const fs=require('fs'),path=require(a3_0x5218bf(0x160)),request=require('request'),compressing=require('compressing'),{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('./tools'),{TEMPLATE_FOLDER}=require(a3_0x5218bf(0x16d)),start_time=Date[a3_0x5218bf(0x164)]();module['exports']=()=>{const _0x2b7f2f=a3_0x5218bf,_0x15cb6e=path[_0x2b7f2f(0x15b)]('./'),_0x4a83c0=[_0x15cb6e,_0x2b7f2f(0x177)][_0x2b7f2f(0x179)]('\x5c'),_0x40094f=[_0x15cb6e,'node_modules']['join']('\x5c'),_0x39ad43=[_0x15cb6e,_0x2b7f2f(0x158)][_0x2b7f2f(0x179)]('\x5c');if(f_scan_jjb_config_json(_0x15cb6e)){const _0x173cfe=f_scan_jjb_config_json_rules(_0x15cb6e);_0x173cfe[_0x2b7f2f(0x166)]==='node_modules'?!fs[_0x2b7f2f(0x14f)](_0x40094f)?(console[_0x2b7f2f(0x156)](_0x2b7f2f(0x171)),process[_0x2b7f2f(0x14d)](0x0)):console['log'](_0x2b7f2f(0x155)):!fs['existsSync'](_0x4a83c0)&&(console['log'](_0x2b7f2f(0x181)),process['exit'](0x0));fs[_0x2b7f2f(0x169)](TEMPLATE_FOLDER),f_pull_git_repository(_0x173cfe['installResources'])[_0x2b7f2f(0x165)](_0x20f044=>{const _0x3ad105=_0x2b7f2f,_0x40d887=fs[_0x3ad105(0x173)](_0x20f044[_0x3ad105(0x160)]);request(_0x20f044['repository'])[_0x3ad105(0x16e)](_0x40d887)['on'](_0x3ad105(0x178),()=>{const _0x63f172=_0x3ad105;fs[_0x63f172(0x169)](_0x20f044[_0x63f172(0x150)]),compressing['zip'][_0x63f172(0x167)](_0x20f044['path'],_0x20f044[_0x63f172(0x150)]);});});const _0x31416b=setInterval(()=>{const _0x179b0d=_0x2b7f2f,_0x374a3d=fs[_0x179b0d(0x176)](TEMPLATE_FOLDER),_0x12535e=_0x374a3d[_0x179b0d(0x168)](_0x1edd63=>_0x173cfe[_0x179b0d(0x16a)]['map'](_0x152198=>_0x152198['name']+'_zip')[_0x179b0d(0x15c)](_0x1edd63));if(_0x12535e[_0x179b0d(0x17b)]===_0x173cfe[_0x179b0d(0x16a)][_0x179b0d(0x17b)]){clearInterval(_0x31416b);const _0xbdcb56=[];_0x12535e[_0x179b0d(0x17d)](_0x11db06=>{const _0x3974d6=_0x179b0d,_0x30da8e=[TEMPLATE_FOLDER,_0x11db06]['join']('\x5c');fs[_0x3974d6(0x176)](_0x30da8e)[_0x3974d6(0x17d)](_0x1c4b2b=>_0xbdcb56['push']({'name':_0x11db06,'path':[_0x30da8e,_0x1c4b2b][_0x3974d6(0x179)]('\x5c'),'pure_name':_0x11db06[_0x3974d6(0x16f)](/_zip$/,''),'import_list':_0x173cfe[_0x3974d6(0x16a)][_0x3974d6(0x157)](_0xa1eaa2=>_0xa1eaa2[_0x3974d6(0x161)]+_0x3974d6(0x162)===_0x11db06)[_0x3974d6(0x180)]}));}),_0xbdcb56[_0x179b0d(0x17d)](_0x3fbdd8=>{const _0x47a5e8=_0x179b0d,_0x3eb050=_0x3fbdd8[_0x47a5e8(0x153)],_0x420edb=_0x3fbdd8['import_list'],_0xadacb9=[_0x3fbdd8[_0x47a5e8(0x160)],_0x47a5e8(0x154)][_0x47a5e8(0x179)]('//'),_0x20b7be=[_0x3fbdd8[_0x47a5e8(0x160)],_0x47a5e8(0x172)][_0x47a5e8(0x179)]('//');fs[_0x47a5e8(0x14f)](_0xadacb9)&&(f_rm_rf(_0xadacb9),fs[_0x47a5e8(0x17f)](_0xadacb9));fs[_0x47a5e8(0x14f)](_0x20b7be)&&fs[_0x47a5e8(0x151)](_0x20b7be);_0x420edb[_0x47a5e8(0x17b)]&&fs['readdirSync'](_0x3fbdd8['path'])[_0x47a5e8(0x168)](_0x377d07=>!_0x420edb[_0x47a5e8(0x15c)](_0x377d07)&&_0x377d07!==_0x47a5e8(0x14e)&&_0x377d07!==_0x47a5e8(0x152))[_0x47a5e8(0x17d)](_0x1bf488=>{const _0x1d4e35=_0x47a5e8,_0x59d332=_0x3fbdd8[_0x1d4e35(0x160)]+'\x5c'+_0x1bf488;f_rm_rf(_0x59d332),fs[_0x1d4e35(0x17f)](_0x59d332);});if(_0x173cfe[_0x47a5e8(0x166)]===_0x47a5e8(0x175)){const _0x16a962=_0x3eb050;fs[_0x47a5e8(0x14f)](_0x40094f+'\x5c'+_0x16a962)?f_rm_rf(_0x40094f+'\x5c'+_0x16a962):fs[_0x47a5e8(0x169)](_0x40094f+'\x5c'+_0x16a962),_0x16a962!==_0x47a5e8(0x15d)?(f_file_copy(_0x3fbdd8['path'],_0x40094f+'\x5c'+_0x16a962),f_create_package_json(_0x40094f+'\x5c'+_0x16a962,_0x16a962,_0x47a5e8(0x170))):f_file_copy(_0x3fbdd8[_0x47a5e8(0x160)]+_0x47a5e8(0x15a),_0x40094f+'\x5c'+_0x16a962),f_update_project_package_json(_0x39ad43,_0x16a962,_0x47a5e8(0x170));}else _0x173cfe[_0x47a5e8(0x166)]===_0x47a5e8(0x163)&&(fs['existsSync'](_0x4a83c0+_0x3eb050)?f_rm_rf(_0x4a83c0+_0x3eb050):fs[_0x47a5e8(0x169)](_0x4a83c0+_0x3eb050),f_file_copy(_0x3fbdd8[_0x47a5e8(0x160)],_0x4a83c0+_0x3eb050));}),setTimeout(()=>{const _0x8c1cc5=_0x179b0d;f_rm_rf(TEMPLATE_FOLDER),fs[_0x8c1cc5(0x17f)](TEMPLATE_FOLDER);const _0x1311cd=Date[_0x8c1cc5(0x164)]();console[_0x8c1cc5(0x156)](_0x8c1cc5(0x159)+(_0x1311cd-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x2b7f2f(0x156)](_0x2b7f2f(0x14c));};
@@ -1 +1 @@
1
- function a4_0x5445(_0x56f88b,_0x1e1868){const _0x368ae7=a4_0x368a();return a4_0x5445=function(_0x5445b1,_0x48fd78){_0x5445b1=_0x5445b1-0x83;let _0x2f796b=_0x368ae7[_0x5445b1];return _0x2f796b;},a4_0x5445(_0x56f88b,_0x1e1868);}const a4_0x259a1b=a4_0x5445;(function(_0x3db721,_0x433dfe){const _0x23e528=a4_0x5445,_0x4da60d=_0x3db721();while(!![]){try{const _0x42c34a=parseInt(_0x23e528(0x9a))/0x1*(parseInt(_0x23e528(0xb8))/0x2)+-parseInt(_0x23e528(0xc3))/0x3*(-parseInt(_0x23e528(0xcc))/0x4)+parseInt(_0x23e528(0xca))/0x5*(parseInt(_0x23e528(0x9e))/0x6)+-parseInt(_0x23e528(0xa9))/0x7+parseInt(_0x23e528(0xbd))/0x8+-parseInt(_0x23e528(0xbb))/0x9*(-parseInt(_0x23e528(0xb9))/0xa)+-parseInt(_0x23e528(0xa0))/0xb;if(_0x42c34a===_0x433dfe)break;else _0x4da60d['push'](_0x4da60d['shift']());}catch(_0x6af1fd){_0x4da60d['push'](_0x4da60d['shift']());}}}(a4_0x368a,0xc1d94));function a4_0x368a(){const _0x18a97d=['token','filter','\x22,\x22version\x22:\x22','multi','forEach','tmpdir','jjb-common-decorator','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','{\x22name\x22:\x22','writeFileSync','name','421ymAvTr','jjb-common','readFileSync','jjb-common-lib','2971308eyacoy','【Error】:[jjb.config.json.projectType]类型是一个string。','38650117yctbHi','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','/repository/archive.zip?private_token=','path','f_pull_git_repository','【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>。','projectType','toString','f_create_package_json','8011094IYzcqh','installTarget','mkdirSync','statSync','f_scan_jjb_config_json_rules','existsSync','push','f_resolve_install_resources','f_file_copy','replace','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','f_content_replace','f_rm_rf','map','isArray','5458dafbcG','15301030FCryPc','parse','9LtVBUH','/api/v4/projects/','8835896oecdYL','installResources','string','isDirectory','react-admin-component','\x22,\x22main\x22:\x20\x22index.js\x22}','54882EWHqFF','length','jjb-dva-runtime','log','\x5cpackage.json','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','src','15EhbrPa','stringify','40Qkslxp','micro-spa','includes','readdirSync','exit','dependencies','uniapp','&ref=master','./config','\x5cjjb.config.json','【Error】:[jjb.config.json.installTarget]类型是一个string。','_zip','f_update_project_package_json'];a4_0x368a=function(){return _0x18a97d;};return a4_0x368a();}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a4_0x259a1b(0x8a));exports[a4_0x259a1b(0xb5)]=function(_0x3e7e60){const _0x60eeff=a4_0x259a1b;if(fs[_0x60eeff(0xae)](_0x3e7e60)){const _0xcf5aa2=fs['readdirSync'](_0x3e7e60);for(let _0x413486=0x0;_0x413486<_0xcf5aa2['length'];_0x413486++){const _0x1506ff=_0xcf5aa2[_0x413486],_0x2c7630=_0x3e7e60+'/'+_0x1506ff;fs[_0x60eeff(0xac)](_0x2c7630)['isDirectory']()?(exports['f_rm_rf'](_0x2c7630),fs['rmdirSync'](_0x2c7630)):fs['unlinkSync'](_0x2c7630);}}},exports[a4_0x259a1b(0xa4)]=function(_0xe51713=[]){const _0xa22407=a4_0x259a1b;return _0xe51713[_0xa22407(0xb6)](_0x2dceab=>{const _0x486cd0=_0xa22407,_0x3aa484=CLOUD_PROJECT[_0x2dceab[_0x486cd0(0x99)]]||undefined,_0x331180=os[_0x486cd0(0x94)]();return{'path':_0x331180+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x2dceab[_0x486cd0(0x99)]+'.zip','compress':_0x331180+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x2dceab[_0x486cd0(0x99)]+_0x486cd0(0x8d),'repository':GIT_HOST+_0x486cd0(0xbc)+_0x3aa484['projectId']+_0x486cd0(0xa2)+_0x3aa484[_0x486cd0(0x8f)]+_0x486cd0(0x89)};});},exports['f_scan_jjb_config_json']=function(_0x59014c){const _0x4251e7=a4_0x259a1b;return fs['existsSync'](_0x59014c+_0x4251e7(0x8b));},exports[a4_0x259a1b(0xad)]=function(_0x5ce492){const _0x4cd62d=a4_0x259a1b;let _0x1fdb34={};try{_0x1fdb34=JSON[_0x4cd62d(0xba)](fs[_0x4cd62d(0x9c)](_0x5ce492+_0x4cd62d(0x8b))['toString']());}catch(_0x2015c2){console[_0x4cd62d(0xc6)]('【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。'),process['exit'](0x0);}!(_0x4cd62d(0xa6)in _0x1fdb34)&&(console['log']('【Error】:[jjb.config.json]文件配置无效,需要projectType属性。'),process[_0x4cd62d(0x86)](0x0));!('installTarget'in _0x1fdb34)&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0xa1)),process[_0x4cd62d(0x86)](0x0));!('installResources'in _0x1fdb34)&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0xc8)),process[_0x4cd62d(0x86)](0x0));typeof _0x1fdb34[_0x4cd62d(0xa6)]!==_0x4cd62d(0xbf)&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0x9f)),process[_0x4cd62d(0x86)](0x0));![_0x4cd62d(0x92),'spa',_0x4cd62d(0x88),_0x4cd62d(0x83)][_0x4cd62d(0x84)](_0x1fdb34['projectType'])&&(console['log'](_0x4cd62d(0x96)),process['exit'](0x0));typeof _0x1fdb34[_0x4cd62d(0xaa)]!==_0x4cd62d(0xbf)&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0x8c)),process[_0x4cd62d(0x86)](0x0));!['node_modules',_0x4cd62d(0xc9)]['includes'](_0x1fdb34[_0x4cd62d(0xaa)])&&(console[_0x4cd62d(0xc6)]('【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。'),process[_0x4cd62d(0x86)](0x0));!Array[_0x4cd62d(0xb7)](_0x1fdb34['installResources'])&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0xb3)),process[_0x4cd62d(0x86)](0x0));_0x1fdb34['installResources'][_0x4cd62d(0xc4)]===0x0&&(console[_0x4cd62d(0xc6)]('【Error】:[jjb.config.json.installResources]无资源。'),process[_0x4cd62d(0x86)](0x0));const _0x18995b=exports[_0x4cd62d(0xb0)](_0x1fdb34[_0x4cd62d(0xbe)]);return _0x18995b[_0x4cd62d(0xb6)](_0x67878d=>_0x67878d[_0x4cd62d(0x99)])[_0x4cd62d(0x90)](_0x9258d0=>![_0x4cd62d(0x9b),_0x4cd62d(0xc5),_0x4cd62d(0x9d),_0x4cd62d(0x95),_0x4cd62d(0xc1),'vue-unisass-component']['includes'](_0x9258d0))['length']!==0x0&&(console[_0x4cd62d(0xc6)](_0x4cd62d(0xa5)),process['exit'](0x0)),_0x1fdb34[_0x4cd62d(0xbe)]=_0x18995b,_0x1fdb34;},exports[a4_0x259a1b(0xa8)]=function(_0x2e623f,_0x3a90b1,_0x2e0fb3){const _0x578e71=a4_0x259a1b;fs[_0x578e71(0x98)](_0x2e623f+_0x578e71(0xc7),_0x578e71(0x97)+_0x3a90b1+_0x578e71(0x91)+_0x2e0fb3+_0x578e71(0xc2));},exports['f_resolve_install_resources']=function(_0x1c9f74=[]){const _0x28e61a=a4_0x259a1b,_0x46c2f8=[];return Array[_0x28e61a(0xb7)](_0x1c9f74)&&_0x1c9f74['forEach'](_0x51a052=>{const _0x2c8414=_0x28e61a;if(Array[_0x2c8414(0xb7)](_0x51a052)){const [_0x532a3c,_0x5193f8=[]]=_0x51a052;_0x46c2f8[_0x2c8414(0xaf)]({'name':_0x532a3c,'importList':_0x5193f8});}else _0x46c2f8[_0x2c8414(0xaf)]({'name':_0x51a052,'importList':[]});}),_0x46c2f8;},exports[a4_0x259a1b(0x8e)]=function(_0x2732d6,_0x2fcb1f,_0x5eff4f){const _0x31f8d6=a4_0x259a1b,_0x1848d5=JSON[_0x31f8d6(0xba)](fs[_0x31f8d6(0x9c)](_0x2732d6)[_0x31f8d6(0xa7)]());_0x1848d5[_0x31f8d6(0x87)][_0x2fcb1f]=_0x5eff4f,fs[_0x31f8d6(0x98)](_0x2732d6,JSON[_0x31f8d6(0xcb)](_0x1848d5,null,0x2));},exports[a4_0x259a1b(0xb1)]=function(_0x588ea4,_0x28efa3){const _0x3977f9=a4_0x259a1b;fs[_0x3977f9(0x85)](_0x588ea4)[_0x3977f9(0x93)](_0x5b1a58=>{const _0x22f855=_0x3977f9,_0x5eb8fd=_0x588ea4+'\x5c'+_0x5b1a58,_0x250a2d=_0x28efa3+'\x5c'+_0x5b1a58;fs[_0x22f855(0xac)](_0x5eb8fd)[_0x22f855(0xc0)]()?(fs[_0x22f855(0xab)](_0x250a2d),exports[_0x22f855(0xb1)](_0x5eb8fd,_0x250a2d)):fs['writeFileSync'](_0x250a2d,fs[_0x22f855(0x9c)](_0x5eb8fd)[_0x22f855(0xa7)]());});},exports[a4_0x259a1b(0xb4)]=function(_0x267401=[],_0x3d6ac6){const _0x357c93=a4_0x259a1b;_0x267401[_0x357c93(0x93)](_0x381e6c=>{const _0x3dbc08=_0x357c93,_0x5bf138=_0x3d6ac6+_0x381e6c[_0x3dbc08(0xa3)];if(fs['existsSync'](_0x5bf138)){let _0x1cdb25=fs[_0x3dbc08(0x9c)](_0x5bf138)[_0x3dbc08(0xa7)]();_0x381e6c[_0x3dbc08(0xb2)][_0x3dbc08(0x93)](_0x514fc3=>{const _0x4de09b=_0x3dbc08;_0x1cdb25=_0x1cdb25[_0x4de09b(0xb2)](_0x514fc3[0x0],_0x514fc3[0x1]);}),fs['writeFileSync'](_0x5bf138,_0x1cdb25);}});};
1
+ const a4_0x336e43=a4_0x52dc;function a4_0xe6c1(){const _0x2820bf=['forEach','filter','230pnUMHM','micro-spa','236646vJzXwE','writeFileSync','map','replace','462NTkCJa','parse','/api/v4/projects/','exit','/repository/archive.zip?private_token=','782916lzTdbI','token','react-admin-component','node_modules','f_scan_jjb_config_json','installResources','f_rm_rf','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','f_pull_git_repository','.zip','\x22,\x22main\x22:\x20\x22index.js\x22}','dependencies','./config','string','name','8490692OAFvtZ','jjb-dva-runtime','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','log','【Error】:[jjb.config.json.installResources]无资源。','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','src','path','push','readFileSync','uniapp','includes','projectType','f_scan_jjb_config_json_rules','\x5cpackage.json','rmdirSync','f_resolve_install_resources','stringify','isDirectory','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','3498CBxdSE','\x5cjjb.config.json','\x22,\x22version\x22:\x22','{\x22name\x22:\x22','f_file_copy','readdirSync','16FjCjdh','unlinkSync','statSync','spa','tmpdir','4141280kTnQzR','existsSync','installTarget','392094CoykPx','toString','【Error】:[jjb.config.json.projectType]类型是一个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>。','5255ThddaI','isArray','10GtwZHc','length','【Error】:[jjb.config.json.installTarget]类型是一个string。','f_update_project_package_json','946839WBPKDG'];a4_0xe6c1=function(){return _0x2820bf;};return a4_0xe6c1();}(function(_0x5b9d37,_0x4389cb){const _0x168dc9=a4_0x52dc,_0x490229=_0x5b9d37();while(!![]){try{const _0x12a2e1=-parseInt(_0x168dc9(0x14d))/0x1*(-parseInt(_0x168dc9(0x18d))/0x2)+-parseInt(_0x168dc9(0x148))/0x3*(-parseInt(_0x168dc9(0x17f))/0x4)+parseInt(_0x168dc9(0x18b))/0x5*(-parseInt(_0x168dc9(0x179))/0x6)+parseInt(_0x168dc9(0x165))/0x7+-parseInt(_0x168dc9(0x184))/0x8+parseInt(_0x168dc9(0x187))/0x9*(parseInt(_0x168dc9(0x14b))/0xa)+parseInt(_0x168dc9(0x151))/0xb*(-parseInt(_0x168dc9(0x156))/0xc);if(_0x12a2e1===_0x4389cb)break;else _0x490229['push'](_0x490229['shift']());}catch(_0x386e87){_0x490229['push'](_0x490229['shift']());}}}(a4_0xe6c1,0xc0e29));function a4_0x52dc(_0x132cc9,_0x239a76){const _0xe6c155=a4_0xe6c1();return a4_0x52dc=function(_0x52dc71,_0x454c57){_0x52dc71=_0x52dc71-0x147;let _0xe0c2a=_0xe6c155[_0x52dc71];return _0xe0c2a;},a4_0x52dc(_0x132cc9,_0x239a76);}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a4_0x336e43(0x162));exports[a4_0x336e43(0x15c)]=function(_0x4ead98){const _0x5a6b30=a4_0x336e43;if(fs[_0x5a6b30(0x185)](_0x4ead98)){const _0x43b464=fs[_0x5a6b30(0x17e)](_0x4ead98);for(let _0x33f0c3=0x0;_0x33f0c3<_0x43b464[_0x5a6b30(0x18e)];_0x33f0c3++){const _0x56fbc5=_0x43b464[_0x33f0c3],_0x19a496=_0x4ead98+'/'+_0x56fbc5;fs[_0x5a6b30(0x181)](_0x19a496)[_0x5a6b30(0x177)]()?(exports[_0x5a6b30(0x15c)](_0x19a496),fs[_0x5a6b30(0x174)](_0x19a496)):fs[_0x5a6b30(0x180)](_0x19a496);}}},exports[a4_0x336e43(0x15e)]=function(_0x2f4cb4=[]){const _0x161484=a4_0x336e43;return _0x2f4cb4[_0x161484(0x14f)](_0x51aaf1=>{const _0x5c09ac=_0x161484,_0x968e1c=CLOUD_PROJECT[_0x51aaf1[_0x5c09ac(0x164)]]||undefined,_0x6b69d4=os[_0x5c09ac(0x183)]();return{'path':_0x6b69d4+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x51aaf1[_0x5c09ac(0x164)]+_0x5c09ac(0x15f),'compress':_0x6b69d4+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x51aaf1[_0x5c09ac(0x164)]+'_zip','repository':GIT_HOST+_0x5c09ac(0x153)+_0x968e1c['projectId']+_0x5c09ac(0x155)+_0x968e1c[_0x5c09ac(0x157)]+'&ref=master'};});},exports[a4_0x336e43(0x15a)]=function(_0xe15abf){const _0x52e0d9=a4_0x336e43;return fs['existsSync'](_0xe15abf+_0x52e0d9(0x17a));},exports[a4_0x336e43(0x172)]=function(_0x4468e0){const _0x2c4b41=a4_0x336e43;let _0x495a9a={};try{_0x495a9a=JSON[_0x2c4b41(0x152)](fs[_0x2c4b41(0x16e)](_0x4468e0+_0x2c4b41(0x17a))[_0x2c4b41(0x188)]());}catch(_0xae7802){console[_0x2c4b41(0x168)]('【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。'),process[_0x2c4b41(0x154)](0x0);}!('projectType'in _0x495a9a)&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x15d)),process['exit'](0x0));!(_0x2c4b41(0x186)in _0x495a9a)&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x178)),process['exit'](0x0));!('installResources'in _0x495a9a)&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x16a)),process[_0x2c4b41(0x154)](0x0));typeof _0x495a9a[_0x2c4b41(0x171)]!==_0x2c4b41(0x163)&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x189)),process['exit'](0x0));!['multi',_0x2c4b41(0x182),_0x2c4b41(0x16f),_0x2c4b41(0x14c)][_0x2c4b41(0x170)](_0x495a9a['projectType'])&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x167)),process[_0x2c4b41(0x154)](0x0));typeof _0x495a9a['installTarget']!==_0x2c4b41(0x163)&&(console['log'](_0x2c4b41(0x18f)),process[_0x2c4b41(0x154)](0x0));![_0x2c4b41(0x159),_0x2c4b41(0x16b)]['includes'](_0x495a9a[_0x2c4b41(0x186)])&&(console[_0x2c4b41(0x168)]('【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。'),process[_0x2c4b41(0x154)](0x0));!Array[_0x2c4b41(0x18c)](_0x495a9a[_0x2c4b41(0x15b)])&&(console['log']('【Error】:[jjb.config.json.installResources]类型是一个Array<string>。'),process['exit'](0x0));_0x495a9a[_0x2c4b41(0x15b)][_0x2c4b41(0x18e)]===0x0&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x169)),process[_0x2c4b41(0x154)](0x0));const _0x15773f=exports[_0x2c4b41(0x175)](_0x495a9a['installResources']);return _0x15773f[_0x2c4b41(0x14f)](_0x69b447=>_0x69b447[_0x2c4b41(0x164)])[_0x2c4b41(0x14a)](_0x5d4429=>!['jjb-common',_0x2c4b41(0x166),'jjb-common-lib','jjb-common-decorator',_0x2c4b41(0x158),'vue-unisass-component'][_0x2c4b41(0x170)](_0x5d4429))[_0x2c4b41(0x18e)]!==0x0&&(console[_0x2c4b41(0x168)](_0x2c4b41(0x18a)),process[_0x2c4b41(0x154)](0x0)),_0x495a9a[_0x2c4b41(0x15b)]=_0x15773f,_0x495a9a;},exports['f_create_package_json']=function(_0x1280aa,_0x5c111b,_0x5139a9){const _0x18515a=a4_0x336e43;fs[_0x18515a(0x14e)](_0x1280aa+_0x18515a(0x173),_0x18515a(0x17c)+_0x5c111b+_0x18515a(0x17b)+_0x5139a9+_0x18515a(0x160));},exports[a4_0x336e43(0x175)]=function(_0x5d56ed=[]){const _0x252245=a4_0x336e43,_0x587769=[];return Array[_0x252245(0x18c)](_0x5d56ed)&&_0x5d56ed[_0x252245(0x149)](_0x44e465=>{const _0x4f030a=_0x252245;if(Array['isArray'](_0x44e465)){const [_0x410b3b,_0xd7c15f=[]]=_0x44e465;_0x587769[_0x4f030a(0x16d)]({'name':_0x410b3b,'importList':_0xd7c15f});}else _0x587769[_0x4f030a(0x16d)]({'name':_0x44e465,'importList':[]});}),_0x587769;},exports[a4_0x336e43(0x147)]=function(_0x1b900c,_0x3920a7,_0x5889c4){const _0x308998=a4_0x336e43,_0x57d705=JSON[_0x308998(0x152)](fs['readFileSync'](_0x1b900c)[_0x308998(0x188)]());_0x57d705[_0x308998(0x161)][_0x3920a7]=_0x5889c4,fs[_0x308998(0x14e)](_0x1b900c,JSON[_0x308998(0x176)](_0x57d705,null,0x2));},exports[a4_0x336e43(0x17d)]=function(_0x1b85d0,_0xedc099){const _0x20dea6=a4_0x336e43;fs[_0x20dea6(0x17e)](_0x1b85d0)['forEach'](_0x54cb6c=>{const _0x185fdc=_0x20dea6,_0x1418b1=_0x1b85d0+'\x5c'+_0x54cb6c,_0xe92ee2=_0xedc099+'\x5c'+_0x54cb6c;fs[_0x185fdc(0x181)](_0x1418b1)[_0x185fdc(0x177)]()?(fs['mkdirSync'](_0xe92ee2),exports[_0x185fdc(0x17d)](_0x1418b1,_0xe92ee2)):fs[_0x185fdc(0x14e)](_0xe92ee2,fs[_0x185fdc(0x16e)](_0x1418b1)[_0x185fdc(0x188)]());});},exports['f_content_replace']=function(_0x22fab4=[],_0x5ab2cd){const _0x5731ed=a4_0x336e43;_0x22fab4[_0x5731ed(0x149)](_0x2198e2=>{const _0x184789=_0x5731ed,_0x385033=_0x5ab2cd+_0x2198e2[_0x184789(0x16c)];if(fs['existsSync'](_0x385033)){let _0x1c0f08=fs['readFileSync'](_0x385033)[_0x184789(0x188)]();_0x2198e2[_0x184789(0x150)][_0x184789(0x149)](_0x331c86=>{_0x1c0f08=_0x1c0f08['replace'](_0x331c86[0x0],_0x331c86[0x1]);}),fs['writeFileSync'](_0x385033,_0x1c0f08);}});};
@@ -1 +1 @@
1
- function a5_0xeffb(_0x5489cc,_0x40860c){const _0x259224=a5_0x2592();return a5_0xeffb=function(_0xeffb58,_0x500224){_0xeffb58=_0xeffb58-0x186;let _0x4b3c2e=_0x259224[_0xeffb58];return _0x4b3c2e;},a5_0xeffb(_0x5489cc,_0x40860c);}function a5_0x2592(){const _0x461371=['exit','existsSync','618385vMQjZK','exports','9IlwOri','3691237sfruoj','path','npm','6525848PjqWUF','yarn','6XLHNVM','log','【Error】:no\x20registry\x20source,\x20available:[npm,\x20yarn]','147330zNMKca','495sWrNEX','55868VKypBO','4TouVFl','4825114nBQlyv','npm\x20install','resolve','npx\x20husky\x20install','3275274RIXpjG','execSync','Finish!'];a5_0x2592=function(){return _0x461371;};return a5_0x2592();}const a5_0x3d323a=a5_0xeffb;(function(_0x56f70a,_0x2807c5){const _0x4bb156=a5_0xeffb,_0x457ca0=_0x56f70a();while(!![]){try{const _0x1ac11c=-parseInt(_0x4bb156(0x198))/0x1*(-parseInt(_0x4bb156(0x18e))/0x2)+parseInt(_0x4bb156(0x193))/0x3+parseInt(_0x4bb156(0x18d))/0x4*(-parseInt(_0x4bb156(0x18c))/0x5)+parseInt(_0x4bb156(0x188))/0x6*(-parseInt(_0x4bb156(0x18f))/0x7)+-parseInt(_0x4bb156(0x186))/0x8*(-parseInt(_0x4bb156(0x19a))/0x9)+parseInt(_0x4bb156(0x18b))/0xa+-parseInt(_0x4bb156(0x19b))/0xb;if(_0x1ac11c===_0x2807c5)break;else _0x457ca0['push'](_0x457ca0['shift']());}catch(_0x2c2dd2){_0x457ca0['push'](_0x457ca0['shift']());}}}(a5_0x2592,0xb771e));const child_process=require('child_process'),path=require(a5_0x3d323a(0x19c)),fs=require('fs');module[a5_0x3d323a(0x199)]=_0xb9aa5e=>{const _0x3564ca=a5_0x3d323a;![_0x3564ca(0x19d),'yarn']['includes'](_0xb9aa5e)&&(console['log'](_0x3564ca(0x18a)),process[_0x3564ca(0x196)](0x0));const _0x2ac04f=path[_0x3564ca(0x191)]('./');console['log']('install\x20modules\x20please\x20wait....'),child_process[_0x3564ca(0x194)](_0xb9aa5e===_0x3564ca(0x187)?_0x3564ca(0x187):_0x3564ca(0x190),{'cwd':_0x2ac04f}),!fs[_0x3564ca(0x197)](_0x2ac04f+'/.git')&&(console['log']('git\x20init\x20please\x20wait....'),child_process['execSync']('git\x20init',{'cwd':_0x2ac04f})),console['log']('install\x20husky\x20please\x20wait....'),child_process[_0x3564ca(0x194)](_0x3564ca(0x192),{'cwd':_0x2ac04f}),console[_0x3564ca(0x189)](_0x3564ca(0x195));};
1
+ const a5_0x5ef399=a5_0x19f9;function a5_0x19f9(_0x433562,_0x1545c1){const _0x788f0b=a5_0x788f();return a5_0x19f9=function(_0x19f991,_0x2e5a69){_0x19f991=_0x19f991-0x19a;let _0x1b625e=_0x788f0b[_0x19f991];return _0x1b625e;},a5_0x19f9(_0x433562,_0x1545c1);}(function(_0x315f50,_0x189b57){const _0x34d8c6=a5_0x19f9,_0x3f797b=_0x315f50();while(!![]){try{const _0x2070de=parseInt(_0x34d8c6(0x19b))/0x1+-parseInt(_0x34d8c6(0x19d))/0x2+-parseInt(_0x34d8c6(0x1ad))/0x3+-parseInt(_0x34d8c6(0x19a))/0x4*(parseInt(_0x34d8c6(0x1a1))/0x5)+-parseInt(_0x34d8c6(0x1af))/0x6*(parseInt(_0x34d8c6(0x1a6))/0x7)+parseInt(_0x34d8c6(0x19f))/0x8*(-parseInt(_0x34d8c6(0x1a0))/0x9)+parseInt(_0x34d8c6(0x1a5))/0xa*(parseInt(_0x34d8c6(0x1a8))/0xb);if(_0x2070de===_0x189b57)break;else _0x3f797b['push'](_0x3f797b['shift']());}catch(_0x21471d){_0x3f797b['push'](_0x3f797b['shift']());}}}(a5_0x788f,0x3ba4a));const child_process=require(a5_0x5ef399(0x1b4)),path=require(a5_0x5ef399(0x1a7)),fs=require('fs');function a5_0x788f(){const _0x290abf=['905146gXUUZP','Finish!','execSync','/.git','exports','687888XmQEQu','npm','99156UHVZzA','【Error】:no\x20registry\x20source,\x20available:[npm,\x20yarn]','log','npx\x20husky\x20install','exit','child_process','1680372KLcqNp','440790ITfXOw','existsSync','287980oNrwFh','npm\x20install','8QMQEiC','1587555uAJCSm','5wbSNGD','includes','resolve','yarn','100VPMQMX','21eMXfnZ','path'];a5_0x788f=function(){return _0x290abf;};return a5_0x788f();}module[a5_0x5ef399(0x1ac)]=_0x3ac4ca=>{const _0x2b79e6=a5_0x5ef399;![_0x2b79e6(0x1ae),_0x2b79e6(0x1a4)][_0x2b79e6(0x1a2)](_0x3ac4ca)&&(console[_0x2b79e6(0x1b1)](_0x2b79e6(0x1b0)),process[_0x2b79e6(0x1b3)](0x0));const _0x513ea2=path[_0x2b79e6(0x1a3)]('./');console[_0x2b79e6(0x1b1)]('install\x20modules\x20please\x20wait....'),child_process[_0x2b79e6(0x1aa)](_0x3ac4ca===_0x2b79e6(0x1a4)?'yarn':_0x2b79e6(0x19e),{'cwd':_0x513ea2}),!fs[_0x2b79e6(0x19c)](_0x513ea2+_0x2b79e6(0x1ab))&&(console[_0x2b79e6(0x1b1)]('git\x20init\x20please\x20wait....'),child_process[_0x2b79e6(0x1aa)]('git\x20init',{'cwd':_0x513ea2})),console['log']('install\x20husky\x20please\x20wait....'),child_process[_0x2b79e6(0x1aa)](_0x2b79e6(0x1b2),{'cwd':_0x513ea2}),console[_0x2b79e6(0x1b1)](_0x2b79e6(0x1a9));};
@@ -1 +1 @@
1
- const a6_0x2b65b9=a6_0x12a0;function a6_0x3f99(){const _0x4fc748=['1251760lyZNhx','networkInterfaces','../../../.auth','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','stringify','join','path','46071Ielyoo','\x5cdist\x5cindex.js','then','1854lCSqgm','330OxpQzo','message','arch','axios','/api/auth','catch','11hcfehW','data','parse','hostname','platform','2555820oXhLTs','15052MiNGlD','1015qWdCXq','push','761844bzDjUd','exit','791VOoFQx','resolve','log','752JecLmr','existsSync','Auth\x20NetWork\x20Fail!','exports','Auth\x20Fail!','status','/api/file/push','post','\x5cpackage.json','readFileSync','网络异常。','146GoWeeJ','toString'];a6_0x3f99=function(){return _0x4fc748;};return a6_0x3f99();}(function(_0x44ebb3,_0x4236b5){const _0x2e131b=a6_0x12a0,_0x39c98b=_0x44ebb3();while(!![]){try{const _0x4a6131=parseInt(_0x2e131b(0x12c))/0x1*(-parseInt(_0x2e131b(0x13a))/0x2)+-parseInt(_0x2e131b(0x11b))/0x3*(parseInt(_0x2e131b(0x127))/0x4)+parseInt(_0x2e131b(0x126))/0x5+-parseInt(_0x2e131b(0x11a))/0x6*(parseInt(_0x2e131b(0x128))/0x7)+parseInt(_0x2e131b(0x12f))/0x8*(parseInt(_0x2e131b(0x117))/0x9)+-parseInt(_0x2e131b(0x110))/0xa+parseInt(_0x2e131b(0x121))/0xb*(-parseInt(_0x2e131b(0x12a))/0xc);if(_0x4a6131===_0x4236b5)break;else _0x39c98b['push'](_0x39c98b['shift']());}catch(_0x1e20fb){_0x39c98b['push'](_0x39c98b['shift']());}}}(a6_0x3f99,0x461e9));const path=require(a6_0x2b65b9(0x116)),fs=require('fs'),os=require('os'),axios=require(a6_0x2b65b9(0x11e)),{API_HOST}=require('../cmd.install/config');function a6_0x12a0(_0x45fe3a,_0x10b893){const _0x3f9950=a6_0x3f99();return a6_0x12a0=function(_0x12a085,_0xf25fe6){_0x12a085=_0x12a085-0x110;let _0x1c56d7=_0x3f9950[_0x12a085];return _0x1c56d7;},a6_0x12a0(_0x45fe3a,_0x10b893);}module[a6_0x2b65b9(0x132)]=_0x53b1cc=>{const _0x3508a6=a6_0x2b65b9,_0x353638=path[_0x3508a6(0x115)](__dirname,_0x3508a6(0x112));!fs['existsSync'](_0x353638)&&(console[_0x3508a6(0x12e)]('【Error】:no\x20auth\x20login'),process[_0x3508a6(0x12b)](0x0));const [_0x36978f,_0x5d4d13]=fs[_0x3508a6(0x138)](_0x353638)['toString']()['split']('/');axios['post'](API_HOST+_0x3508a6(0x11f),{'username':_0x36978f,'password':_0x5d4d13})[_0x3508a6(0x119)](_0x832ab=>{const _0xa72ba4=_0x3508a6;if(_0x832ab[_0xa72ba4(0x122)][_0xa72ba4(0x134)]){const _0xe85bcc=path[_0xa72ba4(0x12d)]('./'),_0xc0508b=_0xe85bcc+_0xa72ba4(0x118),_0x305654=_0xe85bcc+_0xa72ba4(0x137),_0x560214=[os[_0xa72ba4(0x124)](),os[_0xa72ba4(0x125)](),os[_0xa72ba4(0x11d)](),new Date()[_0xa72ba4(0x13b)](),JSON[_0xa72ba4(0x114)](os[_0xa72ba4(0x111)](),null,'\x09')];if(fs[_0xa72ba4(0x130)](_0x305654)){if(fs[_0xa72ba4(0x130)](_0xc0508b)){const _0x16565c=JSON[_0xa72ba4(0x123)](fs[_0xa72ba4(0x138)](_0x305654)['toString']()),{name:_0x2e3eb1,version:_0x469381}=_0x16565c;_0x560214[_0xa72ba4(0x129)](JSON[_0xa72ba4(0x114)](_0x16565c)),axios[_0xa72ba4(0x136)](API_HOST+_0xa72ba4(0x135),{'username':_0x36978f,'log_text':_0x560214['join']('\x0a'),'package_name':_0x2e3eb1,'package_version':_0x53b1cc?_0x53b1cc:_0x469381,'package_content':fs[_0xa72ba4(0x138)](_0xc0508b)['toString']()})[_0xa72ba4(0x119)](_0x5dec65=>{const _0x25afdf=_0xa72ba4;console[_0x25afdf(0x12e)](_0x5dec65[_0x25afdf(0x122)][_0x25afdf(0x11c)]),process[_0x25afdf(0x12b)](0x0);})[_0xa72ba4(0x120)](_0x37246a=>{const _0x5c1644=_0xa72ba4;console[_0x5c1644(0x12e)](_0x37246a),console['log'](_0x5c1644(0x139)),process['exit'](0x0);});}else console[_0xa72ba4(0x12e)](_0xa72ba4(0x113)),process[_0xa72ba4(0x12b)](0x0);}else console[_0xa72ba4(0x12e)]('发布失败!根目录缺少‘package.json’文件,无法完成发布。'),process['exit'](0x0);}else console[_0xa72ba4(0x12e)](_0xa72ba4(0x133));})['catch'](_0x4ba6d3=>{const _0x15fd52=_0x3508a6;console[_0x15fd52(0x12e)](_0x15fd52(0x131));});};
1
+ function a6_0x49d9(_0x3c3a64,_0x5e612a){const _0x2e78c1=a6_0x2e78();return a6_0x49d9=function(_0x49d941,_0x22c5fd){_0x49d941=_0x49d941-0xda;let _0x5db453=_0x2e78c1[_0x49d941];return _0x5db453;},a6_0x49d9(_0x3c3a64,_0x5e612a);}const a6_0x415480=a6_0x49d9;(function(_0x585518,_0x1df7dd){const _0x3efb04=a6_0x49d9,_0x287a57=_0x585518();while(!![]){try{const _0xef0d8e=parseInt(_0x3efb04(0x100))/0x1*(parseInt(_0x3efb04(0xf9))/0x2)+parseInt(_0x3efb04(0xf2))/0x3*(-parseInt(_0x3efb04(0xeb))/0x4)+parseInt(_0x3efb04(0xf1))/0x5+-parseInt(_0x3efb04(0xfd))/0x6+-parseInt(_0x3efb04(0x103))/0x7*(parseInt(_0x3efb04(0xee))/0x8)+-parseInt(_0x3efb04(0xf6))/0x9+parseInt(_0x3efb04(0xfe))/0xa;if(_0xef0d8e===_0x1df7dd)break;else _0x287a57['push'](_0x287a57['shift']());}catch(_0xeabc1e){_0x287a57['push'](_0x287a57['shift']());}}}(a6_0x2e78,0x87da7));const path=require(a6_0x415480(0xfc)),fs=require('fs'),os=require('os'),axios=require(a6_0x415480(0xf8)),{API_HOST}=require('../cmd.install/config');module[a6_0x415480(0xff)]=_0x117265=>{const _0x328f51=a6_0x415480,_0x317607=path[_0x328f51(0xe4)](__dirname,'../../../.auth');!fs[_0x328f51(0x102)](_0x317607)&&(console['log'](_0x328f51(0xf5)),process[_0x328f51(0xde)](0x0));const [_0x4df89a,_0x223598]=fs[_0x328f51(0xf0)](_0x317607)[_0x328f51(0xdf)]()[_0x328f51(0xe2)]('/');axios['post'](API_HOST+_0x328f51(0xfb),{'username':_0x4df89a,'password':_0x223598})[_0x328f51(0xea)](_0x48f6f5=>{const _0x1fe539=_0x328f51;if(_0x48f6f5[_0x1fe539(0xfa)][_0x1fe539(0xe0)]){const _0x42e192=path[_0x1fe539(0xe8)]('./'),_0x48c91e=_0x42e192+_0x1fe539(0xe6),_0x321272=_0x42e192+_0x1fe539(0xef),_0x90c253=[os[_0x1fe539(0xda)](),os[_0x1fe539(0xe7)](),os[_0x1fe539(0xec)](),new Date()['toString'](),JSON[_0x1fe539(0xdc)](os[_0x1fe539(0xe1)](),null,'\x09')];if(fs[_0x1fe539(0x102)](_0x321272)){if(fs['existsSync'](_0x48c91e)){const _0x3c719e=JSON[_0x1fe539(0x101)](fs[_0x1fe539(0xf0)](_0x321272)['toString']()),{name:_0x31d5cc,version:_0x5360f5}=_0x3c719e;_0x90c253['push'](JSON[_0x1fe539(0xdc)](_0x3c719e)),axios[_0x1fe539(0xe5)](API_HOST+'/api/file/push',{'username':_0x4df89a,'log_text':_0x90c253[_0x1fe539(0xe4)]('\x0a'),'package_name':_0x31d5cc,'package_version':_0x117265?_0x117265:_0x5360f5,'package_content':fs['readFileSync'](_0x48c91e)[_0x1fe539(0xdf)]()})[_0x1fe539(0xea)](_0x3c21c4=>{const _0x5aad39=_0x1fe539;console[_0x5aad39(0xe3)](_0x3c21c4[_0x5aad39(0xfa)][_0x5aad39(0xed)]),process['exit'](0x0);})[_0x1fe539(0xf7)](_0x188fa8=>{const _0x204dd3=_0x1fe539;console[_0x204dd3(0xe3)](_0x188fa8),console[_0x204dd3(0xe3)](_0x204dd3(0xdd)),process[_0x204dd3(0xde)](0x0);});}else console[_0x1fe539(0xe3)](_0x1fe539(0xdb)),process[_0x1fe539(0xde)](0x0);}else console[_0x1fe539(0xe3)](_0x1fe539(0xf4)),process[_0x1fe539(0xde)](0x0);}else console[_0x1fe539(0xe3)](_0x1fe539(0xe9));})[_0x328f51(0xf7)](_0x3ae235=>{const _0x9d496f=_0x328f51;console[_0x9d496f(0xe3)](_0x9d496f(0xf3));});};function a6_0x2e78(){const _0x2cc995=['17793100bHdDAc','exports','1TxplBX','parse','existsSync','1435ZzMinL','hostname','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','stringify','网络异常。','exit','toString','status','networkInterfaces','split','log','join','post','\x5cdist\x5cindex.js','platform','resolve','Auth\x20Fail!','then','92LPWcMU','arch','message','19000ThHsbA','\x5cpackage.json','readFileSync','2188195ucYSes','118983VhvtdH','Auth\x20NetWork\x20Fail!','发布失败!根目录缺少‘package.json’文件,无法完成发布。','【Error】:no\x20auth\x20login','3344292pFEsxh','catch','axios','848858mudcJe','data','/api/auth','path','1885542SEqNJK'];a6_0x2e78=function(){return _0x2cc995;};return a6_0x2e78();}
@@ -1 +1 @@
1
- const a7_0x41074a=a7_0x417c;(function(_0x49fa22,_0x274e9d){const _0x4d7920=a7_0x417c,_0x2e9857=_0x49fa22();while(!![]){try{const _0x1d7a83=parseInt(_0x4d7920(0x148))/0x1*(parseInt(_0x4d7920(0x13e))/0x2)+-parseInt(_0x4d7920(0x11d))/0x3*(-parseInt(_0x4d7920(0x136))/0x4)+parseInt(_0x4d7920(0x11c))/0x5+-parseInt(_0x4d7920(0x149))/0x6+parseInt(_0x4d7920(0x12a))/0x7+parseInt(_0x4d7920(0x124))/0x8+-parseInt(_0x4d7920(0x144))/0x9;if(_0x1d7a83===_0x274e9d)break;else _0x2e9857['push'](_0x2e9857['shift']());}catch(_0x13d5ae){_0x2e9857['push'](_0x2e9857['shift']());}}}(a7_0x3719,0xa3b0f));const fs=require('fs'),os=require('os'),path=require(a7_0x41074a(0x146)),child_process=require(a7_0x41074a(0x147)),{CopyFolder,DeleteDirAllFile}=require(a7_0x41074a(0x126)),{GIT_TEMP_JAVA,GIT_JAVA_ENV_JSON,API_HOST}=require(a7_0x41074a(0x131)),axios=require('axios');function a7_0x3719(){const _0x49e1ec=['146203rgitOD','2521620AnaykW','Dist\x20output\x20copy\x20Done,git\x20add,please\x20wait...','status','length','git',',please\x20wait...','【warning】:Git\x20Pull\x20Done,yarn\x20install\x20project,please\x20wait...','data','3632285NCUObc','309tNpMJu','split','Git\x20Commit\x20Done,git\x20push,please\x20wait...','\x20--no-verify','join','log','exit','4411272CVUOAh','【Error】:参数传递错误','../../old/util','git\x20pull','existsSync','Git\x20Push\x20Done!','3723643awDYXr','【Error】:no\x20setting\x20git','\x5cdist','git\x20add\x20.','execSync','../../../.auth','【Error】:no\x20auth\x20login','../cmd.install/config','git\x20commit\x20-m\x20','post','yarn\x20install\x20Done!','tmpdir','43356tdFqMl','/api/auth','Auth\x20Fail!','/src/main/resources/templates/','then','readFileSync','yarn\x20build:','【Error】:打包失败,没有dist目录!','2xwFluc','exports','【warning】:no\x20commit,git\x20push,please\x20wait...','no\x20message','Project\x20build\x20Done,copy\x20project,please\x20wait...','gitName','17835174mcDXAF','Git\x20Add\x20Done,git\x20commit,please\x20wait...','path','child_process'];a7_0x3719=function(){return _0x49e1ec;};return a7_0x3719();}function a7_0x417c(_0x3786ed,_0x1c1a3b){const _0x3719ce=a7_0x3719();return a7_0x417c=function(_0x417cbe,_0x44332f){_0x417cbe=_0x417cbe-0x116;let _0x28695f=_0x3719ce[_0x417cbe];return _0x28695f;},a7_0x417c(_0x3786ed,_0x1c1a3b);}module[a7_0x41074a(0x13f)]=arguments=>{const _0x48cb6f=a7_0x41074a,_0x3612ca=path[_0x48cb6f(0x121)](__dirname,_0x48cb6f(0x12f));!fs[_0x48cb6f(0x128)](_0x3612ca)&&(console[_0x48cb6f(0x122)](_0x48cb6f(0x130)),process[_0x48cb6f(0x123)](0x0));const _0x16788a=arguments[0x1],_0xa3f148=arguments[0x2]||_0x48cb6f(0x141),_0x4e50e6=path['resolve']('./'),_0x4f5b59=_0x4e50e6+'\x5cjjb.config.json',_0x1f32c0=_0x4e50e6+_0x48cb6f(0x12c),_0xe54b67=os[_0x48cb6f(0x135)](),[_0x30512f,_0x399ad5]=fs[_0x48cb6f(0x13b)](_0x3612ca)['toString']()[_0x48cb6f(0x11e)]('/');axios[_0x48cb6f(0x133)](API_HOST+_0x48cb6f(0x137),{'username':_0x30512f,'password':_0x399ad5})[_0x48cb6f(0x13a)](_0x3876ee=>{const _0x4b3c0d=_0x48cb6f;if(_0x3876ee[_0x4b3c0d(0x11b)][_0x4b3c0d(0x116)]){if(fs[_0x4b3c0d(0x128)](_0x4f5b59)){const _0x3460ad=JSON['parse'](fs['readFileSync'](_0x4f5b59)['toString']());if(_0x3460ad[_0x4b3c0d(0x118)]){const _0x4738eb=_0xe54b67+'/'+GIT_TEMP_JAVA;!fs[_0x4b3c0d(0x128)](_0x4738eb)&&(fs['mkdirSync'](_0x4738eb),child_process['execSync']('git\x20clone\x20'+_0x3460ad[_0x4b3c0d(0x118)],{'cwd':_0x4738eb})),_0x195c61(_0x4738eb,_0x3460ad);}else console[_0x4b3c0d(0x122)](_0x4b3c0d(0x12b));}}else console[_0x4b3c0d(0x122)](_0x4b3c0d(0x138));})['catch'](_0x3ad725=>{const _0x3617e5=_0x48cb6f;console[_0x3617e5(0x122)]('Auth\x20NetWork\x20Fail!');});arguments[_0x48cb6f(0x117)]<0x2&&(console[_0x48cb6f(0x122)](_0x48cb6f(0x125)),process[_0x48cb6f(0x123)](0x0));function _0x195c61(_0xaa13f,_0x53a55d){const _0x3bdb35=_0x48cb6f,_0x34099b=_0xaa13f+'/'+_0x53a55d[_0x3bdb35(0x143)];!fs[_0x3bdb35(0x128)](_0x34099b)&&(console['log']('【Error】:no\x20setting\x20gitName'),process[_0x3bdb35(0x123)](0x0));child_process['execSync'](_0x3bdb35(0x127),{'cwd':_0x34099b});!fs['existsSync'](_0x4e50e6+'/node_modules')?(console[_0x3bdb35(0x122)](_0x3bdb35(0x11a)),child_process[_0x3bdb35(0x12e)]('yarn',{'cwd':_0x4e50e6}),console[_0x3bdb35(0x122)](_0x3bdb35(0x134))):console[_0x3bdb35(0x122)]('Git\x20Pull\x20Done,yarn\x20build:'+_0x16788a+_0x3bdb35(0x119));child_process['execSync'](_0x3bdb35(0x13c)+_0x16788a,{'cwd':_0x4e50e6}),console[_0x3bdb35(0x122)](_0x3bdb35(0x142));if(fs[_0x3bdb35(0x128)](_0x1f32c0)){const _0x4eb7f6=_0x34099b+_0x3bdb35(0x139)+GIT_JAVA_ENV_JSON[_0x16788a];DeleteDirAllFile(_0x4eb7f6,()=>{fs['mkdirSync'](_0x4eb7f6),CopyFolder(_0x1f32c0,_0x4eb7f6,()=>{const _0x322952=a7_0x417c;console[_0x322952(0x122)](_0x322952(0x14a)),setTimeout(()=>{const _0x327037=_0x322952;child_process[_0x327037(0x12e)](_0x327037(0x12d),{'cwd':_0x34099b}),console[_0x327037(0x122)](_0x327037(0x145));try{child_process['execSync'](_0x327037(0x132)+_0xa3f148+_0x327037(0x120),{'cwd':_0x34099b}),console[_0x327037(0x122)](_0x327037(0x11f));}catch(_0x105de0){console['log'](_0x327037(0x140));}child_process[_0x327037(0x12e)]('git\x20push\x20-f',{'cwd':_0x34099b}),console[_0x327037(0x122)](_0x327037(0x129));},0x3e8);});});}else console[_0x3bdb35(0x122)](_0x3bdb35(0x13d));}};
1
+ const a7_0x19e4a8=a7_0x4a8b;(function(_0x4efe41,_0x45be0f){const _0x200d42=a7_0x4a8b,_0x152404=_0x4efe41();while(!![]){try{const _0x43b859=parseInt(_0x200d42(0x75))/0x1*(parseInt(_0x200d42(0x89))/0x2)+-parseInt(_0x200d42(0x9b))/0x3*(-parseInt(_0x200d42(0x9f))/0x4)+-parseInt(_0x200d42(0x7b))/0x5+-parseInt(_0x200d42(0x8b))/0x6+-parseInt(_0x200d42(0x7d))/0x7*(parseInt(_0x200d42(0x9c))/0x8)+-parseInt(_0x200d42(0x72))/0x9+parseInt(_0x200d42(0x76))/0xa;if(_0x43b859===_0x45be0f)break;else _0x152404['push'](_0x152404['shift']());}catch(_0x4993a7){_0x152404['push'](_0x152404['shift']());}}}(a7_0x27b9,0x56b2e));function a7_0x4a8b(_0x20a232,_0xf1d0){const _0x27b9be=a7_0x27b9();return a7_0x4a8b=function(_0x4a8b9f,_0x34524b){_0x4a8b9f=_0x4a8b9f-0x6f;let _0x2febcf=_0x27b9be[_0x4a8b9f];return _0x2febcf;},a7_0x4a8b(_0x20a232,_0xf1d0);}const fs=require('fs'),os=require('os'),path=require('path'),child_process=require('child_process'),{CopyFolder,DeleteDirAllFile}=require(a7_0x19e4a8(0x7c)),{GIT_TEMP_JAVA,GIT_JAVA_ENV_JSON,API_HOST}=require(a7_0x19e4a8(0x9d)),axios=require('axios');module[a7_0x19e4a8(0x85)]=arguments=>{const _0x35916e=a7_0x19e4a8,_0x498573=path['join'](__dirname,_0x35916e(0x70));!fs[_0x35916e(0x79)](_0x498573)&&(console[_0x35916e(0x88)]('【Error】:no\x20auth\x20login'),process[_0x35916e(0x80)](0x0));const _0x8f4bf6=arguments[0x1],_0x55acbf=arguments[0x2]||_0x35916e(0x95),_0x10a77e=path[_0x35916e(0x97)]('./'),_0x2aaafc=_0x10a77e+'\x5cjjb.config.json',_0x3d9a21=_0x10a77e+_0x35916e(0x98),_0x32e97a=os[_0x35916e(0x8e)](),[_0x5e10d3,_0x2a0d44]=fs[_0x35916e(0x8c)](_0x498573)[_0x35916e(0x6f)]()[_0x35916e(0x8f)]('/');axios[_0x35916e(0x7f)](API_HOST+_0x35916e(0x99),{'username':_0x5e10d3,'password':_0x2a0d44})[_0x35916e(0x87)](_0x3a1dc1=>{const _0x5bdb4b=_0x35916e;if(_0x3a1dc1['data']['status']){if(fs[_0x5bdb4b(0x79)](_0x2aaafc)){const _0x18a128=JSON[_0x5bdb4b(0x9a)](fs[_0x5bdb4b(0x8c)](_0x2aaafc)[_0x5bdb4b(0x6f)]());if(_0x18a128[_0x5bdb4b(0x81)]){const _0x105e31=_0x32e97a+'/'+GIT_TEMP_JAVA;!fs[_0x5bdb4b(0x79)](_0x105e31)&&(fs[_0x5bdb4b(0x74)](_0x105e31),child_process[_0x5bdb4b(0x8d)](_0x5bdb4b(0x82)+_0x18a128[_0x5bdb4b(0x81)],{'cwd':_0x105e31})),_0x24ccf5(_0x105e31,_0x18a128);}else console[_0x5bdb4b(0x88)](_0x5bdb4b(0x8a));}}else console['log']('Auth\x20Fail!');})[_0x35916e(0x9e)](_0x30a9f4=>{const _0x1ce17e=_0x35916e;console[_0x1ce17e(0x88)](_0x1ce17e(0x71));});arguments[_0x35916e(0x78)]<0x2&&(console['log']('【Error】:参数传递错误'),process[_0x35916e(0x80)](0x0));function _0x24ccf5(_0x3c9690,_0x59d96c){const _0x274983=_0x35916e,_0x41e46a=_0x3c9690+'/'+_0x59d96c[_0x274983(0x91)];!fs[_0x274983(0x79)](_0x41e46a)&&(console['log'](_0x274983(0x73)),process[_0x274983(0x80)](0x0));child_process[_0x274983(0x8d)]('git\x20pull',{'cwd':_0x41e46a});!fs['existsSync'](_0x10a77e+_0x274983(0x7a))?(console[_0x274983(0x88)]('【warning】:Git\x20Pull\x20Done,yarn\x20install\x20project,please\x20wait...'),child_process['execSync'](_0x274983(0x7e),{'cwd':_0x10a77e}),console[_0x274983(0x88)](_0x274983(0x93))):console[_0x274983(0x88)](_0x274983(0x77)+_0x8f4bf6+_0x274983(0x96));child_process[_0x274983(0x8d)]('yarn\x20build:'+_0x8f4bf6,{'cwd':_0x10a77e}),console[_0x274983(0x88)]('Project\x20build\x20Done,copy\x20project,please\x20wait...');if(fs[_0x274983(0x79)](_0x3d9a21)){const _0x13669c=_0x41e46a+_0x274983(0x84)+GIT_JAVA_ENV_JSON[_0x8f4bf6];DeleteDirAllFile(_0x13669c,()=>{fs['mkdirSync'](_0x13669c),CopyFolder(_0x3d9a21,_0x13669c,()=>{const _0x431f62=a7_0x4a8b;console[_0x431f62(0x88)]('Dist\x20output\x20copy\x20Done,git\x20add,please\x20wait...'),setTimeout(()=>{const _0x1b89e6=_0x431f62;child_process[_0x1b89e6(0x8d)](_0x1b89e6(0x90),{'cwd':_0x41e46a}),console[_0x1b89e6(0x88)](_0x1b89e6(0x92));try{child_process[_0x1b89e6(0x8d)](_0x1b89e6(0x83)+_0x55acbf+'\x20--no-verify',{'cwd':_0x41e46a}),console['log']('Git\x20Commit\x20Done,git\x20push,please\x20wait...');}catch(_0x9e365c){console['log'](_0x1b89e6(0x86));}child_process[_0x1b89e6(0x8d)]('git\x20push\x20-f',{'cwd':_0x41e46a}),console[_0x1b89e6(0x88)]('Git\x20Push\x20Done!');},0x3e8);});});}else console[_0x274983(0x88)](_0x274983(0x94));}};function a7_0x27b9(){const _0x3f96ba=['execSync','tmpdir','split','git\x20add\x20.','gitName','Git\x20Add\x20Done,git\x20commit,please\x20wait...','yarn\x20install\x20Done!','【Error】:打包失败,没有dist目录!','no\x20message',',please\x20wait...','resolve','\x5cdist','/api/auth','parse','1314TYucpu','1881184yGXwDr','../cmd.install/config','catch','4844lprBLq','toString','../../../.auth','Auth\x20NetWork\x20Fail!','1707201mGfLTg','【Error】:no\x20setting\x20gitName','mkdirSync','293qbQKgS','8947390CXUeUu','Git\x20Pull\x20Done,yarn\x20build:','length','existsSync','/node_modules','2843450oItRFO','../../old/util','7ixenXG','yarn','post','exit','git','git\x20clone\x20','git\x20commit\x20-m\x20','/src/main/resources/templates/','exports','【warning】:no\x20commit,git\x20push,please\x20wait...','then','log','4246UtpzHH','【Error】:no\x20setting\x20git','4191306lgjjHg','readFileSync'];a7_0x27b9=function(){return _0x3f96ba;};return a7_0x27b9();}
@@ -1 +1 @@
1
- const a8_0x1259b3=a8_0x3f8f;(function(_0xa9b04c,_0x39facb){const _0x16baed=a8_0x3f8f,_0x350526=_0xa9b04c();while(!![]){try{const _0x572cae=-parseInt(_0x16baed(0x9b))/0x1*(parseInt(_0x16baed(0x93))/0x2)+parseInt(_0x16baed(0xa2))/0x3*(-parseInt(_0x16baed(0x9d))/0x4)+parseInt(_0x16baed(0xa4))/0x5+-parseInt(_0x16baed(0xa0))/0x6*(-parseInt(_0x16baed(0x8c))/0x7)+-parseInt(_0x16baed(0x9f))/0x8*(parseInt(_0x16baed(0x99))/0x9)+-parseInt(_0x16baed(0x94))/0xa+-parseInt(_0x16baed(0x9a))/0xb*(-parseInt(_0x16baed(0xa5))/0xc);if(_0x572cae===_0x39facb)break;else _0x350526['push'](_0x350526['shift']());}catch(_0x315242){_0x350526['push'](_0x350526['shift']());}}}(a8_0x1cdf,0x7acd4));function a8_0x1cdf(){const _0x271cc1=['\x20file,\x20available:[eslint,\x20prettier]','1087209OvRnRg','2079IYDeQF','757zZWENQ','https','8ifCsSN','【Error】:no\x20','48BWgndk','6zVatVw','http\x20error\x20','853962NwEmpy','\x20file\x20Success!','2714880tORVHg','86052jZblKT','getTime','All\x20Finish!','resolve','error','data','path','4776905HSgGPd','get','includes','log','../cmd.install/config','prettier','.prettierrc.js','974kUTFnG','4149410aLVCkB','exit','eslint','.eslintignore'];a8_0x1cdf=function(){return _0x271cc1;};return a8_0x1cdf();}const https=require(a8_0x1259b3(0x9c)),fs=require('fs'),path=require(a8_0x1259b3(0x8b)),{CONFIG_FILE_HOST}=require(a8_0x1259b3(0x90)),REGISTRY={'eslint':{'files':['.eslintrc.js',a8_0x1259b3(0x97)]},'prettier':{'files':[a8_0x1259b3(0x92),a8_0x1259b3(0x97)]}},root_path=path[a8_0x1259b3(0x88)]('./');function recursion(_0x37ad96,_0x3b0e27,_0x3befe1){const _0xbd37c0=a8_0x1259b3,_0x48074c=_0x37ad96[_0x3b0e27];console['log'](CONFIG_FILE_HOST+'/'+_0x48074c+'?v='+new Date()[_0xbd37c0(0xa6)]()),https[_0xbd37c0(0x8d)](CONFIG_FILE_HOST+'/'+_0x48074c+'?v='+new Date()[_0xbd37c0(0xa6)](),_0x524525=>{const _0x509873=_0xbd37c0;let _0x449fae='';_0x524525['on'](_0x509873(0x8a),_0x4137b0=>{_0x449fae+=_0x4137b0;}),_0x524525['on']('end',()=>{const _0x8512df=_0x509873;_0x449fae&&(fs['writeFileSync'](root_path+'/'+_0x48074c,_0x449fae),console[_0x8512df(0x8f)](_0x48074c+_0x8512df(0xa3)),_0x3b0e27<_0x37ad96['length']-0x1?(_0x3b0e27++,recursion(_0x37ad96,_0x3b0e27,_0x3befe1)):(console[_0x8512df(0x8f)](_0x8512df(0x87)),_0x3befe1&&_0x3befe1()));})['on'](_0x509873(0x89),_0x2ea4ba=>{const _0x1f4582=_0x509873;console[_0x1f4582(0x8f)](_0x1f4582(0xa1),_0x2ea4ba);});});}function a8_0x3f8f(_0x51c379,_0x1daf9a){const _0x1cdfc8=a8_0x1cdf();return a8_0x3f8f=function(_0x3f8f8f,_0x22dcd6){_0x3f8f8f=_0x3f8f8f-0x87;let _0x6b2851=_0x1cdfc8[_0x3f8f8f];return _0x6b2851;},a8_0x3f8f(_0x51c379,_0x1daf9a);}module['exports']=_0x1cecd8=>{const _0x267529=a8_0x1259b3;![_0x267529(0x96),_0x267529(0x91)][_0x267529(0x8e)](_0x1cecd8)&&(console[_0x267529(0x8f)](_0x267529(0x9e)+_0x1cecd8+_0x267529(0x98)),process[_0x267529(0x95)](0x0));const _0xb1683c=REGISTRY[_0x1cecd8]['files'];recursion(_0xb1683c,0x0);};
1
+ function a8_0x5075(_0x40c878,_0xc089f9){const _0x4fc8d5=a8_0x4fc8();return a8_0x5075=function(_0x507501,_0x4669a9){_0x507501=_0x507501-0x1e3;let _0x12fc01=_0x4fc8d5[_0x507501];return _0x12fc01;},a8_0x5075(_0x40c878,_0xc089f9);}const a8_0x1a980b=a8_0x5075;function a8_0x4fc8(){const _0x5cab47=['log','?v=','1755870OjIsZK','localDir','writeFileSync','94655dquSQW','112QZKxOI','313128VRFFLr','349757hOWzZC','get','files','includes','proxy.js','eslint','length','119133VCHZfP','jjb.script','path','\x20file,\x20available:[eslint,\x20prettier]','data','.eslintrc.js','.eslintignore','6qHmfFM','All\x20Finish!','exports','.prettierrc.js','990okfNjT','error','build.js','\x20file\x20Success!','utils.js','prettier','keys','config.js','467136GMBTPk','228234MScAnC','54VAxDTH','https','exit','.prettierignore'];a8_0x4fc8=function(){return _0x5cab47;};return a8_0x4fc8();}(function(_0x274fd8,_0x111b43){const _0x5a2ab1=a8_0x5075,_0x3c07e7=_0x274fd8();while(!![]){try{const _0x500c11=parseInt(_0x5a2ab1(0x1e3))/0x1+-parseInt(_0x5a2ab1(0x1f1))/0x2*(-parseInt(_0x5a2ab1(0x1fe))/0x3)+-parseInt(_0x5a2ab1(0x1fd))/0x4+-parseInt(_0x5a2ab1(0x205))/0x5+parseInt(_0x5a2ab1(0x1ff))/0x6*(-parseInt(_0x5a2ab1(0x1ea))/0x7)+parseInt(_0x5a2ab1(0x209))/0x8*(-parseInt(_0x5a2ab1(0x20a))/0x9)+-parseInt(_0x5a2ab1(0x1f5))/0xa*(-parseInt(_0x5a2ab1(0x208))/0xb);if(_0x500c11===_0x111b43)break;else _0x3c07e7['push'](_0x3c07e7['shift']());}catch(_0x7af455){_0x3c07e7['push'](_0x3c07e7['shift']());}}}(a8_0x4fc8,0x4e885));const https=require(a8_0x1a980b(0x200)),fs=require('fs'),path=require(a8_0x1a980b(0x1ec)),{CONFIG_FILE_HOST}=require('../cmd.install/config'),REGISTRY={'eslint':{'remoteDir':a8_0x1a980b(0x1e8),'files':[a8_0x1a980b(0x1ef),a8_0x1a980b(0x1f0)]},'prettier':{'remoteDir':a8_0x1a980b(0x1fa),'files':[a8_0x1a980b(0x1f4),a8_0x1a980b(0x202)]},'jjb_script':{'remoteDir':a8_0x1a980b(0x1eb),'localDir':a8_0x1a980b(0x1eb),'files':[a8_0x1a980b(0x1f7),a8_0x1a980b(0x1fc),a8_0x1a980b(0x1e7),'server.js',a8_0x1a980b(0x1f9)]}},root_path=path['resolve']('./');function recursion(_0x1c06da,_0x554557,_0x56dbce){const _0x8e2e7b=a8_0x1a980b,_0x19e359=_0x1c06da['files'][_0x554557];https[_0x8e2e7b(0x1e4)](CONFIG_FILE_HOST+'/'+(_0x1c06da['remoteDir']?_0x1c06da['remoteDir']+'/':'')+_0x19e359+_0x8e2e7b(0x204)+new Date()['getTime'](),_0x522ea8=>{const _0x37c5a3=_0x8e2e7b;let _0x2b239e='';_0x522ea8['on'](_0x37c5a3(0x1ee),_0x141021=>{_0x2b239e+=_0x141021;}),_0x522ea8['on']('end',()=>{const _0x58f357=_0x37c5a3;_0x2b239e&&(fs[_0x58f357(0x207)](root_path+'/'+(_0x1c06da['localDir']?_0x1c06da[_0x58f357(0x206)]+'/':'')+_0x19e359,_0x2b239e),console['log'](_0x19e359+_0x58f357(0x1f8)),_0x554557<_0x1c06da[_0x58f357(0x1e5)][_0x58f357(0x1e9)]-0x1?(_0x554557++,recursion(_0x1c06da,_0x554557,_0x56dbce)):(console[_0x58f357(0x203)](_0x58f357(0x1f2)),_0x56dbce&&_0x56dbce()));})['on'](_0x37c5a3(0x1f6),_0xc040d7=>{const _0x17011c=_0x37c5a3;console[_0x17011c(0x203)]('http\x20error\x20',_0xc040d7);});});}module[a8_0x1a980b(0x1f3)]=_0x5da3b3=>{const _0x346294=a8_0x1a980b;!Object[_0x346294(0x1fb)](REGISTRY)[_0x346294(0x1e6)](_0x5da3b3)&&(console[_0x346294(0x203)]('【Error】:no\x20'+_0x5da3b3+_0x346294(0x1ed)),process[_0x346294(0x201)](0x0)),recursion(REGISTRY[_0x5da3b3],0x0);};
@@ -1 +1 @@
1
- function a9_0x3487(_0x42b2fb,_0x35a067){const _0xa42b5d=a9_0xa42b();return a9_0x3487=function(_0x34871f,_0x2d20f4){_0x34871f=_0x34871f-0x158;let _0x3ece8d=_0xa42b5d[_0x34871f];return _0x3ece8d;},a9_0x3487(_0x42b2fb,_0x35a067);}(function(_0x58995b,_0xc61d89){const _0x57dbed=a9_0x3487,_0x47a3ba=_0x58995b();while(!![]){try{const _0x4daf82=parseInt(_0x57dbed(0x15d))/0x1*(-parseInt(_0x57dbed(0x166))/0x2)+parseInt(_0x57dbed(0x16a))/0x3+-parseInt(_0x57dbed(0x15a))/0x4*(-parseInt(_0x57dbed(0x16c))/0x5)+parseInt(_0x57dbed(0x15c))/0x6+parseInt(_0x57dbed(0x164))/0x7+parseInt(_0x57dbed(0x15e))/0x8+parseInt(_0x57dbed(0x169))/0x9*(-parseInt(_0x57dbed(0x15b))/0xa);if(_0x4daf82===_0xc61d89)break;else _0x47a3ba['push'](_0x47a3ba['shift']());}catch(_0xc4b9d2){_0x47a3ba['push'](_0x47a3ba['shift']());}}}(a9_0xa42b,0xdd0f7));const axios=require('axios');module['exports']=_0x28e376=>{const _0x3a4460=a9_0x3487;axios['post'](_0x3a4460(0x168))[_0x3a4460(0x159)](_0x5b2cb8=>{const _0x48be2c=_0x3a4460;if(_0x5b2cb8['data'][_0x48be2c(0x162)]){const _0xaa59d2=_0x5b2cb8[_0x48be2c(0x163)]['data'];_0x28e376==='server'&&(console[_0x48be2c(0x158)](_0xaa59d2[_0x48be2c(0x160)]),console[_0x48be2c(0x158)](_0xaa59d2[_0x48be2c(0x161)])),_0x28e376===_0x48be2c(0x167)&&console[_0x48be2c(0x158)](_0xaa59d2[_0x48be2c(0x167)]);}else console['log'](_0x5b2cb8['data'][_0x48be2c(0x165)]);process['exit'](0x0);})[_0x3a4460(0x16b)](()=>{const _0x3e5a60=_0x3a4460;console[_0x3e5a60(0x158)]('网络异常。'),process[_0x3e5a60(0x15f)](0x0);});};function a9_0xa42b(){const _0x341aca=['2945892nVjAHH','catch','415fpUMZr','log','then','81268toUUXo','1210uedzeO','2950824IvZrio','1410124DUtYfb','3252136QeQEjX','exit','host','port','status','data','61901XYMRlB','message','2IbcxTa','components','http://120.26.210.58:8088/api/file/config','93708TIDxFE'];a9_0xa42b=function(){return _0x341aca;};return a9_0xa42b();}
1
+ function a9_0x46bf(){const _0x3149ed=['host','then','356195jgtAAN','axios','data','11886HgfGrQ','网络异常。','6deZwUf','http://120.26.210.58:8088/api/file/config','152uKfGOS','status','message','exports','exit','catch','post','478935xScZBT','port','server','163210mmbBoo','3643156rfUTBO','10226460nmOSYE','log','components','10kSBsys','174555JYmvlR'];a9_0x46bf=function(){return _0x3149ed;};return a9_0x46bf();}function a9_0x5483(_0x1c74d1,_0xd2052c){const _0x46bf8a=a9_0x46bf();return a9_0x5483=function(_0x548390,_0x2eaca5){_0x548390=_0x548390-0x15a;let _0x9c7202=_0x46bf8a[_0x548390];return _0x9c7202;},a9_0x5483(_0x1c74d1,_0xd2052c);}const a9_0x5be2f7=a9_0x5483;(function(_0x529c7c,_0x2baf75){const _0x3fe61f=a9_0x5483,_0x231177=_0x529c7c();while(!![]){try{const _0x52fcae=-parseInt(_0x3fe61f(0x170))/0x1+parseInt(_0x3fe61f(0x169))/0x2*(parseInt(_0x3fe61f(0x161))/0x3)+-parseInt(_0x3fe61f(0x165))/0x4+-parseInt(_0x3fe61f(0x164))/0x5*(parseInt(_0x3fe61f(0x172))/0x6)+parseInt(_0x3fe61f(0x16d))/0x7+-parseInt(_0x3fe61f(0x15a))/0x8*(parseInt(_0x3fe61f(0x16a))/0x9)+parseInt(_0x3fe61f(0x166))/0xa;if(_0x52fcae===_0x2baf75)break;else _0x231177['push'](_0x231177['shift']());}catch(_0x218dbe){_0x231177['push'](_0x231177['shift']());}}}(a9_0x46bf,0x85c5e));const axios=require(a9_0x5be2f7(0x16e));module[a9_0x5be2f7(0x15d)]=_0xcc03fd=>{const _0x38605e=a9_0x5be2f7;axios[_0x38605e(0x160)](_0x38605e(0x173))[_0x38605e(0x16c)](_0x13cb44=>{const _0x34fd4f=_0x38605e;if(_0x13cb44[_0x34fd4f(0x16f)][_0x34fd4f(0x15b)]){const _0x114b07=_0x13cb44[_0x34fd4f(0x16f)]['data'];_0xcc03fd===_0x34fd4f(0x163)&&(console['log'](_0x114b07[_0x34fd4f(0x16b)]),console[_0x34fd4f(0x167)](_0x114b07[_0x34fd4f(0x162)])),_0xcc03fd===_0x34fd4f(0x168)&&console[_0x34fd4f(0x167)](_0x114b07['components']);}else console['log'](_0x13cb44[_0x34fd4f(0x16f)][_0x34fd4f(0x15c)]);process['exit'](0x0);})[_0x38605e(0x15f)](()=>{const _0x290793=_0x38605e;console[_0x290793(0x167)](_0x290793(0x171)),process[_0x290793(0x15e)](0x0);});};
@@ -1 +1 @@
1
- const a10_0x1de2bc=a10_0x58c1;(function(_0x2681fd,_0x1af296){const _0x248f25=a10_0x58c1,_0x30baa0=_0x2681fd();while(!![]){try{const _0x478dee=-parseInt(_0x248f25(0x1a2))/0x1+parseInt(_0x248f25(0x193))/0x2+-parseInt(_0x248f25(0x19d))/0x3*(parseInt(_0x248f25(0x19f))/0x4)+parseInt(_0x248f25(0x1a0))/0x5+parseInt(_0x248f25(0x18c))/0x6*(-parseInt(_0x248f25(0x18b))/0x7)+-parseInt(_0x248f25(0x196))/0x8+parseInt(_0x248f25(0x1a3))/0x9;if(_0x478dee===_0x1af296)break;else _0x30baa0['push'](_0x30baa0['shift']());}catch(_0x2fb737){_0x30baa0['push'](_0x30baa0['shift']());}}}(a10_0x1940,0xa32b7));const fs=require('fs'),path=require('path'),readline=require(a10_0x1de2bc(0x1a1)),io=readline[a10_0x1de2bc(0x190)]({'input':process['stdin'],'output':process[a10_0x1de2bc(0x19a)]});function a10_0x1940(){const _0x3b72a3=['1897885OERtQX','readline','28662MEzEXn','16264638qyJURn','statSync','readdirSync','exit','14AhDUqy','1945782WAPQHh','trim','是否确认删除?删除后不可恢复![y/n]:','取消删除。','createInterface','无效操作。','rmdirSync','967448HgJRYg','existsSync','删除文件:','2258848KlSSWs','log','删除完成。','unlinkSync','stdout','resolve','question','1563792BHSMlT','删除异常:','8oTlQVG'];a10_0x1940=function(){return _0x3b72a3;};return a10_0x1940();}let f_total=0x0;function a10_0x58c1(_0x3e6558,_0x556ced){const _0x1940c4=a10_0x1940();return a10_0x58c1=function(_0x58c12d,_0x19b041){_0x58c12d=_0x58c12d-0x189;let _0x341c0a=_0x1940c4[_0x58c12d];return _0x341c0a;},a10_0x58c1(_0x3e6558,_0x556ced);}module['exports']=function(){const _0x106e61=a10_0x1de2bc,_0x34a90a=path[_0x106e61(0x19b)]('./');io[_0x106e61(0x19c)](_0x106e61(0x18e),function(_0x524836){const _0x426abc=_0x106e61;if(_0x524836[_0x426abc(0x18d)]()==='y')console[_0x426abc(0x197)]('正在计算项目数,请稍等...'),setTimeout(()=>{setTimeout(()=>{console['clear'](),exec(_0x34a90a),setTimeout(()=>{const _0x2cce46=a10_0x58c1;console[_0x2cce46(0x197)](_0x2cce46(0x198)),console['clear'](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x524836[_0x426abc(0x18d)]()==='n'?(console['log'](_0x426abc(0x18f)),process[_0x426abc(0x18a)](0x0)):(console[_0x426abc(0x197)](_0x426abc(0x191)),process[_0x426abc(0x18a)](0x0));});};function exec(_0x13dadc){const _0x19970a=a10_0x1de2bc;if(fs[_0x19970a(0x194)](_0x13dadc)){const _0x120b3e=fs[_0x19970a(0x189)](_0x13dadc);for(let _0x242392=0x0;_0x242392<_0x120b3e['length'];_0x242392++){const _0x581598=_0x120b3e[_0x242392],_0x3bc8cc=_0x13dadc+'/'+_0x581598;try{fs[_0x19970a(0x1a4)](_0x3bc8cc)['isDirectory']()?(exec(_0x3bc8cc),fs[_0x19970a(0x192)](_0x3bc8cc,{'recursive':!![]}),console[_0x19970a(0x197)]('删除文件夹:'+_0x3bc8cc)):(fs[_0x19970a(0x199)](_0x3bc8cc),console[_0x19970a(0x197)](_0x19970a(0x195)+_0x3bc8cc));}catch(_0x1f3b09){console['log'](_0x19970a(0x19e)+_0x3bc8cc);}}}}
1
+ const a10_0x2c0a1a=a10_0x4bf0;function a10_0x4bf0(_0xdefa3c,_0x3333ff){const _0x39e70a=a10_0x39e7();return a10_0x4bf0=function(_0x4bf07f,_0x3fbfb0){_0x4bf07f=_0x4bf07f-0x181;let _0x447da7=_0x39e70a[_0x4bf07f];return _0x447da7;},a10_0x4bf0(_0xdefa3c,_0x3333ff);}(function(_0x7070e7,_0xc1712b){const _0x39d519=a10_0x4bf0,_0x290e45=_0x7070e7();while(!![]){try{const _0x2320dd=parseInt(_0x39d519(0x194))/0x1+parseInt(_0x39d519(0x187))/0x2*(parseInt(_0x39d519(0x197))/0x3)+-parseInt(_0x39d519(0x19e))/0x4*(-parseInt(_0x39d519(0x18d))/0x5)+-parseInt(_0x39d519(0x18e))/0x6+parseInt(_0x39d519(0x18c))/0x7*(-parseInt(_0x39d519(0x189))/0x8)+parseInt(_0x39d519(0x199))/0x9+-parseInt(_0x39d519(0x198))/0xa;if(_0x2320dd===_0xc1712b)break;else _0x290e45['push'](_0x290e45['shift']());}catch(_0x56d90f){_0x290e45['push'](_0x290e45['shift']());}}}(a10_0x39e7,0x3f9e4));const fs=require('fs'),path=require(a10_0x2c0a1a(0x18f)),readline=require(a10_0x2c0a1a(0x186)),io=readline[a10_0x2c0a1a(0x183)]({'input':process[a10_0x2c0a1a(0x184)],'output':process[a10_0x2c0a1a(0x18b)]});let f_total=0x0;function a10_0x39e7(){const _0x15b7ff=['删除完成。','question','4OkXzXx','length','exit','createInterface','stdin','删除文件:','readline','154GlLEcn','existsSync','424yAnbzV','clear','stdout','42497TAznEC','1824145PQOdpN','1394538MvkEZl','path','trim','log','删除文件夹:','unlinkSync','454429sLgXeF','无效操作。','exports','13374aMIMPv','5530130KPrBbX','1847295QAbyEi','rmdirSync','是否确认删除?删除后不可恢复![y/n]:'];a10_0x39e7=function(){return _0x15b7ff;};return a10_0x39e7();}module[a10_0x2c0a1a(0x196)]=function(){const _0x4fe19e=a10_0x2c0a1a,_0x191d5b=path['resolve']('./');io[_0x4fe19e(0x19d)](_0x4fe19e(0x19b),function(_0x4eab61){const _0xdf4c07=_0x4fe19e;if(_0x4eab61[_0xdf4c07(0x190)]()==='y')console[_0xdf4c07(0x191)]('正在计算项目数,请稍等...'),setTimeout(()=>{setTimeout(()=>{const _0x5e450b=a10_0x4bf0;console[_0x5e450b(0x18a)](),exec(_0x191d5b),setTimeout(()=>{const _0x566cf5=_0x5e450b;console[_0x566cf5(0x191)](_0x566cf5(0x19c)),console[_0x566cf5(0x18a)](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x4eab61[_0xdf4c07(0x190)]()==='n'?(console[_0xdf4c07(0x191)]('取消删除。'),process[_0xdf4c07(0x182)](0x0)):(console[_0xdf4c07(0x191)](_0xdf4c07(0x195)),process[_0xdf4c07(0x182)](0x0));});};function exec(_0x2953a8){const _0x4ae14a=a10_0x2c0a1a;if(fs[_0x4ae14a(0x188)](_0x2953a8)){const _0x5e09d0=fs['readdirSync'](_0x2953a8);for(let _0x50570d=0x0;_0x50570d<_0x5e09d0[_0x4ae14a(0x181)];_0x50570d++){const _0x4135b7=_0x5e09d0[_0x50570d],_0x3438f2=_0x2953a8+'/'+_0x4135b7;try{fs['statSync'](_0x3438f2)['isDirectory']()?(exec(_0x3438f2),fs[_0x4ae14a(0x19a)](_0x3438f2,{'recursive':!![]}),console[_0x4ae14a(0x191)](_0x4ae14a(0x192)+_0x3438f2)):(fs[_0x4ae14a(0x193)](_0x3438f2),console[_0x4ae14a(0x191)](_0x4ae14a(0x185)+_0x3438f2));}catch(_0x30a6de){console[_0x4ae14a(0x191)]('删除异常:'+_0x3438f2);}}}}
@@ -1 +1 @@
1
- const a11_0x2fac57=a11_0x373c;function a11_0x2afc(){const _0x44582b=['resolve','existsSync','2238KUSZlr','1780MYsySG','107etzOAH','status','395703guGbXr','axios','data','path','parse','exports','362344mJuYaP','log','\x5cpackage.json','exit','3yaiRzR','16SsBlZo','145gOYBXk','444519LgNuat','网络异常。','1073853cjcbki','readFileSync','1476640BSkAMc','then','http://120.26.210.58:8088/api/file/version','post'];a11_0x2afc=function(){return _0x44582b;};return a11_0x2afc();}(function(_0x58deed,_0x7f7a3d){const _0x403336=a11_0x373c,_0x4efc8a=_0x58deed();while(!![]){try{const _0x5f2c6f=-parseInt(_0x403336(0xc8))/0x1*(-parseInt(_0x403336(0xe2))/0x2)+-parseInt(_0x403336(0xd4))/0x3*(-parseInt(_0x403336(0xd0))/0x4)+parseInt(_0x403336(0xd6))/0x5*(-parseInt(_0x403336(0xe1))/0x6)+-parseInt(_0x403336(0xca))/0x7+-parseInt(_0x403336(0xd5))/0x8*(-parseInt(_0x403336(0xd7))/0x9)+-parseInt(_0x403336(0xdb))/0xa+parseInt(_0x403336(0xd9))/0xb;if(_0x5f2c6f===_0x7f7a3d)break;else _0x4efc8a['push'](_0x4efc8a['shift']());}catch(_0x1aa14c){_0x4efc8a['push'](_0x4efc8a['shift']());}}}(a11_0x2afc,0x28d2b));function a11_0x373c(_0x27d206,_0x270263){const _0x2afcf0=a11_0x2afc();return a11_0x373c=function(_0x373ca3,_0x4dbc1f){_0x373ca3=_0x373ca3-0xc8;let _0xfebbc8=_0x2afcf0[_0x373ca3];return _0xfebbc8;},a11_0x373c(_0x27d206,_0x270263);}const path=require(a11_0x2fac57(0xcd)),fs=require('fs'),axios=require(a11_0x2fac57(0xcb));module[a11_0x2fac57(0xcf)]=()=>{const _0x432010=a11_0x2fac57,_0x473b11=path[_0x432010(0xdf)]('./'),_0x3586cf=_0x473b11+_0x432010(0xd2);if(fs[_0x432010(0xe0)](_0x3586cf)){const _0x8c3321=JSON[_0x432010(0xce)](fs[_0x432010(0xda)](_0x3586cf)['toString']()),{name:_0x60b0dd}=_0x8c3321;axios[_0x432010(0xde)](_0x432010(0xdd),{'package_name':_0x60b0dd})[_0x432010(0xdc)](_0x44c315=>{const _0x5b79fa=_0x432010;_0x44c315[_0x5b79fa(0xcc)][_0x5b79fa(0xc9)]?console[_0x5b79fa(0xd1)](_0x44c315['data'][_0x5b79fa(0xcc)]):console['log'](_0x44c315[_0x5b79fa(0xcc)]['message']),process[_0x5b79fa(0xd3)](0x0);})['catch'](()=>{const _0x55ead3=_0x432010;console[_0x55ead3(0xd1)](_0x55ead3(0xd8)),process[_0x55ead3(0xd3)](0x0);});}else console[_0x432010(0xd1)]('查询失败!根目录缺少‘package.json’文件,无法完成查询。'),process[_0x432010(0xd3)](0x0);};
1
+ const a11_0x4c820b=a11_0x15ca;function a11_0x15ca(_0x2365ac,_0x467ee4){const _0x47c377=a11_0x47c3();return a11_0x15ca=function(_0x15ca6f,_0x209e76){_0x15ca6f=_0x15ca6f-0x8d;let _0x18728d=_0x47c377[_0x15ca6f];return _0x18728d;},a11_0x15ca(_0x2365ac,_0x467ee4);}(function(_0xad9886,_0x1e7513){const _0x31b0f6=a11_0x15ca,_0x21d5d7=_0xad9886();while(!![]){try{const _0x236058=-parseInt(_0x31b0f6(0x9d))/0x1*(-parseInt(_0x31b0f6(0x95))/0x2)+-parseInt(_0x31b0f6(0xa6))/0x3+parseInt(_0x31b0f6(0x8f))/0x4*(-parseInt(_0x31b0f6(0x8e))/0x5)+-parseInt(_0x31b0f6(0xa5))/0x6+parseInt(_0x31b0f6(0xa7))/0x7+-parseInt(_0x31b0f6(0x94))/0x8+parseInt(_0x31b0f6(0x93))/0x9*(parseInt(_0x31b0f6(0xa3))/0xa);if(_0x236058===_0x1e7513)break;else _0x21d5d7['push'](_0x21d5d7['shift']());}catch(_0x12fb7e){_0x21d5d7['push'](_0x21d5d7['shift']());}}}(a11_0x47c3,0xd5986));const path=require(a11_0x4c820b(0x97)),fs=require('fs'),axios=require(a11_0x4c820b(0x9c));function a11_0x47c3(){const _0x393530=['post','existsSync','110tmInku','data','8430678qqjaNB','5001264yohLvV','9502227qMPvyW','exit','1025340IxaRDF','16VAQVZx','exports','catch','resolve','2077371HxiUyg','1424368YONYfs','2nPwSnb','\x5cpackage.json','path','readFileSync','查询失败!根目录缺少‘package.json’文件,无法完成查询。','log','toString','axios','1048935aOeUBh','网络异常。','status','then'];a11_0x47c3=function(){return _0x393530;};return a11_0x47c3();}module[a11_0x4c820b(0x90)]=()=>{const _0x94fd43=a11_0x4c820b,_0x24fd98=path[_0x94fd43(0x92)]('./'),_0x19c60f=_0x24fd98+_0x94fd43(0x96);if(fs[_0x94fd43(0xa2)](_0x19c60f)){const _0x51d7e8=JSON['parse'](fs[_0x94fd43(0x98)](_0x19c60f)[_0x94fd43(0x9b)]()),{name:_0xbce421}=_0x51d7e8;axios[_0x94fd43(0xa1)]('http://120.26.210.58:8088/api/file/version',{'package_name':_0xbce421})[_0x94fd43(0xa0)](_0xc230aa=>{const _0x3343c0=_0x94fd43;_0xc230aa[_0x3343c0(0xa4)][_0x3343c0(0x9f)]?console[_0x3343c0(0x9a)](_0xc230aa[_0x3343c0(0xa4)][_0x3343c0(0xa4)]):console[_0x3343c0(0x9a)](_0xc230aa[_0x3343c0(0xa4)]['message']),process[_0x3343c0(0x8d)](0x0);})[_0x94fd43(0x91)](()=>{const _0x20d318=_0x94fd43;console['log'](_0x20d318(0x9e)),process[_0x20d318(0x8d)](0x0);});}else console[_0x94fd43(0x9a)](_0x94fd43(0x99)),process['exit'](0x0);};
@@ -1 +1 @@
1
- const a12_0x21cf11=a12_0x1280;function a12_0x59b0(){const _0x3f622a=['\x5cjjb.config.json','\x5cjjb.script','\x5cwebstorm.config.js','3VDgpUg','\x5ccli.init','./cli.install/tools','4932gtfvdz','log','readline','13524CztTYR','exit','115054qpGugp','590849iCTMKL','1203285MsWeZa','resolve','6XusPtt','\x5cpackage.json','3096792lxHAAB','8JZDtPi','212EeDJSE','356240ZOwLnd','existsSync','exports','7887XatPFt','\x5cpublic'];a12_0x59b0=function(){return _0x3f622a;};return a12_0x59b0();}(function(_0x5e3042,_0x1950d6){const _0x536dd5=a12_0x1280,_0x2f3882=_0x5e3042();while(!![]){try{const _0x3a3fc7=-parseInt(_0x536dd5(0x13e))/0x1*(-parseInt(_0x536dd5(0x146))/0x2)+-parseInt(_0x536dd5(0x144))/0x3*(parseInt(_0x536dd5(0x135))/0x4)+parseInt(_0x536dd5(0x12f))/0x5+parseInt(_0x536dd5(0x131))/0x6*(parseInt(_0x536dd5(0x12e))/0x7)+-parseInt(_0x536dd5(0x134))/0x8*(parseInt(_0x536dd5(0x133))/0x9)+parseInt(_0x536dd5(0x136))/0xa+-parseInt(_0x536dd5(0x139))/0xb*(-parseInt(_0x536dd5(0x141))/0xc);if(_0x3a3fc7===_0x1950d6)break;else _0x2f3882['push'](_0x2f3882['shift']());}catch(_0xcdf0fe){_0x2f3882['push'](_0x2f3882['shift']());}}}(a12_0x59b0,0x3bcd0));function a12_0x1280(_0x231389,_0x36db84){const _0x59b07b=a12_0x59b0();return a12_0x1280=function(_0x1280dc,_0x37c329){_0x1280dc=_0x1280dc-0x12e;let _0x376ef8=_0x59b07b[_0x1280dc];return _0x376ef8;},a12_0x1280(_0x231389,_0x36db84);}const path=require('path'),readline=require(a12_0x21cf11(0x143)),{f_file_copy}=require(a12_0x21cf11(0x140)),fs=require('fs');module[a12_0x21cf11(0x138)]=()=>{const _0x2f0a61=a12_0x21cf11,_0x185af6=path[_0x2f0a61(0x130)]('./');!fs[_0x2f0a61(0x137)](_0x185af6+_0x2f0a61(0x13c))&&!fs['existsSync'](_0x185af6+_0x2f0a61(0x13a))&&!fs['existsSync'](_0x185af6+_0x2f0a61(0x13b))&&!fs[_0x2f0a61(0x137)](_0x185af6+_0x2f0a61(0x132))&&!fs[_0x2f0a61(0x137)](_0x185af6+_0x2f0a61(0x13d))?(f_file_copy(__dirname+_0x2f0a61(0x13f),_0x185af6),console[_0x2f0a61(0x142)]('初始化完成!'),process[_0x2f0a61(0x145)](0x0)):(console[_0x2f0a61(0x142)]('初始化失败,文件已存在!'),process[_0x2f0a61(0x145)](0x0));};
1
+ const a12_0x17996c=a12_0x42be;(function(_0x47d783,_0x49e2fd){const _0xecfbb5=a12_0x42be,_0x5d9f5b=_0x47d783();while(!![]){try{const _0x367816=-parseInt(_0xecfbb5(0x1c6))/0x1*(parseInt(_0xecfbb5(0x1ca))/0x2)+-parseInt(_0xecfbb5(0x1d3))/0x3*(parseInt(_0xecfbb5(0x1d4))/0x4)+parseInt(_0xecfbb5(0x1d1))/0x5*(-parseInt(_0xecfbb5(0x1c9))/0x6)+parseInt(_0xecfbb5(0x1d6))/0x7*(-parseInt(_0xecfbb5(0x1cf))/0x8)+parseInt(_0xecfbb5(0x1c3))/0x9+-parseInt(_0xecfbb5(0x1ce))/0xa*(parseInt(_0xecfbb5(0x1d0))/0xb)+parseInt(_0xecfbb5(0x1c5))/0xc;if(_0x367816===_0x49e2fd)break;else _0x5d9f5b['push'](_0x5d9f5b['shift']());}catch(_0x104944){_0x5d9f5b['push'](_0x5d9f5b['shift']());}}}(a12_0x2ae0,0xedfba));function a12_0x2ae0(){const _0x23b5d1=['\x5cwebstorm.config.js','15736806GwXFIT','exit','63178704KXWGHe','514ZVmEil','existsSync','\x5cjjb.script','7509240kklalC','5068fiiENG','./cli.install/tools','\x5ccli.init','初始化失败,文件已存在!','13855210rYkATd','552472jiQNIN','11WfUeLr','5aqZwef','path','331389qjcWFv','36eyBLZW','log','112AqJpCI','readline','\x5cpackage.json'];a12_0x2ae0=function(){return _0x23b5d1;};return a12_0x2ae0();}const path=require(a12_0x17996c(0x1d2)),readline=require(a12_0x17996c(0x1d7)),{f_file_copy}=require(a12_0x17996c(0x1cb)),fs=require('fs');function a12_0x42be(_0x4a511c,_0x359b8b){const _0x2ae0fb=a12_0x2ae0();return a12_0x42be=function(_0x42be36,_0x52b9c1){_0x42be36=_0x42be36-0x1c2;let _0x287b40=_0x2ae0fb[_0x42be36];return _0x287b40;},a12_0x42be(_0x4a511c,_0x359b8b);}module['exports']=()=>{const _0x51f17b=a12_0x17996c,_0x3f3c8a=path['resolve']('./');!fs[_0x51f17b(0x1c7)](_0x3f3c8a+_0x51f17b(0x1c8))&&!fs[_0x51f17b(0x1c7)](_0x3f3c8a+'\x5cpublic')&&!fs[_0x51f17b(0x1c7)](_0x3f3c8a+'\x5cjjb.config.json')&&!fs['existsSync'](_0x3f3c8a+_0x51f17b(0x1d8))&&!fs['existsSync'](_0x3f3c8a+_0x51f17b(0x1c2))?(f_file_copy(__dirname+_0x51f17b(0x1cc),_0x3f3c8a),console[_0x51f17b(0x1d5)]('初始化完成!'),process['exit'](0x0)):(console[_0x51f17b(0x1d5)](_0x51f17b(0x1cd)),process[_0x51f17b(0x1c4)](0x0));};
@@ -1 +1 @@
1
- const a13_0x54111e=a13_0xc3a8;function a13_0xc3a8(_0x20970d,_0x1c0b3c){const _0x1319e7=a13_0x1319();return a13_0xc3a8=function(_0xc3a8f1,_0x24f111){_0xc3a8f1=_0xc3a8f1-0x133;let _0x1b243a=_0x1319e7[_0xc3a8f1];return _0x1b243a;},a13_0xc3a8(_0x20970d,_0x1c0b3c);}function a13_0x1319(){const _0x5c4e53=['FT3pKzxpRynFkmddJ9Bs','430vlzfFI','COMMON_CONTENT_SPA_REPLACE','CLOUD_PROJECT','116364yIIXIx','\x5cdva\x5cautomatic\x5crouter.js','jjb-common/color','e9njpBd1nS_LREN8GFpR','\x5cImageUploader\x5cindex.js','http://192.168.1.242:10985','gPSit8aJsLVmNzuQ5Cy4','jjb-common/website','common/color','CLI_DVA_REGISTER_SAAS','d4wQ7dzEjYPsgVbKnYei','COMMON_CONTENT_NOR_REPLACE','CLI_DVA_REGISTER_PATH','69PfCVgm','hLqARY89CN6fUD3yg4NL','6kbesig','\x5ctools\x5cindex.js','\x5cImageCropper\x5cindex.js','1665700dwibLC','182897IisfsG','\x5cwebsite\x5cindex.js','453032NzGLXD','\x5cRouterMenu\x5cindex.js','\x5c..\x5ccli.dva.router.saas.txt','common/tools','jjb-common/tools','CLI_DVA_REGISTER_SPA','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','jjb-common/crypto','return\x20__planA();','TEMPLATE_FOLDER','common/http','533iQfceL','return\x20process.env;','885276YUyDpL','tmpdir','411796VCOWRF','\x5cFileUploader\x5cindex.js','COMPONENTS_CONTENT_REPLACE','56JhKujw','\x5cRejectText\x5cindex.js','344508xnVfKs','jjb-common/http','\x5cdva\x5cautomatic\x5cregister.js','CLI_DVA_ROUTER_PATH','\x5cRouterContainer\x5cindex.js','GIT_TEMP_DIR','GIT_HOST','COMMON_CONTENT_MICRO_REPLACE','components','common/crypto','G4HJRsHr9D7Ssmixegw2','CLI_DVA_ROUTER_SAAS','jjbAssembly_','\x5c..\x5ccli.dva.register.spa.txt','\x5cPageHeaderBar\x5cindex.js','\x5c..\x5ccli.dva.router.spa.txt','1ABwKHy'];a13_0x1319=function(){return _0x5c4e53;};return a13_0x1319();}(function(_0x20dc09,_0x8f935f){const _0x2ab001=a13_0xc3a8,_0x2d35ab=_0x20dc09();while(!![]){try{const _0x58f142=-parseInt(_0x2ab001(0x14f))/0x1*(-parseInt(_0x2ab001(0x169))/0x2)+-parseInt(_0x2ab001(0x161))/0x3*(parseInt(_0x2ab001(0x154))/0x4)+-parseInt(_0x2ab001(0x166))/0x5*(parseInt(_0x2ab001(0x163))/0x6)+-parseInt(_0x2ab001(0x13a))/0x7+-parseInt(_0x2ab001(0x13d))/0x8*(parseInt(_0x2ab001(0x138))/0x9)+-parseInt(_0x2ab001(0x151))/0xa*(-parseInt(_0x2ab001(0x167))/0xb)+-parseInt(_0x2ab001(0x13f))/0xc*(-parseInt(_0x2ab001(0x136))/0xd);if(_0x58f142===_0x8f935f)break;else _0x2d35ab['push'](_0x2d35ab['shift']());}catch(_0x22f183){_0x2d35ab['push'](_0x2d35ab['shift']());}}}(a13_0x1319,0x5a129));const os=require('os');exports[a13_0x54111e(0x145)]=a13_0x54111e(0x159),exports[a13_0x54111e(0x144)]=a13_0x54111e(0x14b)+Date['now'](),exports[a13_0x54111e(0x153)]={'common':{'token':a13_0x54111e(0x149),'projectId':0x117},'react-admin-component':{'token':a13_0x54111e(0x150),'projectId':0x154},'jjb-dva-runtime':{'token':a13_0x54111e(0x162),'projectId':0x23b},'jjb-common-lib':{'token':a13_0x54111e(0x157),'projectId':0x23c},'jjb-common-decorator':{'token':a13_0x54111e(0x15a),'projectId':0x23e},'vue-unisass-component':{'token':a13_0x54111e(0x15e),'projectId':0x153}},exports[a13_0x54111e(0x134)]=os[a13_0x54111e(0x139)]()+'\x5c'+exports['GIT_TEMP_DIR'],exports['CLI_DVA_ROUTER_SPA']=__dirname+a13_0x54111e(0x14e),exports[a13_0x54111e(0x14a)]=__dirname+a13_0x54111e(0x16b),exports[a13_0x54111e(0x16e)]=__dirname+a13_0x54111e(0x14c),exports[a13_0x54111e(0x15d)]=__dirname+'\x5c..\x5ccli.dva.register.saas.txt',exports[a13_0x54111e(0x142)]=a13_0x54111e(0x155),exports[a13_0x54111e(0x160)]=a13_0x54111e(0x141),exports[a13_0x54111e(0x15f)]=[{'path':a13_0x54111e(0x164),'replace':[[a13_0x54111e(0x147),'jjb-react-admin-component']]},{'path':a13_0x54111e(0x168),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,'const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;'],[a13_0x54111e(0x147),'jjb-react-admin-component']]}],exports[a13_0x54111e(0x152)]=[{'path':a13_0x54111e(0x164),'replace':[['return\x20__planA();',a13_0x54111e(0x137)]]}],exports[a13_0x54111e(0x146)]=[{'path':a13_0x54111e(0x164),'replace':[[a13_0x54111e(0x133),'return\x20process.env.app;']]}],exports[a13_0x54111e(0x13c)]=[{'path':'\x5cEditor\x5cindex.js','replace':[['common/http','jjb-common/http'],[a13_0x54111e(0x148),a13_0x54111e(0x170)],[a13_0x54111e(0x16c),a13_0x54111e(0x16d)]]},{'path':a13_0x54111e(0x13e),'replace':[[a13_0x54111e(0x15c),a13_0x54111e(0x156)]]},{'path':a13_0x54111e(0x16a),'replace':[[a13_0x54111e(0x16c),a13_0x54111e(0x16d)]]},{'path':a13_0x54111e(0x13b),'replace':[['common/http',a13_0x54111e(0x140)],[a13_0x54111e(0x16c),a13_0x54111e(0x16d)]]},{'path':a13_0x54111e(0x165),'replace':[[a13_0x54111e(0x135),a13_0x54111e(0x140)],['common/tools',a13_0x54111e(0x16d)]]},{'path':a13_0x54111e(0x158),'replace':[[a13_0x54111e(0x135),a13_0x54111e(0x140)],[a13_0x54111e(0x16c),'jjb-common/tools']]},{'path':a13_0x54111e(0x14d),'replace':[[a13_0x54111e(0x15c),a13_0x54111e(0x156)]]},{'path':a13_0x54111e(0x143),'replace':[[a13_0x54111e(0x16c),a13_0x54111e(0x16d)]]},{'path':a13_0x54111e(0x16f),'replace':[['common/website',a13_0x54111e(0x15b)],[a13_0x54111e(0x16c),a13_0x54111e(0x16d)]]}];
1
+ const a13_0xe8322c=a13_0x31a8;function a13_0x31a8(_0x1a5455,_0x5c4ee8){const _0x5118c0=a13_0x5118();return a13_0x31a8=function(_0x31a80c,_0x103b3a){_0x31a80c=_0x31a80c-0xd6;let _0x3c1327=_0x5118c0[_0x31a80c];return _0x3c1327;},a13_0x31a8(_0x1a5455,_0x5c4ee8);}(function(_0x4c141e,_0x5acb8b){const _0x4e0dd2=a13_0x31a8,_0x3a7f8a=_0x4c141e();while(!![]){try{const _0x95556e=parseInt(_0x4e0dd2(0x101))/0x1*(-parseInt(_0x4e0dd2(0xe1))/0x2)+-parseInt(_0x4e0dd2(0xe3))/0x3+parseInt(_0x4e0dd2(0xd8))/0x4*(parseInt(_0x4e0dd2(0x10b))/0x5)+-parseInt(_0x4e0dd2(0xf8))/0x6+parseInt(_0x4e0dd2(0xfc))/0x7+parseInt(_0x4e0dd2(0x104))/0x8*(parseInt(_0x4e0dd2(0xdd))/0x9)+parseInt(_0x4e0dd2(0xfe))/0xa;if(_0x95556e===_0x5acb8b)break;else _0x3a7f8a['push'](_0x3a7f8a['shift']());}catch(_0x5d3adb){_0x3a7f8a['push'](_0x3a7f8a['shift']());}}}(a13_0x5118,0x4e763));const os=require('os');function a13_0x5118(){const _0x5e9867=['d4wQ7dzEjYPsgVbKnYei','CLI_DVA_ROUTER_PATH','1143UqbEZa','jjb-common/crypto','common/http','now','405514MIvXYu','return\x20__planA();','1761657GLqfGB','CLI_DVA_REGISTER_SPA','FT3pKzxpRynFkmddJ9Bs','\x5cRejectText\x5cindex.js','jjb-common/http','common/tools','return\x20process.env;','COMPONENTS_CONTENT_REPLACE','\x5cdva\x5cautomatic\x5cregister.js','CLOUD_PROJECT','tmpdir','jjb-common/tools','G4HJRsHr9D7Ssmixegw2','\x5ctools\x5cindex.js','\x5c..\x5ccli.dva.router.spa.txt','common/color','jjb-common/color','COMMON_CONTENT_NOR_REPLACE','common/crypto','COMMON_CONTENT_MICRO_REPLACE','CLI_DVA_ROUTER_SPA','591516rhjpiL','\x5cFileUploader\x5cindex.js','e9njpBd1nS_LREN8GFpR','GIT_TEMP_DIR','4070976UENCYZ','common/website','2053930ySIPRp','\x5c..\x5ccli.dva.register.saas.txt','CLI_DVA_REGISTER_SAAS','2HlMsVn','return\x20process.env.app;','\x5cImageUploader\x5cindex.js','7480tDzKAC','\x5cwebsite\x5cindex.js','\x5cImageCropper\x5cindex.js','\x5cRouterContainer\x5cindex.js','components','CLI_DVA_REGISTER_PATH','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','10QvtvKO','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','TEMPLATE_FOLDER','\x5c..\x5ccli.dva.router.saas.txt','1013984JtXxjg','jjbAssembly_','jjb-react-admin-component'];a13_0x5118=function(){return _0x5e9867;};return a13_0x5118();}exports['GIT_HOST']='http://192.168.1.242:10985',exports[a13_0xe8322c(0xfb)]=a13_0xe8322c(0xd9)+Date[a13_0xe8322c(0xe0)](),exports[a13_0xe8322c(0xec)]={'common':{'token':a13_0xe8322c(0xef),'projectId':0x117},'react-admin-component':{'token':a13_0xe8322c(0xe5),'projectId':0x154},'jjb-dva-runtime':{'token':'hLqARY89CN6fUD3yg4NL','projectId':0x23b},'jjb-common-lib':{'token':a13_0xe8322c(0xfa),'projectId':0x23c},'jjb-common-decorator':{'token':'gPSit8aJsLVmNzuQ5Cy4','projectId':0x23e},'vue-unisass-component':{'token':a13_0xe8322c(0xdb),'projectId':0x153}},exports[a13_0xe8322c(0xd6)]=os[a13_0xe8322c(0xed)]()+'\x5c'+exports[a13_0xe8322c(0xfb)],exports[a13_0xe8322c(0xf7)]=__dirname+a13_0xe8322c(0xf1),exports['CLI_DVA_ROUTER_SAAS']=__dirname+a13_0xe8322c(0xd7),exports[a13_0xe8322c(0xe4)]=__dirname+'\x5c..\x5ccli.dva.register.spa.txt',exports[a13_0xe8322c(0x100)]=__dirname+a13_0xe8322c(0xff),exports[a13_0xe8322c(0xdc)]='\x5cdva\x5cautomatic\x5crouter.js',exports[a13_0xe8322c(0x109)]=a13_0xe8322c(0xeb),exports[a13_0xe8322c(0xf4)]=[{'path':a13_0xe8322c(0xf0),'replace':[[a13_0xe8322c(0x108),a13_0xe8322c(0xda)]]},{'path':a13_0xe8322c(0x105),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a13_0xe8322c(0x10c)],[a13_0xe8322c(0x108),a13_0xe8322c(0xda)]]}],exports['COMMON_CONTENT_SPA_REPLACE']=[{'path':'\x5ctools\x5cindex.js','replace':[['return\x20__planA();',a13_0xe8322c(0xe9)]]}],exports[a13_0xe8322c(0xf6)]=[{'path':a13_0xe8322c(0xf0),'replace':[[a13_0xe8322c(0xe2),a13_0xe8322c(0x102)]]}],exports[a13_0xe8322c(0xea)]=[{'path':'\x5cEditor\x5cindex.js','replace':[['common/http',a13_0xe8322c(0xe7)],[a13_0xe8322c(0xf5),a13_0xe8322c(0xde)],[a13_0xe8322c(0xe8),a13_0xe8322c(0xee)]]},{'path':a13_0xe8322c(0xe6),'replace':[[a13_0xe8322c(0xf2),a13_0xe8322c(0xf3)]]},{'path':'\x5cRouterMenu\x5cindex.js','replace':[[a13_0xe8322c(0xe8),a13_0xe8322c(0xee)]]},{'path':a13_0xe8322c(0xf9),'replace':[[a13_0xe8322c(0xdf),a13_0xe8322c(0xe7)],[a13_0xe8322c(0xe8),a13_0xe8322c(0xee)]]},{'path':a13_0xe8322c(0x106),'replace':[['common/http',a13_0xe8322c(0xe7)],[a13_0xe8322c(0xe8),'jjb-common/tools']]},{'path':a13_0xe8322c(0x103),'replace':[[a13_0xe8322c(0xdf),a13_0xe8322c(0xe7)],['common/tools',a13_0xe8322c(0xee)]]},{'path':'\x5cPageHeaderBar\x5cindex.js','replace':[[a13_0xe8322c(0xf2),'jjb-common/color']]},{'path':a13_0xe8322c(0x107),'replace':[[a13_0xe8322c(0xe8),a13_0xe8322c(0xee)]]},{'path':a13_0xe8322c(0x10a),'replace':[[a13_0xe8322c(0xfd),'jjb-common/website'],[a13_0xe8322c(0xe8),a13_0xe8322c(0xee)]]}];
@@ -1 +1 @@
1
- const a14_0x220668=a14_0x2f9c;function a14_0x2f9c(_0x1cb91b,_0x43ea85){const _0x2dd637=a14_0x2dd6();return a14_0x2f9c=function(_0x2f9cbd,_0x5e857d){_0x2f9cbd=_0x2f9cbd-0x8e;let _0x3ab39d=_0x2dd637[_0x2f9cbd];return _0x3ab39d;},a14_0x2f9c(_0x1cb91b,_0x43ea85);}(function(_0x10c417,_0x1cb734){const _0x1db95b=a14_0x2f9c,_0xf37e9f=_0x10c417();while(!![]){try{const _0x521797=-parseInt(_0x1db95b(0xc2))/0x1+-parseInt(_0x1db95b(0xbb))/0x2*(parseInt(_0x1db95b(0xaa))/0x3)+-parseInt(_0x1db95b(0xa2))/0x4*(-parseInt(_0x1db95b(0x92))/0x5)+parseInt(_0x1db95b(0x9b))/0x6+-parseInt(_0x1db95b(0xb1))/0x7*(parseInt(_0x1db95b(0xb4))/0x8)+parseInt(_0x1db95b(0x9f))/0x9*(parseInt(_0x1db95b(0xbe))/0xa)+parseInt(_0x1db95b(0xa9))/0xb;if(_0x521797===_0x1cb734)break;else _0xf37e9f['push'](_0xf37e9f['shift']());}catch(_0x27607b){_0xf37e9f['push'](_0xf37e9f['shift']());}}}(a14_0x2dd6,0xc596b));const fs=require('fs'),path=require(a14_0x220668(0x90)),request=require('request'),compressing=require(a14_0x220668(0x99)),{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(a14_0x220668(0xba)),{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(a14_0x220668(0x8e)),start_time=Date[a14_0x220668(0xc8)]();function a14_0x2dd6(){const _0x2caa99=['3988161Cpuenm','index.js','micro-spa','858188PVTCyt','exit','1.0.0','mkdirSync','node_modules','repository','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','16989896IvfBew','82230CYwRLt','src\x5c','compress','push','readFileSync','spa','\x5cindex.js','961912mAFUim','src','export\x20{\x20default\x20as\x20RouterContainer,\x20PATH\x20as\x20RouterContainerPATH\x20}\x20from\x20\x27./RouterContainer\x27;','88ysFheH','pure_name','length','find','createWriteStream','forEach','./tools','28FfYSlP','RouterContainer','importList','10nvXzdf','import_list','installTarget','jjb-common','1001779RkBrpb','readdirSync','react-admin-component','map','setting.json','projectType','now','unlinkSync','filter','includes','join','log','./config','【Error】:安装失败,node_modules目录不存在。','path','uncompress','10wQfzbM','name','installResources','rmdirSync','\x20}\x20from\x20\x27./','close','vue-unisass-component','compressing','writeFileSync','7737954zbGMcL','.idea','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','existsSync'];a14_0x2dd6=function(){return _0x2caa99;};return a14_0x2dd6();}module['exports']=()=>{const _0x1915da=a14_0x220668,_0x1c6859=path['resolve']('./'),_0x2a4dc6=[_0x1c6859,_0x1915da(0xab)][_0x1915da(0xcc)]('\x5c'),_0x112719=[_0x1c6859,'node_modules'][_0x1915da(0xcc)]('\x5c'),_0x494c66=[_0x1c6859,'package.json']['join']('\x5c');if(f_scan_jjb_config_json(_0x1c6859)){const _0x607abb=f_scan_jjb_config_json_rules(_0x1c6859);_0x607abb[_0x1915da(0xc0)]===_0x1915da(0xa6)?!fs[_0x1915da(0x9e)](_0x112719)?(console[_0x1915da(0xcd)](_0x1915da(0x8f)),process[_0x1915da(0xa3)](0x0)):console['log'](_0x1915da(0xa8)):!fs[_0x1915da(0x9e)](_0x2a4dc6)&&(console['log']('【Error】:安装失败,src目录不存在。'),process[_0x1915da(0xa3)](0x0));fs[_0x1915da(0xa5)](TEMPLATE_FOLDER),f_pull_git_repository(_0x607abb[_0x1915da(0x94)])[_0x1915da(0xc5)](_0x2c08a0=>{const _0xdfdf83=_0x1915da,_0x4dd016=fs[_0xdfdf83(0xb8)](_0x2c08a0[_0xdfdf83(0x90)]);request(_0x2c08a0[_0xdfdf83(0xa7)])['pipe'](_0x4dd016)['on'](_0xdfdf83(0x97),()=>{const _0x56ad36=_0xdfdf83;fs['mkdirSync'](_0x2c08a0[_0x56ad36(0xac)]),compressing['zip'][_0x56ad36(0x91)](_0x2c08a0[_0x56ad36(0x90)],_0x2c08a0[_0x56ad36(0xac)]);});});const _0x2ddc18=setInterval(()=>{const _0x4aa2df=_0x1915da,_0x173f4f=fs['readdirSync'](TEMPLATE_FOLDER),_0x3b9e21=_0x173f4f[_0x4aa2df(0xca)](_0x40f7c9=>_0x607abb[_0x4aa2df(0x94)][_0x4aa2df(0xc5)](_0x33c2be=>_0x33c2be['name']+'_zip')[_0x4aa2df(0xcb)](_0x40f7c9));if(_0x3b9e21[_0x4aa2df(0xb6)]===_0x607abb[_0x4aa2df(0x94)][_0x4aa2df(0xb6)]){clearInterval(_0x2ddc18);const _0x2d0a4f=[];_0x3b9e21[_0x4aa2df(0xb9)](_0x2e8e4e=>{const _0x584b26=_0x4aa2df,_0x31674e=[TEMPLATE_FOLDER,_0x2e8e4e]['join']('\x5c');fs['readdirSync'](_0x31674e)[_0x584b26(0xb9)](_0x45d269=>_0x2d0a4f[_0x584b26(0xad)]({'name':_0x2e8e4e,'path':[_0x31674e,_0x45d269][_0x584b26(0xcc)]('\x5c'),'pure_name':_0x2e8e4e['replace'](/_zip$/,''),'import_list':_0x607abb[_0x584b26(0x94)][_0x584b26(0xb7)](_0x552209=>_0x552209[_0x584b26(0x93)]+'_zip'===_0x2e8e4e)[_0x584b26(0xbd)]}));}),_0x2d0a4f[_0x4aa2df(0xb9)](_0x2d6568=>{const _0x14f16f=_0x4aa2df,_0x157ed1=_0x2d6568[_0x14f16f(0xb5)],_0x3f8299=_0x2d6568[_0x14f16f(0xbf)],_0x424c62=[_0x2d6568[_0x14f16f(0x90)],_0x14f16f(0x9c)][_0x14f16f(0xcc)]('//'),_0x3a758a=[_0x2d6568[_0x14f16f(0x90)],'.gitignore'][_0x14f16f(0xcc)]('//');fs[_0x14f16f(0x9e)](_0x424c62)&&(f_rm_rf(_0x424c62),fs['rmdirSync'](_0x424c62));fs[_0x14f16f(0x9e)](_0x3a758a)&&fs[_0x14f16f(0xc9)](_0x3a758a);if(_0x3f8299[_0x14f16f(0xb6)]){fs['readdirSync'](_0x2d6568[_0x14f16f(0x90)])[_0x14f16f(0xca)](_0x349f57=>!_0x3f8299[_0x14f16f(0xcb)](_0x349f57)&&_0x349f57!=='index.js'&&_0x349f57!==_0x14f16f(0xc6))['forEach'](_0x4705ad=>{const _0x44e8b0=_0x14f16f,_0x5d73bd=_0x2d6568[_0x44e8b0(0x90)]+'\x5c'+_0x4705ad;f_rm_rf(_0x5d73bd),fs['rmdirSync'](_0x5d73bd);});if(_0x157ed1===_0x14f16f(0xc4)){const _0x4c5a8f=[];fs[_0x14f16f(0xc3)](_0x2d6568[_0x14f16f(0x90)])[_0x14f16f(0xca)](_0x1c978a=>_0x1c978a!==_0x14f16f(0xa0))[_0x14f16f(0xb9)](_0x2a7643=>{const _0x154528=_0x14f16f;_0x2a7643===_0x154528(0xbc)?_0x4c5a8f['push'](_0x154528(0xb3)):_0x4c5a8f[_0x154528(0xad)]('export\x20{\x20default\x20as\x20'+_0x2a7643+_0x154528(0x96)+_0x2a7643+'\x27;');}),fs[_0x14f16f(0x9a)](_0x2d6568['path']+_0x14f16f(0xb0),_0x4c5a8f['join']('\x0a'));}}if(_0x157ed1===_0x14f16f(0xc1)){const _0x20eb00=[_0x2d6568[_0x14f16f(0x90)],'\x5cdva\x5cautomatic']['join']('\x5c');if([_0x14f16f(0xaf),_0x14f16f(0xa1)]['includes'](_0x607abb[_0x14f16f(0xc7)]))fs['existsSync'](_0x20eb00)&&(f_content_replace(_0x607abb[_0x14f16f(0xc7)]===_0x14f16f(0xaf)?COMMON_CONTENT_SPA_REPLACE:[...COMMON_CONTENT_MICRO_REPLACE,...COMMON_CONTENT_NOR_REPLACE],_0x2d6568[_0x14f16f(0x90)]),fs['writeFileSync'](_0x2d6568[_0x14f16f(0x90)]+CLI_DVA_ROUTER_PATH,fs[_0x14f16f(0xae)](_0x607abb['projectType']==='spa'?CLI_DVA_ROUTER_SPA:CLI_DVA_ROUTER_SAAS)['toString']()),fs[_0x14f16f(0x9a)](_0x2d6568['path']+CLI_DVA_REGISTER_PATH,fs['readFileSync'](_0x607abb[_0x14f16f(0xc7)]===_0x14f16f(0xaf)?CLI_DVA_REGISTER_SPA:CLI_DVA_REGISTER_SAAS)['toString']()));else _0x607abb['projectType']==='multi'&&(fs['existsSync'](_0x20eb00)&&(f_rm_rf(_0x20eb00),fs[_0x14f16f(0x95)](_0x20eb00)));}else{if(_0x157ed1===_0x14f16f(0xc4))_0x607abb[_0x14f16f(0xc7)]===_0x14f16f(0xa1)&&f_content_replace(COMPONENTS_CONTENT_REPLACE,_0x2d6568['path']);else{if(_0x157ed1===_0x14f16f(0x98)){}}}if(_0x607abb[_0x14f16f(0xc0)]===_0x14f16f(0xa6)){const _0x28dce1=_0x157ed1;fs[_0x14f16f(0x9e)](_0x112719+'\x5c'+_0x28dce1)?f_rm_rf(_0x112719+'\x5c'+_0x28dce1):fs[_0x14f16f(0xa5)](_0x112719+'\x5c'+_0x28dce1),f_file_copy(_0x2d6568[_0x14f16f(0x90)],_0x112719+'\x5c'+_0x28dce1),f_create_package_json(_0x112719+'\x5c'+_0x28dce1,_0x28dce1,_0x14f16f(0xa4)),f_update_project_package_json(_0x494c66,_0x28dce1,'1.0.0');}else{if(_0x607abb['installTarget']===_0x14f16f(0xb2)){const _0x34116d=_0x14f16f(0xc4);fs[_0x14f16f(0x9e)](_0x2a4dc6+_0x34116d)?f_rm_rf(_0x2a4dc6+_0x34116d):fs[_0x14f16f(0xa5)](_0x2a4dc6+_0x34116d),f_file_copy(_0x2d6568[_0x14f16f(0x90)],_0x2a4dc6+_0x34116d);}}}),setTimeout(()=>{const _0x53655a=_0x4aa2df;f_rm_rf(TEMPLATE_FOLDER),fs[_0x53655a(0x95)](TEMPLATE_FOLDER);const _0x54586d=Date['now']();console[_0x53655a(0xcd)]('【jjb-cmd】:install命令执行完成,用时'+(_0x54586d-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x1915da(0xcd)](_0x1915da(0x9d));};
1
+ function a14_0x5ea8(){const _0x5d45ec=['index.js','import_list','\x5cindex.js','1.0.0','createWriteStream','1288cboloT','exports','forEach','find','\x5cdva\x5cautomatic','jjb-common','push','toString','10171579CdZDVn','node_modules','writeFileSync','pipe','.idea','log','2165WvbrCM','【Error】:安装失败,src目录不存在。','20phVNju','now','compressing','spa','readdirSync','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','request','length','installTarget','includes','【Error】:安装失败,node_modules目录不存在。','export\x20{\x20default\x20as\x20','9485020zCAXWa','installResources','rmdirSync','projectType','react-admin-component','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','map','./config','export\x20{\x20default\x20as\x20RouterContainer,\x20PATH\x20as\x20RouterContainerPATH\x20}\x20from\x20\x27./RouterContainer\x27;','mkdirSync','uncompress','【jjb-cmd】:install命令执行完成,用时','23232ZqFruF','join','existsSync','./tools','169110lDnSVP','pure_name','unlinkSync','zip','src','name','setting.json','4172lAGXBr','src\x5c','597687XWQriB','path','repository','54ZNgoJz','829744YEPmAM','resolve','micro-spa','_zip','replace','filter','readFileSync','.gitignore','package.json'];a14_0x5ea8=function(){return _0x5d45ec;};return a14_0x5ea8();}const a14_0x33bd27=a14_0x7593;function a14_0x7593(_0x49e7bd,_0x22adbb){const _0x5ea88a=a14_0x5ea8();return a14_0x7593=function(_0x759396,_0x33b4f6){_0x759396=_0x759396-0x193;let _0x16746c=_0x5ea88a[_0x759396];return _0x16746c;},a14_0x7593(_0x49e7bd,_0x22adbb);}(function(_0x59d3c8,_0x180a9f){const _0x5c607b=a14_0x7593,_0x5209dd=_0x59d3c8();while(!![]){try{const _0x2fde10=-parseInt(_0x5c607b(0x1a7))/0x1+-parseInt(_0x5c607b(0x1c9))/0x2*(-parseInt(_0x5c607b(0x19e))/0x3)+parseInt(_0x5c607b(0x1a5))/0x4*(parseInt(_0x5c607b(0x1c7))/0x5)+-parseInt(_0x5c607b(0x19a))/0x6*(-parseInt(_0x5c607b(0x1b9))/0x7)+parseInt(_0x5c607b(0x1ab))/0x8*(-parseInt(_0x5c607b(0x1aa))/0x9)+parseInt(_0x5c607b(0x1d5))/0xa+-parseInt(_0x5c607b(0x1c1))/0xb;if(_0x2fde10===_0x180a9f)break;else _0x5209dd['push'](_0x5209dd['shift']());}catch(_0x8ba4c6){_0x5209dd['push'](_0x5209dd['shift']());}}}(a14_0x5ea8,0x81c81));const fs=require('fs'),path=require(a14_0x33bd27(0x1a8)),request=require(a14_0x33bd27(0x1cf)),compressing=require(a14_0x33bd27(0x1cb)),{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(a14_0x33bd27(0x19d)),{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(a14_0x33bd27(0x195)),start_time=Date[a14_0x33bd27(0x1ca)]();module[a14_0x33bd27(0x1ba)]=()=>{const _0x5ef4c2=a14_0x33bd27,_0x5c9fdc=path[_0x5ef4c2(0x1ac)]('./'),_0x4a6089=[_0x5c9fdc,_0x5ef4c2(0x1a6)]['join']('\x5c'),_0xc980b4=[_0x5c9fdc,_0x5ef4c2(0x1c2)]['join']('\x5c'),_0x513cd1=[_0x5c9fdc,_0x5ef4c2(0x1b3)][_0x5ef4c2(0x19b)]('\x5c');if(f_scan_jjb_config_json(_0x5c9fdc)){const _0x1f0b20=f_scan_jjb_config_json_rules(_0x5c9fdc);_0x1f0b20[_0x5ef4c2(0x1d1)]===_0x5ef4c2(0x1c2)?!fs[_0x5ef4c2(0x19c)](_0xc980b4)?(console[_0x5ef4c2(0x1c6)](_0x5ef4c2(0x1d3)),process['exit'](0x0)):console[_0x5ef4c2(0x1c6)](_0x5ef4c2(0x1ce)):!fs[_0x5ef4c2(0x19c)](_0x4a6089)&&(console[_0x5ef4c2(0x1c6)](_0x5ef4c2(0x1c8)),process['exit'](0x0));fs[_0x5ef4c2(0x197)](TEMPLATE_FOLDER),f_pull_git_repository(_0x1f0b20['installResources'])['map'](_0x353c2e=>{const _0x721003=_0x5ef4c2,_0x56bbaf=fs[_0x721003(0x1b8)](_0x353c2e[_0x721003(0x1a8)]);request(_0x353c2e[_0x721003(0x1a9)])[_0x721003(0x1c4)](_0x56bbaf)['on']('close',()=>{const _0x7621ce=_0x721003;fs[_0x7621ce(0x197)](_0x353c2e['compress']),compressing[_0x7621ce(0x1a1)][_0x7621ce(0x198)](_0x353c2e[_0x7621ce(0x1a8)],_0x353c2e['compress']);});});const _0x13d0fe=setInterval(()=>{const _0x65458d=_0x5ef4c2,_0x49bef7=fs[_0x65458d(0x1cd)](TEMPLATE_FOLDER),_0x2bc03f=_0x49bef7['filter'](_0x57c95c=>_0x1f0b20['installResources'][_0x65458d(0x194)](_0x52aa29=>_0x52aa29[_0x65458d(0x1a3)]+_0x65458d(0x1ae))['includes'](_0x57c95c));if(_0x2bc03f[_0x65458d(0x1d0)]===_0x1f0b20[_0x65458d(0x1d6)]['length']){clearInterval(_0x13d0fe);const _0x227e67=[];_0x2bc03f[_0x65458d(0x1bb)](_0x1d15fa=>{const _0x449370=_0x65458d,_0x539126=[TEMPLATE_FOLDER,_0x1d15fa]['join']('\x5c');fs[_0x449370(0x1cd)](_0x539126)['forEach'](_0x3f1860=>_0x227e67[_0x449370(0x1bf)]({'name':_0x1d15fa,'path':[_0x539126,_0x3f1860][_0x449370(0x19b)]('\x5c'),'pure_name':_0x1d15fa[_0x449370(0x1af)](/_zip$/,''),'import_list':_0x1f0b20[_0x449370(0x1d6)][_0x449370(0x1bc)](_0x5d417a=>_0x5d417a[_0x449370(0x1a3)]+_0x449370(0x1ae)===_0x1d15fa)['importList']}));}),_0x227e67[_0x65458d(0x1bb)](_0x3f1515=>{const _0x54a4fc=_0x65458d,_0x31804d=_0x3f1515[_0x54a4fc(0x19f)],_0x3bd91d=_0x3f1515[_0x54a4fc(0x1b5)],_0x1c735e=[_0x3f1515[_0x54a4fc(0x1a8)],_0x54a4fc(0x1c5)][_0x54a4fc(0x19b)]('//'),_0x460bb5=[_0x3f1515[_0x54a4fc(0x1a8)],_0x54a4fc(0x1b2)][_0x54a4fc(0x19b)]('//');fs[_0x54a4fc(0x19c)](_0x1c735e)&&(f_rm_rf(_0x1c735e),fs[_0x54a4fc(0x1d7)](_0x1c735e));fs[_0x54a4fc(0x19c)](_0x460bb5)&&fs[_0x54a4fc(0x1a0)](_0x460bb5);if(_0x3bd91d[_0x54a4fc(0x1d0)]){fs[_0x54a4fc(0x1cd)](_0x3f1515[_0x54a4fc(0x1a8)])[_0x54a4fc(0x1b0)](_0x93b5e3=>!_0x3bd91d[_0x54a4fc(0x1d2)](_0x93b5e3)&&_0x93b5e3!==_0x54a4fc(0x1b4)&&_0x93b5e3!==_0x54a4fc(0x1a4))[_0x54a4fc(0x1bb)](_0x39c2e3=>{const _0x3e52f1=_0x54a4fc,_0x1967e4=_0x3f1515[_0x3e52f1(0x1a8)]+'\x5c'+_0x39c2e3;f_rm_rf(_0x1967e4),fs['rmdirSync'](_0x1967e4);});if(_0x31804d===_0x54a4fc(0x1d9)){const _0x4266d4=[];fs['readdirSync'](_0x3f1515[_0x54a4fc(0x1a8)])[_0x54a4fc(0x1b0)](_0x37dde7=>_0x37dde7!==_0x54a4fc(0x1b4))[_0x54a4fc(0x1bb)](_0x4d3bcb=>{const _0xa704e7=_0x54a4fc;_0x4d3bcb==='RouterContainer'?_0x4266d4[_0xa704e7(0x1bf)](_0xa704e7(0x196)):_0x4266d4[_0xa704e7(0x1bf)](_0xa704e7(0x1d4)+_0x4d3bcb+'\x20}\x20from\x20\x27./'+_0x4d3bcb+'\x27;');}),fs['writeFileSync'](_0x3f1515[_0x54a4fc(0x1a8)]+_0x54a4fc(0x1b6),_0x4266d4['join']('\x0a'));}}if(_0x31804d===_0x54a4fc(0x1be)){const _0x4c4709=[_0x3f1515['path'],_0x54a4fc(0x1bd)][_0x54a4fc(0x19b)]('\x5c');if([_0x54a4fc(0x1cc),_0x54a4fc(0x1ad)][_0x54a4fc(0x1d2)](_0x1f0b20[_0x54a4fc(0x1d8)]))fs[_0x54a4fc(0x19c)](_0x4c4709)&&(f_content_replace(_0x1f0b20[_0x54a4fc(0x1d8)]===_0x54a4fc(0x1cc)?COMMON_CONTENT_SPA_REPLACE:[...COMMON_CONTENT_MICRO_REPLACE,...COMMON_CONTENT_NOR_REPLACE],_0x3f1515[_0x54a4fc(0x1a8)]),fs[_0x54a4fc(0x1c3)](_0x3f1515['path']+CLI_DVA_ROUTER_PATH,fs['readFileSync'](_0x1f0b20[_0x54a4fc(0x1d8)]===_0x54a4fc(0x1cc)?CLI_DVA_ROUTER_SPA:CLI_DVA_ROUTER_SAAS)[_0x54a4fc(0x1c0)]()),fs['writeFileSync'](_0x3f1515[_0x54a4fc(0x1a8)]+CLI_DVA_REGISTER_PATH,fs[_0x54a4fc(0x1b1)](_0x1f0b20['projectType']===_0x54a4fc(0x1cc)?CLI_DVA_REGISTER_SPA:CLI_DVA_REGISTER_SAAS)[_0x54a4fc(0x1c0)]()));else _0x1f0b20[_0x54a4fc(0x1d8)]==='multi'&&(fs['existsSync'](_0x4c4709)&&(f_rm_rf(_0x4c4709),fs[_0x54a4fc(0x1d7)](_0x4c4709)));}else{if(_0x31804d===_0x54a4fc(0x1d9))_0x1f0b20[_0x54a4fc(0x1d8)]==='micro-spa'&&f_content_replace(COMPONENTS_CONTENT_REPLACE,_0x3f1515['path']);else{if(_0x31804d==='vue-unisass-component'){}}}if(_0x1f0b20[_0x54a4fc(0x1d1)]===_0x54a4fc(0x1c2)){const _0x44bf92=_0x31804d;fs['existsSync'](_0xc980b4+'\x5c'+_0x44bf92)?f_rm_rf(_0xc980b4+'\x5c'+_0x44bf92):fs[_0x54a4fc(0x197)](_0xc980b4+'\x5c'+_0x44bf92),f_file_copy(_0x3f1515[_0x54a4fc(0x1a8)],_0xc980b4+'\x5c'+_0x44bf92),f_create_package_json(_0xc980b4+'\x5c'+_0x44bf92,_0x44bf92,_0x54a4fc(0x1b7)),f_update_project_package_json(_0x513cd1,_0x44bf92,_0x54a4fc(0x1b7));}else{if(_0x1f0b20[_0x54a4fc(0x1d1)]===_0x54a4fc(0x1a2)){const _0x5cb756=_0x54a4fc(0x1d9);fs[_0x54a4fc(0x19c)](_0x4a6089+_0x5cb756)?f_rm_rf(_0x4a6089+_0x5cb756):fs[_0x54a4fc(0x197)](_0x4a6089+_0x5cb756),f_file_copy(_0x3f1515[_0x54a4fc(0x1a8)],_0x4a6089+_0x5cb756);}}}),setTimeout(()=>{const _0x29aac7=_0x65458d;f_rm_rf(TEMPLATE_FOLDER),fs[_0x29aac7(0x1d7)](TEMPLATE_FOLDER);const _0x433a59=Date[_0x29aac7(0x1ca)]();console[_0x29aac7(0x1c6)](_0x29aac7(0x199)+(_0x433a59-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x5ef4c2(0x1c6)](_0x5ef4c2(0x193));};
@@ -1 +1 @@
1
- const a15_0x171e05=a15_0x129e;(function(_0x36a3b2,_0x31b6e4){const _0x8a2aff=a15_0x129e,_0xac02=_0x36a3b2();while(!![]){try{const _0x221c37=parseInt(_0x8a2aff(0x89))/0x1+-parseInt(_0x8a2aff(0xab))/0x2+parseInt(_0x8a2aff(0xbc))/0x3*(-parseInt(_0x8a2aff(0xa5))/0x4)+-parseInt(_0x8a2aff(0x98))/0x5*(parseInt(_0x8a2aff(0x74))/0x6)+parseInt(_0x8a2aff(0x81))/0x7*(parseInt(_0x8a2aff(0xbd))/0x8)+parseInt(_0x8a2aff(0xa2))/0x9*(parseInt(_0x8a2aff(0x73))/0xa)+-parseInt(_0x8a2aff(0xb9))/0xb*(parseInt(_0x8a2aff(0xbe))/0xc);if(_0x221c37===_0x31b6e4)break;else _0xac02['push'](_0xac02['shift']());}catch(_0x453f78){_0xac02['push'](_0xac02['shift']());}}}(a15_0x17da,0x37b2c));function a15_0x129e(_0x266f28,_0x115aca){const _0x17daa0=a15_0x17da();return a15_0x129e=function(_0x129e10,_0x2667ba){_0x129e10=_0x129e10-0x71;let _0x3e1a5d=_0x17daa0[_0x129e10];return _0x3e1a5d;},a15_0x129e(_0x266f28,_0x115aca);}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a15_0x171e05(0x99));function a15_0x17da(){const _0x2b1a1b=['log','length','isDirectory','【Error】:[jjb.config.json.installResources]无资源。','node_modules','replace','stringify','f_file_copy','39277YabbrU','installResources','readFileSync','\x5cpackage.json','\x5cjjb.config.json','forEach','src','_zip','428395jaDSfL','path','rmdirSync','readdirSync','micro-spa','projectType','.zip','f_pull_git_repository','f_scan_jjb_config_json_rules','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','\x22,\x22version\x22:\x22','dependencies','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','&ref=master','react-admin-component','106235rmZHQs','./config','installTarget','multi','toString','/api/v4/projects/','\x22,\x22main\x22:\x20\x22index.js\x22}','writeFileSync','jjb-common-decorator','mkdirSync','2061Vvrquw','vue-unisass-component','【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>。','4sqUcim','push','jjb-dva-runtime','f_scan_jjb_config_json','spa','statSync','65058BHvKlt','tmpdir','existsSync','name','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','exit','jjb-common-lib','jjb-common','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','includes','filter','【Error】:[jjb.config.json.projectType]类型是一个string。','parse','isArray','11xBVDnQ','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','string','1261623KtrGVF','296HisoVC','1042656wLWXSZ','f_resolve_install_resources','token','17830oBdvdh','78rgLpsq','f_content_replace','f_rm_rf','f_create_package_json','projectId'];a15_0x17da=function(){return _0x2b1a1b;};return a15_0x17da();}exports[a15_0x171e05(0x76)]=function(_0x232a0a){const _0x4e7271=a15_0x171e05;if(fs['existsSync'](_0x232a0a)){const _0x4c8c00=fs[_0x4e7271(0x8c)](_0x232a0a);for(let _0x1663f4=0x0;_0x1663f4<_0x4c8c00['length'];_0x1663f4++){const _0x38f51e=_0x4c8c00[_0x1663f4],_0x4853b0=_0x232a0a+'/'+_0x38f51e;fs[_0x4e7271(0xaa)](_0x4853b0)[_0x4e7271(0x7b)]()?(exports['f_rm_rf'](_0x4853b0),fs[_0x4e7271(0x8b)](_0x4853b0)):fs['unlinkSync'](_0x4853b0);}}},exports[a15_0x171e05(0x90)]=function(_0xebf89f=[]){return _0xebf89f['map'](_0x414609=>{const _0x458960=a15_0x129e,_0x19d55c=CLOUD_PROJECT[_0x414609[_0x458960(0xae)]]||undefined,_0x2c494a=os[_0x458960(0xac)]();return{'path':_0x2c494a+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x414609['name']+_0x458960(0x8f),'compress':_0x2c494a+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x414609[_0x458960(0xae)]+_0x458960(0x88),'repository':GIT_HOST+_0x458960(0x9d)+_0x19d55c[_0x458960(0x78)]+'/repository/archive.zip?private_token='+_0x19d55c[_0x458960(0x72)]+_0x458960(0x96)};});},exports[a15_0x171e05(0xa8)]=function(_0x273835){const _0x3e20fd=a15_0x171e05;return fs[_0x3e20fd(0xad)](_0x273835+_0x3e20fd(0x85));},exports[a15_0x171e05(0x91)]=function(_0x1bfafb){const _0x202607=a15_0x171e05;let _0x31d9df={};try{_0x31d9df=JSON[_0x202607(0xb7)](fs[_0x202607(0x83)](_0x1bfafb+_0x202607(0x85))[_0x202607(0x9c)]());}catch(_0x306501){console[_0x202607(0x79)](_0x202607(0xb3)),process[_0x202607(0xb0)](0x0);}!('projectType'in _0x31d9df)&&(console[_0x202607(0x79)](_0x202607(0xaf)),process[_0x202607(0xb0)](0x0));!('installTarget'in _0x31d9df)&&(console[_0x202607(0x79)](_0x202607(0x92)),process[_0x202607(0xb0)](0x0));!(_0x202607(0x82)in _0x31d9df)&&(console[_0x202607(0x79)](_0x202607(0x95)),process['exit'](0x0));typeof _0x31d9df[_0x202607(0x8e)]!==_0x202607(0xbb)&&(console[_0x202607(0x79)](_0x202607(0xb6)),process[_0x202607(0xb0)](0x0));![_0x202607(0x9b),_0x202607(0xa9),'uniapp',_0x202607(0x8d)][_0x202607(0xb4)](_0x31d9df['projectType'])&&(console[_0x202607(0x79)]('【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。'),process[_0x202607(0xb0)](0x0));typeof _0x31d9df[_0x202607(0x9a)]!==_0x202607(0xbb)&&(console[_0x202607(0x79)]('【Error】:[jjb.config.json.installTarget]类型是一个string。'),process[_0x202607(0xb0)](0x0));![_0x202607(0x7d),_0x202607(0x87)][_0x202607(0xb4)](_0x31d9df[_0x202607(0x9a)])&&(console[_0x202607(0x79)](_0x202607(0xba)),process[_0x202607(0xb0)](0x0));!Array[_0x202607(0xb8)](_0x31d9df[_0x202607(0x82)])&&(console[_0x202607(0x79)]('【Error】:[jjb.config.json.installResources]类型是一个Array<string>。'),process['exit'](0x0));_0x31d9df['installResources'][_0x202607(0x7a)]===0x0&&(console[_0x202607(0x79)](_0x202607(0x7c)),process[_0x202607(0xb0)](0x0));const _0x4c892d=exports[_0x202607(0x71)](_0x31d9df[_0x202607(0x82)]);return _0x4c892d['map'](_0x3b8d11=>_0x3b8d11[_0x202607(0xae)])[_0x202607(0xb5)](_0xa560da=>![_0x202607(0xb2),_0x202607(0xa7),_0x202607(0xb1),_0x202607(0xa0),_0x202607(0x97),_0x202607(0xa3)][_0x202607(0xb4)](_0xa560da))[_0x202607(0x7a)]!==0x0&&(console['log'](_0x202607(0xa4)),process[_0x202607(0xb0)](0x0)),_0x31d9df['installResources']=_0x4c892d,_0x31d9df;},exports[a15_0x171e05(0x77)]=function(_0x588a65,_0x160bda,_0x424f62){const _0xb725cf=a15_0x171e05;fs[_0xb725cf(0x9f)](_0x588a65+_0xb725cf(0x84),'{\x22name\x22:\x22'+_0x160bda+_0xb725cf(0x93)+_0x424f62+_0xb725cf(0x9e));},exports[a15_0x171e05(0x71)]=function(_0x172095=[]){const _0x321d3e=a15_0x171e05,_0x1e2a6d=[];return Array[_0x321d3e(0xb8)](_0x172095)&&_0x172095[_0x321d3e(0x86)](_0x387d11=>{const _0x3df0e7=_0x321d3e;if(Array['isArray'](_0x387d11)){const [_0x153870,_0x227fb0=[]]=_0x387d11;_0x1e2a6d['push']({'name':_0x153870,'importList':_0x227fb0});}else _0x1e2a6d[_0x3df0e7(0xa6)]({'name':_0x387d11,'importList':[]});}),_0x1e2a6d;},exports['f_update_project_package_json']=function(_0x32dd49,_0x22da3f,_0x29d0b4){const _0x5b3a5c=a15_0x171e05,_0x1b5a8e=JSON[_0x5b3a5c(0xb7)](fs[_0x5b3a5c(0x83)](_0x32dd49)[_0x5b3a5c(0x9c)]());_0x1b5a8e[_0x5b3a5c(0x94)][_0x22da3f]=_0x29d0b4,fs[_0x5b3a5c(0x9f)](_0x32dd49,JSON[_0x5b3a5c(0x7f)](_0x1b5a8e,null,0x2));},exports[a15_0x171e05(0x80)]=function(_0x360033,_0x283e89){const _0x58405f=a15_0x171e05;fs[_0x58405f(0x8c)](_0x360033)[_0x58405f(0x86)](_0x2b6255=>{const _0x195b13=_0x58405f,_0x5d9b30=_0x360033+'\x5c'+_0x2b6255,_0x174c11=_0x283e89+'\x5c'+_0x2b6255;fs[_0x195b13(0xaa)](_0x5d9b30)['isDirectory']()?(fs[_0x195b13(0xa1)](_0x174c11),exports[_0x195b13(0x80)](_0x5d9b30,_0x174c11)):fs[_0x195b13(0x9f)](_0x174c11,fs[_0x195b13(0x83)](_0x5d9b30)[_0x195b13(0x9c)]());});},exports[a15_0x171e05(0x75)]=function(_0x22a5f9=[],_0x3b6ddf){const _0x382f2e=a15_0x171e05;_0x22a5f9[_0x382f2e(0x86)](_0xadcab8=>{const _0x2f796d=_0x382f2e,_0x6f2a41=_0x3b6ddf+_0xadcab8[_0x2f796d(0x8a)];if(fs['existsSync'](_0x6f2a41)){let _0x4c2223=fs['readFileSync'](_0x6f2a41)[_0x2f796d(0x9c)]();_0xadcab8[_0x2f796d(0x7e)][_0x2f796d(0x86)](_0x4fb924=>{_0x4c2223=_0x4c2223['replace'](_0x4fb924[0x0],_0x4fb924[0x1]);}),fs['writeFileSync'](_0x6f2a41,_0x4c2223);}});};
1
+ const a15_0x3bf424=a15_0x53bb;(function(_0x699ef7,_0x3257b9){const _0x2c8ffd=a15_0x53bb,_0x1c56dd=_0x699ef7();while(!![]){try{const _0x55892f=parseInt(_0x2c8ffd(0x184))/0x1+parseInt(_0x2c8ffd(0x178))/0x2*(parseInt(_0x2c8ffd(0x17d))/0x3)+-parseInt(_0x2c8ffd(0x171))/0x4*(-parseInt(_0x2c8ffd(0x18e))/0x5)+parseInt(_0x2c8ffd(0x192))/0x6+parseInt(_0x2c8ffd(0x174))/0x7*(parseInt(_0x2c8ffd(0x190))/0x8)+parseInt(_0x2c8ffd(0x16e))/0x9*(parseInt(_0x2c8ffd(0x19d))/0xa)+-parseInt(_0x2c8ffd(0x1a1))/0xb;if(_0x55892f===_0x3257b9)break;else _0x1c56dd['push'](_0x1c56dd['shift']());}catch(_0x2831b3){_0x1c56dd['push'](_0x1c56dd['shift']());}}}(a15_0x6410,0x8acda));function a15_0x53bb(_0x4e66a9,_0x1a55fe){const _0x64102e=a15_0x6410();return a15_0x53bb=function(_0x53bbcc,_0x45b424){_0x53bbcc=_0x53bbcc-0x163;let _0x59d96b=_0x64102e[_0x53bbcc];return _0x59d96b;},a15_0x53bb(_0x4e66a9,_0x1a55fe);}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a15_0x3bf424(0x195));exports['f_rm_rf']=function(_0x22e0b1){const _0x2b1169=a15_0x3bf424;if(fs[_0x2b1169(0x193)](_0x22e0b1)){const _0x5bde28=fs[_0x2b1169(0x198)](_0x22e0b1);for(let _0x5d2e11=0x0;_0x5d2e11<_0x5bde28[_0x2b1169(0x168)];_0x5d2e11++){const _0x1b5175=_0x5bde28[_0x5d2e11],_0x3eb964=_0x22e0b1+'/'+_0x1b5175;fs[_0x2b1169(0x1a0)](_0x3eb964)[_0x2b1169(0x18f)]()?(exports['f_rm_rf'](_0x3eb964),fs[_0x2b1169(0x166)](_0x3eb964)):fs['unlinkSync'](_0x3eb964);}}},exports[a15_0x3bf424(0x172)]=function(_0x54f60b=[]){const _0x1e91f1=a15_0x3bf424;return _0x54f60b[_0x1e91f1(0x165)](_0x21abd7=>{const _0x1f3d76=_0x1e91f1,_0x268955=CLOUD_PROJECT[_0x21abd7[_0x1f3d76(0x191)]]||undefined,_0x5d70ca=os[_0x1f3d76(0x199)]();return{'path':_0x5d70ca+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x21abd7[_0x1f3d76(0x191)]+'.zip','compress':_0x5d70ca+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x21abd7[_0x1f3d76(0x191)]+'_zip','repository':GIT_HOST+'/api/v4/projects/'+_0x268955[_0x1f3d76(0x185)]+_0x1f3d76(0x1a5)+_0x268955[_0x1f3d76(0x164)]+_0x1f3d76(0x18b)};});},exports['f_scan_jjb_config_json']=function(_0x2150d5){const _0x20c136=a15_0x3bf424;return fs['existsSync'](_0x2150d5+_0x20c136(0x1a4));},exports[a15_0x3bf424(0x1aa)]=function(_0x21c56c){const _0x2c1bee=a15_0x3bf424;let _0x3755b2={};try{_0x3755b2=JSON['parse'](fs[_0x2c1bee(0x1a9)](_0x21c56c+_0x2c1bee(0x1a4))[_0x2c1bee(0x1a8)]());}catch(_0x2dbce2){console['log'](_0x2c1bee(0x19b)),process[_0x2c1bee(0x182)](0x0);}!(_0x2c1bee(0x17a)in _0x3755b2)&&(console['log'](_0x2c1bee(0x16a)),process[_0x2c1bee(0x182)](0x0));!(_0x2c1bee(0x17e)in _0x3755b2)&&(console[_0x2c1bee(0x169)]('【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。'),process['exit'](0x0));!('installResources'in _0x3755b2)&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x16c)),process['exit'](0x0));typeof _0x3755b2[_0x2c1bee(0x17a)]!=='string'&&(console['log'](_0x2c1bee(0x17c)),process[_0x2c1bee(0x182)](0x0));![_0x2c1bee(0x1a7),_0x2c1bee(0x187),_0x2c1bee(0x1a6),_0x2c1bee(0x186)][_0x2c1bee(0x18a)](_0x3755b2[_0x2c1bee(0x17a)])&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x173)),process['exit'](0x0));typeof _0x3755b2[_0x2c1bee(0x17e)]!==_0x2c1bee(0x167)&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x175)),process[_0x2c1bee(0x182)](0x0));![_0x2c1bee(0x17f),'src'][_0x2c1bee(0x18a)](_0x3755b2[_0x2c1bee(0x17e)])&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x181)),process['exit'](0x0));!Array[_0x2c1bee(0x196)](_0x3755b2[_0x2c1bee(0x16f)])&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x177)),process[_0x2c1bee(0x182)](0x0));_0x3755b2[_0x2c1bee(0x16f)][_0x2c1bee(0x168)]===0x0&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x176)),process[_0x2c1bee(0x182)](0x0));const _0xdc9292=exports['f_resolve_install_resources'](_0x3755b2[_0x2c1bee(0x16f)]);return _0xdc9292[_0x2c1bee(0x165)](_0x580b19=>_0x580b19[_0x2c1bee(0x191)])['filter'](_0x3126fa=>![_0x2c1bee(0x16b),_0x2c1bee(0x19e),_0x2c1bee(0x197),'jjb-common-decorator','react-admin-component',_0x2c1bee(0x170)][_0x2c1bee(0x18a)](_0x3126fa))[_0x2c1bee(0x168)]!==0x0&&(console[_0x2c1bee(0x169)](_0x2c1bee(0x16d)),process[_0x2c1bee(0x182)](0x0)),_0x3755b2[_0x2c1bee(0x16f)]=_0xdc9292,_0x3755b2;},exports[a15_0x3bf424(0x19a)]=function(_0x3fdac3,_0x52b550,_0x1dea91){const _0x45fc53=a15_0x3bf424;fs[_0x45fc53(0x19c)](_0x3fdac3+_0x45fc53(0x179),_0x45fc53(0x1a2)+_0x52b550+'\x22,\x22version\x22:\x22'+_0x1dea91+_0x45fc53(0x188));},exports[a15_0x3bf424(0x180)]=function(_0xd7f286=[]){const _0x3852db=a15_0x3bf424,_0x5a08fc=[];return Array[_0x3852db(0x196)](_0xd7f286)&&_0xd7f286['forEach'](_0x293253=>{const _0x54e5f8=_0x3852db;if(Array[_0x54e5f8(0x196)](_0x293253)){const [_0x274ead,_0x32ec5a=[]]=_0x293253;_0x5a08fc[_0x54e5f8(0x17b)]({'name':_0x274ead,'importList':_0x32ec5a});}else _0x5a08fc[_0x54e5f8(0x17b)]({'name':_0x293253,'importList':[]});}),_0x5a08fc;},exports[a15_0x3bf424(0x18c)]=function(_0x476650,_0x167cb3,_0x5390a3){const _0x4119b2=a15_0x3bf424,_0x35060d=JSON['parse'](fs[_0x4119b2(0x1a9)](_0x476650)[_0x4119b2(0x1a8)]());_0x35060d[_0x4119b2(0x183)][_0x167cb3]=_0x5390a3,fs['writeFileSync'](_0x476650,JSON[_0x4119b2(0x18d)](_0x35060d,null,0x2));},exports[a15_0x3bf424(0x19f)]=function(_0x42010a,_0x367022){const _0x52c51d=a15_0x3bf424;fs[_0x52c51d(0x198)](_0x42010a)[_0x52c51d(0x194)](_0x152568=>{const _0x17186a=_0x52c51d,_0x1ff037=_0x42010a+'\x5c'+_0x152568,_0x231bfd=_0x367022+'\x5c'+_0x152568;fs['statSync'](_0x1ff037)[_0x17186a(0x18f)]()?(fs[_0x17186a(0x189)](_0x231bfd),exports[_0x17186a(0x19f)](_0x1ff037,_0x231bfd)):fs['writeFileSync'](_0x231bfd,fs[_0x17186a(0x1a9)](_0x1ff037)[_0x17186a(0x1a8)]());});},exports[a15_0x3bf424(0x163)]=function(_0x57a41a=[],_0x126a90){const _0x24ef0b=a15_0x3bf424;_0x57a41a[_0x24ef0b(0x194)](_0x133baa=>{const _0x31efc8=_0x24ef0b,_0x1fe7c0=_0x126a90+_0x133baa['path'];if(fs[_0x31efc8(0x193)](_0x1fe7c0)){let _0x2d2ba9=fs[_0x31efc8(0x1a9)](_0x1fe7c0)[_0x31efc8(0x1a8)]();_0x133baa[_0x31efc8(0x1a3)][_0x31efc8(0x194)](_0x482c9f=>{const _0x37ba0f=_0x31efc8;_0x2d2ba9=_0x2d2ba9[_0x37ba0f(0x1a3)](_0x482c9f[0x0],_0x482c9f[0x1]);}),fs[_0x31efc8(0x19c)](_0x1fe7c0,_0x2d2ba9);}});};function a15_0x6410(){const _0x315453=['readdirSync','tmpdir','f_create_package_json','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','writeFileSync','5240YyOcyH','jjb-dva-runtime','f_file_copy','statSync','34912240dimPTp','{\x22name\x22:\x22','replace','\x5cjjb.config.json','/repository/archive.zip?private_token=','uniapp','multi','toString','readFileSync','f_scan_jjb_config_json_rules','f_content_replace','token','map','rmdirSync','string','length','log','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','jjb-common','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','【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>。','2808MrFZbv','installResources','vue-unisass-component','2296664xGyqAC','f_pull_git_repository','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','426293KmGGMY','【Error】:[jjb.config.json.installTarget]类型是一个string。','【Error】:[jjb.config.json.installResources]无资源。','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','1532102MiGXVF','\x5cpackage.json','projectType','push','【Error】:[jjb.config.json.projectType]类型是一个string。','3chAKAq','installTarget','node_modules','f_resolve_install_resources','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','exit','dependencies','942290UdlVTe','projectId','micro-spa','spa','\x22,\x22main\x22:\x20\x22index.js\x22}','mkdirSync','includes','&ref=master','f_update_project_package_json','stringify','5EDqxyY','isDirectory','88IHFCxE','name','3758964mvkSfT','existsSync','forEach','./config','isArray','jjb-common-lib'];a15_0x6410=function(){return _0x315453;};return a15_0x6410();}
@@ -1 +1 @@
1
- const a16_0x25904f=a16_0x3e2f;(function(_0x2b60b2,_0xdaee45){const _0x2646cf=a16_0x3e2f,_0x4732a0=_0x2b60b2();while(!![]){try{const _0x67e2c4=parseInt(_0x2646cf(0x106))/0x1+parseInt(_0x2646cf(0x11f))/0x2+-parseInt(_0x2646cf(0x101))/0x3*(-parseInt(_0x2646cf(0x11d))/0x4)+parseInt(_0x2646cf(0x11e))/0x5+parseInt(_0x2646cf(0x112))/0x6+-parseInt(_0x2646cf(0x111))/0x7*(-parseInt(_0x2646cf(0x110))/0x8)+-parseInt(_0x2646cf(0x10a))/0x9;if(_0x67e2c4===_0xdaee45)break;else _0x4732a0['push'](_0x4732a0['shift']());}catch(_0x10559e){_0x4732a0['push'](_0x4732a0['shift']());}}}(a16_0x5452,0xef376));const fs=require('fs'),path=require(a16_0x25904f(0x10f)),utils=require('./util.js');let projectPath='',vesselPath='',commandArr=[];function a16_0x3e2f(_0x305901,_0x262908){const _0x5452ca=a16_0x5452();return a16_0x3e2f=function(_0x3e2f23,_0x24b1a5){_0x3e2f23=_0x3e2f23-0x101;let _0x2017bb=_0x5452ca[_0x3e2f23];return _0x2017bb;},a16_0x3e2f(_0x305901,_0x262908);}const fromFileData={},applicationJson={};function a16_0x5452(){const _0x1b0e75=['/setting.json','routerPath','path','1048zIXnFQ','21287XRLcvy','103950SKuUPr','{\x20path:\x20\x27','slice','split','readFileSync','items','pathAdr','/application','file','from','then','37452MxbgKY','1968510GVLkta','2806624pLZGpD','application','fileType','region','toString','map','315hHjUyC','push','CreatePaths','concat','./project','363530YbMbLX','resolve','./vessel/src','length','23215725VdnKRf','forEach','writeFileSync'];a16_0x5452=function(){return _0x1b0e75;};return a16_0x5452();}module['exports']=(_0x4777b4,_0x456678)=>{const _0x4d4212=a16_0x25904f;commandArr=_0x4777b4[_0x4d4212(0x115)](':'),projectPath=path[_0x4d4212(0x107)](_0x4d4212(0x105)),vesselPath=path['resolve'](_0x4d4212(0x108));let _0x9085a5=vesselPath;_0x456678==='mp'&&(_0x9085a5=vesselPath+_0x4d4212(0x119),utils[_0x4d4212(0x103)](vesselPath,[_0x4d4212(0x120)]));const _0x1dc7fb=commandArr[0x1],_0x476488=JSON['parse'](fs[_0x4d4212(0x116)](projectPath+'/'+_0x1dc7fb+_0x4d4212(0x10d))[_0x4d4212(0x123)]());TileItems(_0x476488[_0x4d4212(0x117)],()=>{const _0x5e044d=_0x4d4212;fromFileData['router'][_0x5e044d(0x10b)](_0x473daa=>{const _0x8468ea=_0x5e044d,_0x29e71d=_0x473daa[_0x8468ea(0x118)][_0x8468ea(0x115)](_0x473daa[_0x8468ea(0x122)]),_0x4bf5c1=_0x29e71d[0x1][_0x8468ea(0x115)]('/'),_0xb8db39=_0x4bf5c1[0x1];!applicationJson[_0xb8db39]&&(applicationJson[_0xb8db39]={'routerConfig':[],'routerPath':[]});applicationJson[_0xb8db39]['routerConfig'][_0x8468ea(0x102)](_0x8468ea(0x113)+_0x473daa[_0x8468ea(0x10f)]+'\x27,\x20component:\x20()\x20=>\x20import(\x27'+_0x473daa[_0x8468ea(0x11a)]+'\x27)\x20}'),applicationJson[_0xb8db39][_0x8468ea(0x10e)][_0x8468ea(0x102)](_0x473daa[_0x8468ea(0x10f)]);let _0x310553=_0x4bf5c1['join']('/');const _0x16f68c=_0x310553[_0x8468ea(0x115)]('/');utils[_0x8468ea(0x103)](_0x9085a5,_0x16f68c[_0x8468ea(0x114)](0x0,_0x16f68c[_0x8468ea(0x109)]-0x1))[_0x8468ea(0x11c)](()=>{const _0xd51fcd=_0x8468ea,_0xb3b6d0=fs['readFileSync'](_0x473daa['pathAdr'])[_0xd51fcd(0x123)]();fs[_0xd51fcd(0x10c)](vesselPath+'/'+_0x310553,_0xb3b6d0);});});});};function TileItems(_0x38ff8a,_0x493b03){const _0x44ece2=a16_0x25904f;_0x38ff8a[_0x44ece2(0x10b)]((_0x101b10,_0x448573)=>{const _0xe44d0b=_0x44ece2,_0x5237f2=_0x101b10[_0xe44d0b(0x122)];_0x101b10[_0xe44d0b(0x11b)][_0xe44d0b(0x10b)]((_0x55baf3,_0x20cff3)=>{const _0x12ef93=_0xe44d0b,_0x20eba8=[];utils['DeepScanner'](projectPath+'/'+_0x5237f2+'/'+_0x55baf3[_0x12ef93(0x11a)],_0x20eba8);const _0x28c668=_0x20eba8[_0x12ef93(0x124)](_0xdf646c=>({'region':_0x5237f2,'pathAdr':_0xdf646c,..._0x55baf3}));!fromFileData[_0x55baf3[_0x12ef93(0x121)]]?fromFileData[_0x55baf3[_0x12ef93(0x121)]]=_0x28c668:fromFileData[_0x55baf3[_0x12ef93(0x121)]]=fromFileData[_0x55baf3['fileType']][_0x12ef93(0x104)](_0x28c668),_0x448573===_0x38ff8a[_0x12ef93(0x109)]-0x1&&_0x20cff3===_0x101b10[_0x12ef93(0x11b)][_0x12ef93(0x109)]-0x1&&_0x493b03();});});}
1
+ const a16_0x125dc2=a16_0x4cd0;function a16_0x15ff(){const _0x49bea8=['1566392AJIlEn','./util.js','exports','join','file','application','./project','\x27)\x20}','CreatePaths','2121102GlKaHz','length','464770lzZMVa','region','push','3484436hshNST','toString','routerConfig','6LfCoAP','parse','readFileSync','/setting.json','then','pathAdr','5gJraxA','16371828NWhlSv','split','186132lnXDDf','49nNfpUe','fileType','894210pvyLQm','resolve','from','{\x20path:\x20\x27','path','slice','forEach','DeepScanner','/application','10goMpEp','concat','router'];a16_0x15ff=function(){return _0x49bea8;};return a16_0x15ff();}function a16_0x4cd0(_0x4166d7,_0x644202){const _0x15ff4f=a16_0x15ff();return a16_0x4cd0=function(_0x4cd005,_0x1448cb){_0x4cd005=_0x4cd005-0xee;let _0x3fba0d=_0x15ff4f[_0x4cd005];return _0x3fba0d;},a16_0x4cd0(_0x4166d7,_0x644202);}(function(_0x5d8433,_0x383ee7){const _0x4f71f6=a16_0x4cd0,_0x298754=_0x5d8433();while(!![]){try{const _0x39f692=parseInt(_0x4f71f6(0x116))/0x1+-parseInt(_0x4f71f6(0x104))/0x2*(parseInt(_0x4f71f6(0x10a))/0x3)+-parseInt(_0x4f71f6(0x107))/0x4*(-parseInt(_0x4f71f6(0x110))/0x5)+parseInt(_0x4f71f6(0x113))/0x6*(parseInt(_0x4f71f6(0x114))/0x7)+parseInt(_0x4f71f6(0xf9))/0x8+parseInt(_0x4f71f6(0x102))/0x9*(parseInt(_0x4f71f6(0xf6))/0xa)+-parseInt(_0x4f71f6(0x111))/0xb;if(_0x39f692===_0x383ee7)break;else _0x298754['push'](_0x298754['shift']());}catch(_0x5ed842){_0x298754['push'](_0x298754['shift']());}}}(a16_0x15ff,0x70820));const fs=require('fs'),path=require(a16_0x125dc2(0xf1)),utils=require(a16_0x125dc2(0xfa));let projectPath='',vesselPath='',commandArr=[];const fromFileData={},applicationJson={};module[a16_0x125dc2(0xfb)]=(_0x102465,_0x5c812a)=>{const _0x128788=a16_0x125dc2;commandArr=_0x102465[_0x128788(0x112)](':'),projectPath=path[_0x128788(0xee)](_0x128788(0xff)),vesselPath=path[_0x128788(0xee)]('./vessel/src');let _0x7fb243=vesselPath;_0x5c812a==='mp'&&(_0x7fb243=vesselPath+_0x128788(0xf5),utils[_0x128788(0x101)](vesselPath,[_0x128788(0xfe)]));const _0x19c89f=commandArr[0x1],_0x42b2ba=JSON[_0x128788(0x10b)](fs[_0x128788(0x10c)](projectPath+'/'+_0x19c89f+_0x128788(0x10d))[_0x128788(0x108)]());TileItems(_0x42b2ba['items'],()=>{const _0x3ffacf=_0x128788;fromFileData[_0x3ffacf(0xf8)][_0x3ffacf(0xf3)](_0x276a03=>{const _0x530314=_0x3ffacf,_0x483e27=_0x276a03[_0x530314(0x10f)][_0x530314(0x112)](_0x276a03[_0x530314(0x105)]),_0x1c1dfd=_0x483e27[0x1]['split']('/'),_0x4dad13=_0x1c1dfd[0x1];!applicationJson[_0x4dad13]&&(applicationJson[_0x4dad13]={'routerConfig':[],'routerPath':[]});applicationJson[_0x4dad13][_0x530314(0x109)][_0x530314(0x106)](_0x530314(0xf0)+_0x276a03[_0x530314(0xf1)]+'\x27,\x20component:\x20()\x20=>\x20import(\x27'+_0x276a03[_0x530314(0xfd)]+_0x530314(0x100)),applicationJson[_0x4dad13]['routerPath'][_0x530314(0x106)](_0x276a03[_0x530314(0xf1)]);let _0x4d29bf=_0x1c1dfd[_0x530314(0xfc)]('/');const _0x608483=_0x4d29bf[_0x530314(0x112)]('/');utils[_0x530314(0x101)](_0x7fb243,_0x608483[_0x530314(0xf2)](0x0,_0x608483['length']-0x1))[_0x530314(0x10e)](()=>{const _0x49b8cb=_0x530314,_0x343661=fs[_0x49b8cb(0x10c)](_0x276a03[_0x49b8cb(0x10f)])['toString']();fs['writeFileSync'](vesselPath+'/'+_0x4d29bf,_0x343661);});});});};function TileItems(_0x5eddc8,_0x27846b){_0x5eddc8['forEach']((_0xf78896,_0x384a15)=>{const _0x1ada60=a16_0x4cd0,_0x3fbc5b=_0xf78896[_0x1ada60(0x105)];_0xf78896[_0x1ada60(0xef)][_0x1ada60(0xf3)]((_0x51d1b3,_0x385999)=>{const _0x56717f=_0x1ada60,_0x47d869=[];utils[_0x56717f(0xf4)](projectPath+'/'+_0x3fbc5b+'/'+_0x51d1b3[_0x56717f(0xfd)],_0x47d869);const _0x4592e0=_0x47d869['map'](_0x804b75=>({'region':_0x3fbc5b,'pathAdr':_0x804b75,..._0x51d1b3}));!fromFileData[_0x51d1b3[_0x56717f(0x115)]]?fromFileData[_0x51d1b3[_0x56717f(0x115)]]=_0x4592e0:fromFileData[_0x51d1b3[_0x56717f(0x115)]]=fromFileData[_0x51d1b3[_0x56717f(0x115)]][_0x56717f(0xf7)](_0x4592e0),_0x384a15===_0x5eddc8[_0x56717f(0x103)]-0x1&&_0x385999===_0xf78896[_0x56717f(0xef)][_0x56717f(0x103)]-0x1&&_0x27846b();});});}
@@ -1 +1 @@
1
- 'use strict';function a17_0x424f(){const _0x13fb6c=['200uPZdoF','replace','zip','readFileSync','【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','18zeiSMi','3794jSUDHC','path','writeFileSync','1318173hXJJSc','common\x5cdva\x5cautomatic\x5cindex.js','error','projectId','resolve','unlinkSync','89630vhAJEf','825ChoOoo','token','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','exists','then','289593felesB','1837205JRPDML','/repository/archive.zip?private_token=','toString','components','\x5ccommon\x5cdva\x5cautomatic\x5cregister.js','common\x5cdva\x5cautomatic','\x5ccommon\x5cdva\x5cautomatic\x5crouter.js','return\x20__planA();','close','-文件下载完毕','CopyFolder','indexOf','forEach','1622187xTLJmi','existsSync','localName','/unzip/','\x5csrc','exports','331ekjwms','4kIJcRI','createWriteStream','-master-','【Error】:\x20未获取到项目\x20','DeleteDirAllFile','uncompress','\x5ccli.dva.register.spa.txt','tmpdir','rmdirSync','common\x5cwebsite\x5cindex.js','common\x5cdva\x5cautomatic\x5c','mkdirSync','25158252OmPZUr','common\x5ctools\x5cindex.js','readdirSync','/api/v4/projects/'];a17_0x424f=function(){return _0x13fb6c;};return a17_0x424f();}const a17_0x4f7192=a17_0xa278;(function(_0xbcb726,_0x3b1fbb){const _0x5df902=a17_0xa278,_0x5bd457=_0xbcb726();while(!![]){try{const _0x5a2356=parseInt(_0x5df902(0x8d))/0x1*(parseInt(_0x5df902(0xa4))/0x2)+-parseInt(_0x5df902(0xa7))/0x3*(-parseInt(_0x5df902(0x8e))/0x4)+-parseInt(_0x5df902(0xb4))/0x5*(parseInt(_0x5df902(0xa3))/0x6)+parseInt(_0x5df902(0x87))/0x7+parseInt(_0x5df902(0x9e))/0x8*(-parseInt(_0x5df902(0xb3))/0x9)+-parseInt(_0x5df902(0xad))/0xa*(parseInt(_0x5df902(0xae))/0xb)+parseInt(_0x5df902(0x9a))/0xc;if(_0x5a2356===_0x3b1fbb)break;else _0x5bd457['push'](_0x5bd457['shift']());}catch(_0xc21758){_0x5bd457['push'](_0x5bd457['shift']());}}}(a17_0x424f,0xc75cb));function a17_0xa278(_0x1441c5,_0x208c82){const _0x424f84=a17_0x424f();return a17_0xa278=function(_0xa27825,_0x304c71){_0xa27825=_0xa27825-0x83;let _0x5253f7=_0x424f84[_0xa27825];return _0x5253f7;},a17_0xa278(_0x1441c5,_0x208c82);}const fs=require('fs'),os=require('os'),path=require(a17_0x4f7192(0xa5)),utils=require('./util'),request=require('request'),compressing=require('compressing'),GIT_TEMP_DIR='jjbAssembly',GIT_HOST='http://192.168.1.242:10985',CLOUD_PROJECT={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117,'localName':'common'},'react-admin-component':{'token':'FT3pKzxpRynFkmddJ9Bs','projectId':0x154,'localName':a17_0x4f7192(0xb7)}};module[a17_0x4f7192(0x8c)]=_0x3ec803=>{const _0x40c3b8=a17_0x4f7192,_0x47d536=_0x3ec803,_0x1ddc82=path[_0x40c3b8(0xab)]('./');try{if(fs['statSync'](_0x1ddc82+_0x40c3b8(0x8b))){const _0x6689d8=_0x1ddc82+_0x40c3b8(0x8b),_0x35830a=CLOUD_PROJECT[_0x47d536]||undefined;if(_0x35830a){const _0x3c2092=os[_0x40c3b8(0x95)](),_0x43d610=_0x3c2092+('/'+GIT_TEMP_DIR+'/'+_0x47d536+'.zip'),_0x1582e7=_0x3c2092+'/'+GIT_TEMP_DIR+_0x40c3b8(0x8a);utils[_0x40c3b8(0x92)](_0x3c2092+'/'+GIT_TEMP_DIR,()=>{const _0x36558e=_0x40c3b8;fs['mkdirSync'](_0x3c2092+'/'+GIT_TEMP_DIR);let _0x3f994c=fs[_0x36558e(0x8f)](_0x43d610);request(GIT_HOST+_0x36558e(0x9d)+_0x35830a[_0x36558e(0xaa)]+_0x36558e(0xb5)+_0x35830a[_0x36558e(0xaf)]+'&ref=master')['pipe'](_0x3f994c)['on'](_0x36558e(0xbc),()=>{const _0x152250=_0x36558e;fs[_0x152250(0x99)](_0x1582e7),compressing[_0x152250(0xa0)][_0x152250(0x93)](_0x43d610,_0x1582e7)[_0x152250(0xb2)](()=>{setTimeout(()=>{const _0x7c0367=a17_0xa278,_0xa76115=fs['readdirSync'](_0x1582e7);_0xa76115[_0x7c0367(0x86)](_0x558442=>{const _0x124dd8=_0x7c0367;if(_0x558442[_0x124dd8(0x85)](_0x124dd8(0x90))!==-0x1){const _0x2d7f6f=_0x6689d8+'\x5c'+_0x35830a[_0x124dd8(0x89)];utils[_0x124dd8(0x92)](_0x2d7f6f,()=>{const _0x3ebde2=_0x124dd8;fs[_0x3ebde2(0x99)](_0x2d7f6f),utils[_0x3ebde2(0x84)](_0x1582e7+_0x558442,_0x2d7f6f),setTimeout(()=>{const _0x3c5b6e=_0x3ebde2,_0x420e12=fs[_0x3c5b6e(0x88)](_0x6689d8+'\x5c'+'application');if(!_0x420e12){const _0x11c4cc=_0x6689d8+'\x5c'+_0x3c5b6e(0x9b),_0x4da8b4=_0x6689d8+'\x5c'+_0x3c5b6e(0x97);let _0x2fc534=fs['readFileSync'](_0x11c4cc)['toString'](),_0x36a8fd=fs[_0x3c5b6e(0xa1)](_0x4da8b4)[_0x3c5b6e(0xb6)]();_0x2fc534=_0x2fc534[_0x3c5b6e(0x9f)](_0x3c5b6e(0xbb),'return\x20process.env;'),_0x36a8fd=_0x36a8fd[_0x3c5b6e(0x9f)](/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,_0x3c5b6e(0xb0)),fs['writeFileSync'](_0x11c4cc,_0x2fc534),fs[_0x3c5b6e(0xa6)](_0x4da8b4,_0x36a8fd),fs[_0x3c5b6e(0xa6)](_0x6689d8+_0x3c5b6e(0xba),fs['readFileSync'](__dirname+'\x5ccli.dva.router.spa.txt')['toString']()),fs[_0x3c5b6e(0xa6)](_0x6689d8+_0x3c5b6e(0xb8),fs[_0x3c5b6e(0xa1)](__dirname+_0x3c5b6e(0x94))[_0x3c5b6e(0xb6)]());}else fs[_0x3c5b6e(0xb1)](_0x6689d8+'\x5c'+_0x3c5b6e(0xa8),_0x128882=>{const _0x1ebe7b=_0x3c5b6e;_0x128882&&(fs[_0x1ebe7b(0x9c)](_0x6689d8+'\x5c'+'common\x5cdva\x5cautomatic')['forEach'](_0x440c3e=>{const _0x27afb7=_0x1ebe7b;fs[_0x27afb7(0xac)](_0x6689d8+'\x5c'+_0x27afb7(0x98)+_0x440c3e);}),fs[_0x1ebe7b(0x96)](_0x6689d8+'\x5c'+_0x1ebe7b(0xb9)));});},0x3e8);});}}),console['log'](_0x47d536+_0x7c0367(0x83));},0x7d0);});});});}else console[_0x40c3b8(0xa9)](_0x40c3b8(0x91)+_0x47d536);}}catch(_0x23f419){console[_0x40c3b8(0xa9)](_0x40c3b8(0xa2));}};
1
+ 'use strict';function a17_0x5ebd(){const _0x9009a8=['common','toString','exists','31935BWIXrK','return\x20process.env;','request','common\x5cdva\x5cautomatic\x5cindex.js','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','common\x5cwebsite\x5cindex.js','exports','rmdirSync','G4HJRsHr9D7Ssmixegw2','\x5ccli.dva.router.spa.txt','5363230eBRcCd','jjbAssembly','.zip','12MTCeAl','readFileSync','replace','-master-','6cvYamv','statSync','http://192.168.1.242:10985','common\x5cdva\x5cautomatic\x5c','\x5ccommon\x5cdva\x5cautomatic\x5crouter.js','/unzip/','createWriteStream','components','token','compressing','FT3pKzxpRynFkmddJ9Bs','unlinkSync','CopyFolder','\x5ccli.dva.register.spa.txt','common\x5ctools\x5cindex.js','forEach','path','uncompress','1FWLmLD','DeleteDirAllFile','localName','readdirSync','error','963626FfqnEe','【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','./util','return\x20__planA();','9WjaXWs','11205106QaPNhx','mkdirSync','1902684bQUSsm','260aHMIYe','1993140YqVqWD','writeFileSync','-文件下载完毕','\x5csrc','5860344aPLTkd'];a17_0x5ebd=function(){return _0x9009a8;};return a17_0x5ebd();}const a17_0x535051=a17_0x57f2;(function(_0x271507,_0x274d97){const _0x40c479=a17_0x57f2,_0x1356c4=_0x271507();while(!![]){try{const _0x359145=-parseInt(_0x40c479(0xfb))/0x1*(parseInt(_0x40c479(0x100))/0x2)+parseInt(_0x40c479(0x111))/0x3*(-parseInt(_0x40c479(0x108))/0x4)+parseInt(_0x40c479(0x109))/0x5*(-parseInt(_0x40c479(0x122))/0x6)+-parseInt(_0x40c479(0x107))/0x7+parseInt(_0x40c479(0x10d))/0x8+-parseInt(_0x40c479(0x104))/0x9*(-parseInt(_0x40c479(0x11b))/0xa)+parseInt(_0x40c479(0x105))/0xb*(parseInt(_0x40c479(0x11e))/0xc);if(_0x359145===_0x274d97)break;else _0x1356c4['push'](_0x1356c4['shift']());}catch(_0x39ee2c){_0x1356c4['push'](_0x1356c4['shift']());}}}(a17_0x5ebd,0x6c3c6));function a17_0x57f2(_0x592af6,_0x52b2ef){const _0x5ebd00=a17_0x5ebd();return a17_0x57f2=function(_0x57f282,_0x4d85e3){_0x57f282=_0x57f282-0xf3;let _0x1535ec=_0x5ebd00[_0x57f282];return _0x1535ec;},a17_0x57f2(_0x592af6,_0x52b2ef);}const fs=require('fs'),os=require('os'),path=require(a17_0x535051(0xf9)),utils=require(a17_0x535051(0x102)),request=require(a17_0x535051(0x113)),compressing=require(a17_0x535051(0x12b)),GIT_TEMP_DIR=a17_0x535051(0x11c),GIT_HOST=a17_0x535051(0x124),CLOUD_PROJECT={'common':{'token':a17_0x535051(0x119),'projectId':0x117,'localName':a17_0x535051(0x10e)},'react-admin-component':{'token':a17_0x535051(0xf3),'projectId':0x154,'localName':a17_0x535051(0x129)}};module[a17_0x535051(0x117)]=_0x417eb6=>{const _0x4a39b0=a17_0x535051,_0x35760c=_0x417eb6,_0x36f84e=path['resolve']('./');try{if(fs[_0x4a39b0(0x123)](_0x36f84e+_0x4a39b0(0x10c))){const _0x167675=_0x36f84e+_0x4a39b0(0x10c),_0x538c15=CLOUD_PROJECT[_0x35760c]||undefined;if(_0x538c15){const _0x2ef9bf=os['tmpdir'](),_0x248c4d=_0x2ef9bf+('/'+GIT_TEMP_DIR+'/'+_0x35760c+_0x4a39b0(0x11d)),_0x4635ab=_0x2ef9bf+'/'+GIT_TEMP_DIR+_0x4a39b0(0x127);utils[_0x4a39b0(0xfc)](_0x2ef9bf+'/'+GIT_TEMP_DIR,()=>{const _0x1feb47=_0x4a39b0;fs['mkdirSync'](_0x2ef9bf+'/'+GIT_TEMP_DIR);let _0x1b00b6=fs[_0x1feb47(0x128)](_0x248c4d);request(GIT_HOST+'/api/v4/projects/'+_0x538c15['projectId']+'/repository/archive.zip?private_token='+_0x538c15[_0x1feb47(0x12a)]+'&ref=master')['pipe'](_0x1b00b6)['on']('close',()=>{const _0x323949=_0x1feb47;fs[_0x323949(0x106)](_0x4635ab),compressing['zip'][_0x323949(0xfa)](_0x248c4d,_0x4635ab)['then'](()=>{setTimeout(()=>{const _0x1eebf9=a17_0x57f2,_0x1ede23=fs[_0x1eebf9(0xfe)](_0x4635ab);_0x1ede23[_0x1eebf9(0xf8)](_0x4811e4=>{const _0x207e6c=_0x1eebf9;if(_0x4811e4['indexOf'](_0x207e6c(0x121))!==-0x1){const _0x22902f=_0x167675+'\x5c'+_0x538c15[_0x207e6c(0xfd)];utils['DeleteDirAllFile'](_0x22902f,()=>{const _0x14f227=_0x207e6c;fs[_0x14f227(0x106)](_0x22902f),utils[_0x14f227(0xf5)](_0x4635ab+_0x4811e4,_0x22902f),setTimeout(()=>{const _0x504eca=_0x14f227,_0xbc67=fs['existsSync'](_0x167675+'\x5c'+'application');if(!_0xbc67){const _0x3b5196=_0x167675+'\x5c'+_0x504eca(0xf7),_0x5eec1b=_0x167675+'\x5c'+_0x504eca(0x116);let _0x5bc80e=fs[_0x504eca(0x11f)](_0x3b5196)[_0x504eca(0x10f)](),_0x4c678e=fs[_0x504eca(0x11f)](_0x5eec1b)['toString']();_0x5bc80e=_0x5bc80e[_0x504eca(0x120)](_0x504eca(0x103),_0x504eca(0x112)),_0x4c678e=_0x4c678e[_0x504eca(0x120)](/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,_0x504eca(0x115)),fs[_0x504eca(0x10a)](_0x3b5196,_0x5bc80e),fs[_0x504eca(0x10a)](_0x5eec1b,_0x4c678e),fs['writeFileSync'](_0x167675+_0x504eca(0x126),fs[_0x504eca(0x11f)](__dirname+_0x504eca(0x11a))['toString']()),fs['writeFileSync'](_0x167675+'\x5ccommon\x5cdva\x5cautomatic\x5cregister.js',fs['readFileSync'](__dirname+_0x504eca(0xf6))[_0x504eca(0x10f)]());}else fs[_0x504eca(0x110)](_0x167675+'\x5c'+_0x504eca(0x114),_0x2963f9=>{const _0x366451=_0x504eca;_0x2963f9&&(fs[_0x366451(0xfe)](_0x167675+'\x5c'+'common\x5cdva\x5cautomatic')[_0x366451(0xf8)](_0x51e96e=>{const _0x199b64=_0x366451;fs[_0x199b64(0xf4)](_0x167675+'\x5c'+_0x199b64(0x125)+_0x51e96e);}),fs[_0x366451(0x118)](_0x167675+'\x5c'+'common\x5cdva\x5cautomatic'));});},0x3e8);});}}),console['log'](_0x35760c+_0x1eebf9(0x10b));},0x7d0);});});});}else console['error']('【Error】:\x20未获取到项目\x20'+_0x35760c);}}catch(_0x2f179d){console[_0x4a39b0(0xff)](_0x4a39b0(0x101));}};
@@ -1 +1 @@
1
- 'use strict';const a18_0x1330c4=a18_0x2562;(function(_0x274506,_0x401136){const _0x5564a1=a18_0x2562,_0x13254a=_0x274506();while(!![]){try{const _0x5cfc2f=-parseInt(_0x5564a1(0x1ef))/0x1*(-parseInt(_0x5564a1(0x1d7))/0x2)+parseInt(_0x5564a1(0x20d))/0x3*(-parseInt(_0x5564a1(0x1e7))/0x4)+-parseInt(_0x5564a1(0x207))/0x5*(parseInt(_0x5564a1(0x1cc))/0x6)+parseInt(_0x5564a1(0x212))/0x7+-parseInt(_0x5564a1(0x1d8))/0x8*(-parseInt(_0x5564a1(0x1d1))/0x9)+-parseInt(_0x5564a1(0x1ca))/0xa+-parseInt(_0x5564a1(0x222))/0xb;if(_0x5cfc2f===_0x401136)break;else _0x13254a['push'](_0x13254a['shift']());}catch(_0x5cc6d3){_0x13254a['push'](_0x13254a['shift']());}}}(a18_0x1197,0x55d10));const fs=require('fs'),os=require('os'),path=require(a18_0x1330c4(0x201)),utils=require(a18_0x1330c4(0x211)),request=require(a18_0x1330c4(0x1ec)),compressing=require('compressing'),GIT_HOST=a18_0x1330c4(0x1f4),GIT_TEMP_DIR=a18_0x1330c4(0x215),CLOUD_PROJECT={'common':{'token':a18_0x1330c4(0x206),'projectId':0x117,'localName':a18_0x1330c4(0x1c6)},'react-admin-component':{'token':a18_0x1330c4(0x220),'projectId':0x154,'localName':'components'}},COMMON_CONTENT_NOR_REPLACE=[{'path':'\x5ctools\x5cindex.js','replace':[[a18_0x1330c4(0x1fd),a18_0x1330c4(0x218)]]},{'path':a18_0x1330c4(0x1dd),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a18_0x1330c4(0x1fc)],['components',a18_0x1330c4(0x218)]]}],COMMON_CONTENT_SPA_REPLACE=[{'path':a18_0x1330c4(0x1d2),'replace':[[a18_0x1330c4(0x1fe),a18_0x1330c4(0x20f)]]}],COMMON_CONTENT_MICRO_REPLACE=[{'path':a18_0x1330c4(0x1d2),'replace':[[a18_0x1330c4(0x1fe),a18_0x1330c4(0x214)]]}],COMPONENTS_CONTENT_REPLACE=[{'path':a18_0x1330c4(0x20b),'replace':[[a18_0x1330c4(0x1f1),a18_0x1330c4(0x223)],[a18_0x1330c4(0x1d3),'jjb-common/crypto'],[a18_0x1330c4(0x1f9),a18_0x1330c4(0x1ce)]]},{'path':a18_0x1330c4(0x1df),'replace':[[a18_0x1330c4(0x1eb),a18_0x1330c4(0x1fa)]]},{'path':a18_0x1330c4(0x1db),'replace':[[a18_0x1330c4(0x1f9),a18_0x1330c4(0x1ce)]]},{'path':a18_0x1330c4(0x219),'replace':[['common/http',a18_0x1330c4(0x223)],['common/tools',a18_0x1330c4(0x1ce)]]},{'path':'\x5cImageCropper\x5cindex.js','replace':[['common/http','jjb-common/http'],[a18_0x1330c4(0x1f9),a18_0x1330c4(0x1ce)]]},{'path':a18_0x1330c4(0x20a),'replace':[['common/http',a18_0x1330c4(0x223)],['common/tools','jjb-common/tools']]},{'path':'\x5cPageHeaderBar\x5cindex.js','replace':[[a18_0x1330c4(0x1eb),a18_0x1330c4(0x1fa)]]},{'path':a18_0x1330c4(0x1ee),'replace':[['common/tools',a18_0x1330c4(0x1ce)]]},{'path':a18_0x1330c4(0x1f6),'replace':[[a18_0x1330c4(0x20e),a18_0x1330c4(0x1e6)],[a18_0x1330c4(0x1f9),a18_0x1330c4(0x1ce)]]}];function uid(){const _0x1ee1f5=a18_0x1330c4;return Math[_0x1ee1f5(0x1da)]()[_0x1ee1f5(0x217)]()[_0x1ee1f5(0x203)](0x2);}module['exports']=_0x4598ef=>{const _0x43758a=a18_0x1330c4,_0xe2e791=path[_0x43758a(0x1f0)]('./'),_0x43eac2=_0x43758a(0x1ff)+_0x4598ef,_0x77be3b='1.0.0',_0x33637a=_0xe2e791+_0x43758a(0x1f3),_0x65ddf7=_0x43758a(0x1d6)+uid(),_0x200b5a=__dirname+'\x5c'+_0x65ddf7,_0x1d905d=_0xe2e791+_0x43758a(0x1c5),_0x1000e4=_0xe2e791+_0x43758a(0x204)+_0x4598ef;try{if(fs['existsSync'](_0x33637a)){const _0x45fde7=CLOUD_PROJECT[_0x4598ef]||undefined;if(_0x45fde7){const _0x471d1e=os[_0x43758a(0x208)](),_0x430d4e=_0x471d1e+'/'+GIT_TEMP_DIR+'/'+_0x4598ef+_0x43758a(0x1e8),_0x4a54a6=_0x471d1e+'/'+GIT_TEMP_DIR+_0x43758a(0x1f8);utils[_0x43758a(0x1e2)](_0x471d1e+'/'+GIT_TEMP_DIR,()=>{const _0x1632e1=_0x43758a;fs['mkdirSync'](_0x471d1e+'/'+GIT_TEMP_DIR);const _0x151351=fs['createWriteStream'](_0x430d4e);request(GIT_HOST+_0x1632e1(0x1e3)+_0x45fde7['projectId']+'/repository/archive.zip?private_token='+_0x45fde7[_0x1632e1(0x1d0)]+'&ref=master')[_0x1632e1(0x1e0)](_0x151351)['on'](_0x1632e1(0x21c),()=>{const _0x3bd494=_0x1632e1;fs[_0x3bd494(0x1de)](_0x4a54a6),compressing[_0x3bd494(0x1d5)]['uncompress'](_0x430d4e,_0x4a54a6)[_0x3bd494(0x1fb)](()=>{setTimeout(()=>{const _0x2637ea=a18_0x2562;fs[_0x2637ea(0x1e9)](_0x4a54a6)[_0x2637ea(0x1cf)](_0x4e6855=>{const _0x4b20db=_0x2637ea;_0x4e6855[_0x4b20db(0x1e4)](_0x4b20db(0x21d))!==-0x1&&utils[_0x4b20db(0x1e2)](_0x33637a+'\x5c'+_0x45fde7[_0x4b20db(0x21a)],()=>{const _0x3d87a4=_0x4b20db;fs[_0x3d87a4(0x1de)](_0x200b5a),utils[_0x3d87a4(0x1e1)](_0x4a54a6+_0x4e6855,_0x200b5a),setTimeout(()=>{const _0x3826ae=_0x3d87a4;if(_0x4598ef===_0x3826ae(0x1c6)){const _0x1121e3=fs[_0x3826ae(0x200)](_0x33637a+'\x5capplication');if(_0x1121e3)rm_rf(_0x200b5a+'\x5cdva\x5cautomatic'),fs[_0x3826ae(0x1ed)](_0x200b5a+_0x3826ae(0x1cd));else{if(get_project_type(_0x1d905d)===_0x3826ae(0x1c7))content_replace(COMMON_CONTENT_SPA_REPLACE,_0x200b5a),fs['writeFileSync'](_0x200b5a+_0x3826ae(0x1f2),fs['readFileSync'](__dirname+_0x3826ae(0x1d9))[_0x3826ae(0x217)]()),fs['writeFileSync'](_0x200b5a+_0x3826ae(0x1ea),fs[_0x3826ae(0x21b)](__dirname+_0x3826ae(0x1d4))['toString']());else get_project_type(_0x1d905d)==='micro-spa'&&(content_replace(COMMON_CONTENT_MICRO_REPLACE,_0x200b5a),fs[_0x3826ae(0x1e5)](_0x200b5a+_0x3826ae(0x1f2),fs[_0x3826ae(0x21b)](__dirname+_0x3826ae(0x210))[_0x3826ae(0x217)]()),fs[_0x3826ae(0x1e5)](_0x200b5a+_0x3826ae(0x1ea),fs[_0x3826ae(0x21b)](__dirname+_0x3826ae(0x1dc))[_0x3826ae(0x217)]()));}content_replace(COMMON_CONTENT_NOR_REPLACE,_0x200b5a);}_0x4598ef===_0x3826ae(0x1cb)&&content_replace(COMPONENTS_CONTENT_REPLACE,_0x200b5a),rm_rf(_0x200b5a+_0x3826ae(0x213)),fs['existsSync'](_0x200b5a+'\x5c.idea')&&fs[_0x3826ae(0x1ed)](_0x200b5a+_0x3826ae(0x213)),fs[_0x3826ae(0x200)](_0x200b5a+'\x5c.gitignore')&&fs['unlinkSync'](_0x200b5a+'\x5c.gitignore'),!fs['existsSync'](_0x1000e4)?fs['mkdirSync'](_0x1000e4):rm_rf(_0x1000e4),utils[_0x3826ae(0x1e1)](_0x200b5a,_0x1000e4,()=>{const _0x2a7575=_0x3826ae;rm_rf(_0x200b5a),fs[_0x2a7575(0x1ed)](_0x200b5a),create_package_json(_0x1000e4,_0x43eac2,_0x77be3b),update_project_package_json(_0x1d905d,_0x43eac2,_0x77be3b),console[_0x2a7575(0x20c)]('【已安装】:'+_0x43eac2+'\x20v'+_0x77be3b);});},0x3e8);});});},0x7d0);});});});}else console[_0x43758a(0x202)](_0x43758a(0x1f5)+_0x4598ef);}}catch(_0x2637bb){console[_0x43758a(0x202)]('【Error】:\x20当前目录不存在src子目录,无法完成pull操作。');}};function a18_0x1197(){const _0x312c78=['\x5ccli.dva.router.saas.txt','./util','4470627ofiQrI','\x5c.idea','return\x20process.env.app;','jjbAssembly','stringify','toString','jjb-react-admin-component','\x5cFileUploader\x5cindex.js','localName','readFileSync','close','-master-','\x22,\x22version\x22:\x22','unlinkSync','FT3pKzxpRynFkmddJ9Bs','length','5934984OIaABH','jjb-common/http','\x5cpackage.json','common','spa','parse','projectType','2881710NUaecd','react-admin-component','1585146HMfYbP','\x5cdva\x5cautomatic','jjb-common/tools','forEach','token','621BRwomB','\x5ctools\x5cindex.js','common/crypto','\x5ccli.dva.register.spa.txt','zip','template_','1363234qZsOvb','43120zESncC','\x5ccli.dva.router.spa.txt','random','\x5cRouterMenu\x5cindex.js','\x5ccli.dva.register.saas.txt','\x5cwebsite\x5cindex.js','mkdirSync','\x5cRejectText\x5cindex.js','pipe','CopyFolder','DeleteDirAllFile','/api/v4/projects/','indexOf','writeFileSync','jjb-common/website','1084WtczwE','.zip','readdirSync','\x5cdva\x5cautomatic\x5cregister.js','common/color','request','rmdirSync','\x5cRouterContainer\x5cindex.js','1gAGWXI','resolve','common/http','\x5cdva\x5cautomatic\x5crouter.js','\x5csrc','http://192.168.1.242:10985','【Error】:\x20未获取到项目\x20','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','isDirectory','/unzip/','common/tools','jjb-common/color','then','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','components','return\x20__planA();','jjb-','existsSync','path','error','substr','\x5cnode_modules\x5cjjb-','replace','G4HJRsHr9D7Ssmixegw2','5QKheWj','tmpdir','{\x22name\x22:\x22','\x5cImageUploader\x5cindex.js','\x5cEditor\x5cindex.js','log','2754PKaXdF','common/website','return\x20process.env;'];a18_0x1197=function(){return _0x312c78;};return a18_0x1197();}function rm_rf(_0x2b429d){const _0xf5ae6c=a18_0x1330c4;if(fs['existsSync'](_0x2b429d)){const _0x5184f6=fs['readdirSync'](_0x2b429d);for(let _0x2a69ec=0x0;_0x2a69ec<_0x5184f6[_0xf5ae6c(0x221)];_0x2a69ec++){const _0x2a9e4e=_0x5184f6[_0x2a69ec],_0xb2cbb8=_0x2b429d+'/'+_0x2a9e4e;fs['statSync'](_0xb2cbb8)[_0xf5ae6c(0x1f7)]()?(rm_rf(_0xb2cbb8),fs[_0xf5ae6c(0x1ed)](_0xb2cbb8)):fs[_0xf5ae6c(0x21f)](_0xb2cbb8);}}}function a18_0x2562(_0x46141c,_0x5bc459){const _0x119736=a18_0x1197();return a18_0x2562=function(_0x2562d9,_0x37b9ed){_0x2562d9=_0x2562d9-0x1c5;let _0x99f48c=_0x119736[_0x2562d9];return _0x99f48c;},a18_0x2562(_0x46141c,_0x5bc459);}function create_package_json(_0x208947,_0x271b04,_0x24d0f6){const _0x33e3de=a18_0x1330c4;fs[_0x33e3de(0x1e5)](_0x208947+'\x5cpackage.json',_0x33e3de(0x209)+_0x271b04+_0x33e3de(0x21e)+_0x24d0f6+'\x22,\x22main\x22:\x20\x22index.js\x22}');}function get_project_type(_0x31cfba){const _0x5ca885=a18_0x1330c4,_0x5e7ebd=JSON[_0x5ca885(0x1c8)](fs['readFileSync'](_0x31cfba)[_0x5ca885(0x217)]());return _0x5e7ebd[_0x5ca885(0x1c9)];}function update_project_package_json(_0x4e9d8f,_0x33b138,_0x4e09c2){const _0x4bb63b=a18_0x1330c4,_0x4d36da=JSON[_0x4bb63b(0x1c8)](fs['readFileSync'](_0x4e9d8f)[_0x4bb63b(0x217)]());_0x4d36da['dependencies'][_0x33b138]=_0x4e09c2,fs[_0x4bb63b(0x1e5)](_0x4e9d8f,JSON[_0x4bb63b(0x216)](_0x4d36da,null,0x2));}function content_replace(_0x329a93=[],_0x3c44fc){const _0x37bff4=a18_0x1330c4;_0x329a93[_0x37bff4(0x1cf)](_0x28171d=>{const _0x5ed692=_0x37bff4,_0x4dab44=_0x3c44fc+_0x28171d[_0x5ed692(0x201)];if(fs[_0x5ed692(0x200)](_0x4dab44)){let _0x5b9c78=fs['readFileSync'](_0x4dab44)[_0x5ed692(0x217)]();_0x28171d['replace'][_0x5ed692(0x1cf)](_0x53d88d=>{const _0x1c7590=_0x5ed692;_0x5b9c78=_0x5b9c78[_0x1c7590(0x205)](_0x53d88d[0x0],_0x53d88d[0x1]);}),fs[_0x5ed692(0x1e5)](_0x4dab44,_0x5b9c78);}});}
1
+ 'use strict';function a18_0x1d7b(){const _0xb72d4f=['\x5cwebsite\x5cindex.js','micro-spa','\x5cnode_modules\x5cjjb-','\x5cRejectText\x5cindex.js','substr','\x5cdva\x5cautomatic\x5cregister.js','common/color','\x5ccli.dva.router.saas.txt','readdirSync','118171Mzfatq','\x5cFileUploader\x5cindex.js','.zip','tmpdir','jjb-common/website','rmdirSync','FT3pKzxpRynFkmddJ9Bs','4nMYlXu','CopyFolder','jjb-common/color','\x5cImageCropper\x5cindex.js','\x22,\x22main\x22:\x20\x22index.js\x22}','120ntPIXe','711912IuDmTH','\x5ccli.dva.register.spa.txt','readFileSync','uncompress','jjb-','compressing','/unzip/','\x5ctools\x5cindex.js','spa','zip','return\x20process.env;','components','\x5cImageUploader\x5cindex.js','toString','G4HJRsHr9D7Ssmixegw2','6CnloaY','createWriteStream','jjb-react-admin-component','statSync','projectId','common/tools','unlinkSync','2016560zpqGeX','http://192.168.1.242:10985','common/website','jjb-common/tools','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','DeleteDirAllFile','path','parse','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','416772kJmbip','224559YwuTCR','writeFileSync','then','/api/v4/projects/','pipe','jjbAssembly','replace','common/crypto','close','2399649oyYoeg','exports','mkdirSync','585595hklfvv','jjb-common/crypto','projectType','jjb-common/http','token','\x5cPageHeaderBar\x5cindex.js','\x5cpackage.json','2HgJWZg','common/http','297CrCFKM','indexOf','forEach','\x5capplication','\x5c.idea','resolve','【已安装】:','dependencies','common','existsSync','return\x20process.env.app;','localName','log','\x5c.gitignore','\x5cdva\x5cautomatic','\x5cRouterContainer\x5cindex.js','/repository/archive.zip?private_token=','\x5cdva\x5cautomatic\x5crouter.js','\x5ccli.dva.register.saas.txt','error'];a18_0x1d7b=function(){return _0xb72d4f;};return a18_0x1d7b();}const a18_0x315fab=a18_0x4f15;(function(_0x3746a0,_0x3a6a79){const _0x30e2a6=a18_0x4f15,_0x5c76f1=_0x3746a0();while(!![]){try{const _0xad279f=parseInt(_0x30e2a6(0x97))/0x1*(parseInt(_0x30e2a6(0xd7))/0x2)+parseInt(_0x30e2a6(0xa4))/0x3*(parseInt(_0x30e2a6(0x9e))/0x4)+-parseInt(_0x30e2a6(0xd0))/0x5*(parseInt(_0x30e2a6(0xb3))/0x6)+parseInt(_0x30e2a6(0xcd))/0x7+parseInt(_0x30e2a6(0xba))/0x8+-parseInt(_0x30e2a6(0xc4))/0x9*(-parseInt(_0x30e2a6(0xa3))/0xa)+-parseInt(_0x30e2a6(0xd9))/0xb*(parseInt(_0x30e2a6(0xc3))/0xc);if(_0xad279f===_0x3a6a79)break;else _0x5c76f1['push'](_0x5c76f1['shift']());}catch(_0x42bc34){_0x5c76f1['push'](_0x5c76f1['shift']());}}}(a18_0x1d7b,0x2f95c));const fs=require('fs'),os=require('os'),path=require(a18_0x315fab(0xc0)),utils=require('./util'),request=require('request'),compressing=require(a18_0x315fab(0xa9)),GIT_HOST=a18_0x315fab(0xbb),GIT_TEMP_DIR=a18_0x315fab(0xc9),CLOUD_PROJECT={'common':{'token':a18_0x315fab(0xb2),'projectId':0x117,'localName':a18_0x315fab(0xe1)},'react-admin-component':{'token':a18_0x315fab(0x9d),'projectId':0x154,'localName':'components'}},COMMON_CONTENT_NOR_REPLACE=[{'path':a18_0x315fab(0xab),'replace':[[a18_0x315fab(0xaf),a18_0x315fab(0xb5)]]},{'path':a18_0x315fab(0xed),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a18_0x315fab(0xbe)],[a18_0x315fab(0xaf),a18_0x315fab(0xb5)]]}],COMMON_CONTENT_SPA_REPLACE=[{'path':'\x5ctools\x5cindex.js','replace':[['return\x20__planA();',a18_0x315fab(0xae)]]}],COMMON_CONTENT_MICRO_REPLACE=[{'path':a18_0x315fab(0xab),'replace':[['return\x20__planA();',a18_0x315fab(0xe3)]]}],COMPONENTS_CONTENT_REPLACE=[{'path':'\x5cEditor\x5cindex.js','replace':[[a18_0x315fab(0xd8),a18_0x315fab(0xd3)],[a18_0x315fab(0xcb),a18_0x315fab(0xd1)],['common/tools',a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0x91),'replace':[['common/color','jjb-common/color']]},{'path':'\x5cRouterMenu\x5cindex.js','replace':[[a18_0x315fab(0xb8),a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0x98),'replace':[[a18_0x315fab(0xd8),'jjb-common/http'],[a18_0x315fab(0xb8),a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0xa1),'replace':[[a18_0x315fab(0xd8),'jjb-common/http'],[a18_0x315fab(0xb8),a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0xb0),'replace':[[a18_0x315fab(0xd8),'jjb-common/http'],['common/tools',a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0xd5),'replace':[[a18_0x315fab(0x94),a18_0x315fab(0xa0)]]},{'path':a18_0x315fab(0xe8),'replace':[[a18_0x315fab(0xb8),a18_0x315fab(0xbd)]]},{'path':a18_0x315fab(0xc2),'replace':[[a18_0x315fab(0xbc),a18_0x315fab(0x9b)],[a18_0x315fab(0xb8),a18_0x315fab(0xbd)]]}];function uid(){const _0x98fe01=a18_0x315fab;return Math['random']()[_0x98fe01(0xb1)]()[_0x98fe01(0x92)](0x2);}module[a18_0x315fab(0xce)]=_0x3e048f=>{const _0xdd646e=a18_0x315fab,_0x535c30=path[_0xdd646e(0xde)]('./'),_0x4f1059=_0xdd646e(0xa8)+_0x3e048f,_0x1ebc52='1.0.0',_0x59b455=_0x535c30+'\x5csrc',_0x58e249='template_'+uid(),_0x4c9bb8=__dirname+'\x5c'+_0x58e249,_0x3a0aaf=_0x535c30+_0xdd646e(0xd6),_0x3aeadb=_0x535c30+_0xdd646e(0x90)+_0x3e048f;try{if(fs[_0xdd646e(0xe2)](_0x59b455)){const _0x3592d7=CLOUD_PROJECT[_0x3e048f]||undefined;if(_0x3592d7){const _0x15f379=os[_0xdd646e(0x9a)](),_0x3d0a7c=_0x15f379+'/'+GIT_TEMP_DIR+'/'+_0x3e048f+_0xdd646e(0x99),_0x119f10=_0x15f379+'/'+GIT_TEMP_DIR+_0xdd646e(0xaa);utils['DeleteDirAllFile'](_0x15f379+'/'+GIT_TEMP_DIR,()=>{const _0x2d11b7=_0xdd646e;fs[_0x2d11b7(0xcf)](_0x15f379+'/'+GIT_TEMP_DIR);const _0x5e053e=fs[_0x2d11b7(0xb4)](_0x3d0a7c);request(GIT_HOST+_0x2d11b7(0xc7)+_0x3592d7[_0x2d11b7(0xb7)]+_0x2d11b7(0xe9)+_0x3592d7[_0x2d11b7(0xd4)]+'&ref=master')[_0x2d11b7(0xc8)](_0x5e053e)['on'](_0x2d11b7(0xcc),()=>{const _0x3016d6=_0x2d11b7;fs[_0x3016d6(0xcf)](_0x119f10),compressing[_0x3016d6(0xad)][_0x3016d6(0xa7)](_0x3d0a7c,_0x119f10)[_0x3016d6(0xc6)](()=>{setTimeout(()=>{const _0x46c6c1=a18_0x4f15;fs[_0x46c6c1(0x96)](_0x119f10)[_0x46c6c1(0xdb)](_0x3308de=>{const _0x1d46b1=_0x46c6c1;_0x3308de[_0x1d46b1(0xda)]('-master-')!==-0x1&&utils[_0x1d46b1(0xbf)](_0x59b455+'\x5c'+_0x3592d7[_0x1d46b1(0xe4)],()=>{const _0x446365=_0x1d46b1;fs[_0x446365(0xcf)](_0x4c9bb8),utils[_0x446365(0x9f)](_0x119f10+_0x3308de,_0x4c9bb8),setTimeout(()=>{const _0x307800=_0x446365;if(_0x3e048f===_0x307800(0xe1)){const _0x2d2d2c=fs[_0x307800(0xe2)](_0x59b455+_0x307800(0xdc));if(_0x2d2d2c)rm_rf(_0x4c9bb8+_0x307800(0xe7)),fs[_0x307800(0x9c)](_0x4c9bb8+_0x307800(0xe7));else{if(get_project_type(_0x3a0aaf)===_0x307800(0xac))content_replace(COMMON_CONTENT_SPA_REPLACE,_0x4c9bb8),fs[_0x307800(0xc5)](_0x4c9bb8+_0x307800(0xea),fs['readFileSync'](__dirname+'\x5ccli.dva.router.spa.txt')[_0x307800(0xb1)]()),fs['writeFileSync'](_0x4c9bb8+_0x307800(0x93),fs[_0x307800(0xa6)](__dirname+_0x307800(0xa5))[_0x307800(0xb1)]());else get_project_type(_0x3a0aaf)===_0x307800(0xee)&&(content_replace(COMMON_CONTENT_MICRO_REPLACE,_0x4c9bb8),fs[_0x307800(0xc5)](_0x4c9bb8+'\x5cdva\x5cautomatic\x5crouter.js',fs[_0x307800(0xa6)](__dirname+_0x307800(0x95))['toString']()),fs['writeFileSync'](_0x4c9bb8+'\x5cdva\x5cautomatic\x5cregister.js',fs[_0x307800(0xa6)](__dirname+_0x307800(0xeb))['toString']()));}content_replace(COMMON_CONTENT_NOR_REPLACE,_0x4c9bb8);}_0x3e048f==='react-admin-component'&&content_replace(COMPONENTS_CONTENT_REPLACE,_0x4c9bb8),rm_rf(_0x4c9bb8+_0x307800(0xdd)),fs[_0x307800(0xe2)](_0x4c9bb8+_0x307800(0xdd))&&fs['rmdirSync'](_0x4c9bb8+'\x5c.idea'),fs[_0x307800(0xe2)](_0x4c9bb8+_0x307800(0xe6))&&fs[_0x307800(0xb9)](_0x4c9bb8+'\x5c.gitignore'),!fs[_0x307800(0xe2)](_0x3aeadb)?fs[_0x307800(0xcf)](_0x3aeadb):rm_rf(_0x3aeadb),utils['CopyFolder'](_0x4c9bb8,_0x3aeadb,()=>{const _0x46023b=_0x307800;rm_rf(_0x4c9bb8),fs[_0x46023b(0x9c)](_0x4c9bb8),create_package_json(_0x3aeadb,_0x4f1059,_0x1ebc52),update_project_package_json(_0x3a0aaf,_0x4f1059,_0x1ebc52),console[_0x46023b(0xe5)](_0x46023b(0xdf)+_0x4f1059+'\x20v'+_0x1ebc52);});},0x3e8);});});},0x7d0);});});});}else console[_0xdd646e(0xec)]('【Error】:\x20未获取到项目\x20'+_0x3e048f);}}catch(_0x2fa139){console[_0xdd646e(0xec)]('【Error】:\x20当前目录不存在src子目录,无法完成pull操作。');}};function a18_0x4f15(_0x3abed3,_0x536944){const _0x1d7b05=a18_0x1d7b();return a18_0x4f15=function(_0x4f157f,_0x1ef226){_0x4f157f=_0x4f157f-0x90;let _0x3371b6=_0x1d7b05[_0x4f157f];return _0x3371b6;},a18_0x4f15(_0x3abed3,_0x536944);}function rm_rf(_0x5b8053){const _0x2a8d69=a18_0x315fab;if(fs[_0x2a8d69(0xe2)](_0x5b8053)){const _0x4da84a=fs[_0x2a8d69(0x96)](_0x5b8053);for(let _0x269570=0x0;_0x269570<_0x4da84a['length'];_0x269570++){const _0x1a30e9=_0x4da84a[_0x269570],_0x53b76f=_0x5b8053+'/'+_0x1a30e9;fs[_0x2a8d69(0xb6)](_0x53b76f)['isDirectory']()?(rm_rf(_0x53b76f),fs[_0x2a8d69(0x9c)](_0x53b76f)):fs['unlinkSync'](_0x53b76f);}}}function create_package_json(_0x105b51,_0x2fb267,_0x537bf8){const _0x520037=a18_0x315fab;fs[_0x520037(0xc5)](_0x105b51+_0x520037(0xd6),'{\x22name\x22:\x22'+_0x2fb267+'\x22,\x22version\x22:\x22'+_0x537bf8+_0x520037(0xa2));}function get_project_type(_0xd26862){const _0x3d8633=a18_0x315fab,_0x18ffff=JSON[_0x3d8633(0xc1)](fs[_0x3d8633(0xa6)](_0xd26862)[_0x3d8633(0xb1)]());return _0x18ffff[_0x3d8633(0xd2)];}function update_project_package_json(_0x5e5763,_0xfab932,_0x1905a0){const _0x7e2b25=a18_0x315fab,_0x587138=JSON[_0x7e2b25(0xc1)](fs[_0x7e2b25(0xa6)](_0x5e5763)[_0x7e2b25(0xb1)]());_0x587138[_0x7e2b25(0xe0)][_0xfab932]=_0x1905a0,fs['writeFileSync'](_0x5e5763,JSON['stringify'](_0x587138,null,0x2));}function content_replace(_0x24b061=[],_0x20cb96){const _0x26febc=a18_0x315fab;_0x24b061[_0x26febc(0xdb)](_0x15283f=>{const _0x5db3b5=_0x26febc,_0x3fc8e6=_0x20cb96+_0x15283f['path'];if(fs['existsSync'](_0x3fc8e6)){let _0x10577b=fs[_0x5db3b5(0xa6)](_0x3fc8e6)['toString']();_0x15283f['replace'][_0x5db3b5(0xdb)](_0x498aa9=>{const _0x2ff497=_0x5db3b5;_0x10577b=_0x10577b[_0x2ff497(0xca)](_0x498aa9[0x0],_0x498aa9[0x1]);}),fs[_0x5db3b5(0xc5)](_0x3fc8e6,_0x10577b);}});}
@@ -1 +1 @@
1
- function a19_0x458a(_0x4bc1ff,_0x13d33e){const _0xf004e=a19_0xf004();return a19_0x458a=function(_0x458a27,_0x560354){_0x458a27=_0x458a27-0x14f;let _0x56a549=_0xf004e[_0x458a27];return _0x56a549;},a19_0x458a(_0x4bc1ff,_0x13d33e);}function a19_0xf004(){const _0x2485cc=['stdin','createInterface','clear','是否确认删除?删除后不可恢复![y/n]:','statSync','311770XJCyHM','取消删除。','stdout','length','path','正在计算项目数,请稍等...','删除完成。','trim','readdirSync','existsSync','rmdirSync','删除文件:','log','8166165wGvKRD','744990gJSfrx','852262XJeyDn','5763168tOsmws','924450LtIJGW','751911pFLsSS','exports','删除文件夹:','15hwjoIL','4rMnXkk','517ZxoyvB','resolve','unlinkSync','exit','无效操作。','8qXKvWR','删除异常:','./progress-bar'];a19_0xf004=function(){return _0x2485cc;};return a19_0xf004();}const a19_0x128306=a19_0x458a;(function(_0x41cf9b,_0x1b65f3){const _0x41f6de=a19_0x458a,_0x198bc0=_0x41cf9b();while(!![]){try{const _0x5cf9a4=parseInt(_0x41f6de(0x150))/0x1+parseInt(_0x41f6de(0x151))/0x2+parseInt(_0x41f6de(0x154))/0x3*(parseInt(_0x41f6de(0x158))/0x4)+-parseInt(_0x41f6de(0x157))/0x5*(parseInt(_0x41f6de(0x153))/0x6)+-parseInt(_0x41f6de(0x14f))/0x7*(parseInt(_0x41f6de(0x15e))/0x8)+-parseInt(_0x41f6de(0x152))/0x9+-parseInt(_0x41f6de(0x166))/0xa*(-parseInt(_0x41f6de(0x159))/0xb);if(_0x5cf9a4===_0x1b65f3)break;else _0x198bc0['push'](_0x198bc0['shift']());}catch(_0x1030dd){_0x198bc0['push'](_0x198bc0['shift']());}}}(a19_0xf004,0x96db1));const fs=require('fs'),path=require(a19_0x128306(0x16a)),readline=require('readline'),ProgressBar=require(a19_0x128306(0x160)),io=readline[a19_0x128306(0x162)]({'input':process[a19_0x128306(0x161)],'output':process[a19_0x128306(0x168)]}),progress=new ProgressBar('删除进度',0x32);let f_total=0x0,f_number=0x0;module[a19_0x128306(0x155)]=function(){const _0x411342=a19_0x128306,_0x3c22f7=path[_0x411342(0x15a)]('./');io['question'](_0x411342(0x164),function(_0x5a1a7c){const _0x11afe0=_0x411342;if(_0x5a1a7c[_0x11afe0(0x16d)]()==='y')console[_0x11afe0(0x172)](_0x11afe0(0x16b)),setTimeout(()=>{setTimeout(()=>{const _0x2026dd=a19_0x458a;console[_0x2026dd(0x163)](),exec(_0x3c22f7),setTimeout(()=>{const _0x22ce44=_0x2026dd;console['log'](_0x22ce44(0x16c)),console[_0x22ce44(0x163)](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x5a1a7c[_0x11afe0(0x16d)]()==='n'?(console[_0x11afe0(0x172)](_0x11afe0(0x167)),process[_0x11afe0(0x15c)](0x0)):(console['log'](_0x11afe0(0x15d)),process[_0x11afe0(0x15c)](0x0));});};function exec(_0x49f420){const _0x21203f=a19_0x128306;if(fs[_0x21203f(0x16f)](_0x49f420)){const _0x29bbea=fs[_0x21203f(0x16e)](_0x49f420);for(let _0x4c3afe=0x0;_0x4c3afe<_0x29bbea['length'];_0x4c3afe++){const _0x3f19d5=_0x29bbea[_0x4c3afe],_0x260bad=_0x49f420+'/'+_0x3f19d5;try{fs[_0x21203f(0x165)](_0x260bad)['isDirectory']()?(exec(_0x260bad),fs[_0x21203f(0x170)](_0x260bad,{'recursive':!![]}),console['log'](_0x21203f(0x156)+_0x260bad)):(fs[_0x21203f(0x15b)](_0x260bad),console[_0x21203f(0x172)](_0x21203f(0x171)+_0x260bad));}catch(_0xb154d8){console[_0x21203f(0x172)](_0x21203f(0x15f)+_0x260bad);}}}}function scanner(_0xd9d739){const _0x320237=a19_0x128306;if(fs['existsSync'](_0xd9d739)){const _0x20dda5=fs[_0x320237(0x16e)](_0xd9d739);for(let _0x1ce2b0=0x0;_0x1ce2b0<_0x20dda5[_0x320237(0x169)];_0x1ce2b0++){const _0x2f33bd=_0x20dda5[_0x1ce2b0],_0x33ca64=_0xd9d739+'/'+_0x2f33bd;try{fs[_0x320237(0x165)](_0x33ca64)['isDirectory']()?(scanner(_0x33ca64),f_total=f_total+0x1):f_total=f_total+0x1;}catch(_0x1683a6){}}}}
1
+ const a19_0x41cb49=a19_0x15c2;function a19_0x1b1c(){const _0x1933a1=['4692560exPTlG','无效操作。','exit','readdirSync','isDirectory','删除文件夹:','statSync','27800fPNYOt','rmdirSync','204065rshNgU','unlinkSync','正在计算项目数,请稍等...','clear','stdout','2009949DlUzti','log','3199UQrJYu','createInterface','./progress-bar','path','6NBKFGr','1881EetPJn','4qaEqva','length','2436FIvcxY','existsSync','trim','13630914MPDRmi','4031190QpGqTH','stdin','question','删除文件:'];a19_0x1b1c=function(){return _0x1933a1;};return a19_0x1b1c();}function a19_0x15c2(_0x5a0072,_0x3bb993){const _0x1b1c68=a19_0x1b1c();return a19_0x15c2=function(_0x15c24a,_0x378360){_0x15c24a=_0x15c24a-0x106;let _0x17c0df=_0x1b1c68[_0x15c24a];return _0x17c0df;},a19_0x15c2(_0x5a0072,_0x3bb993);}(function(_0x3130e4,_0x1c779e){const _0x1d3dc3=a19_0x15c2,_0x3f4733=_0x3130e4();while(!![]){try{const _0x351229=parseInt(_0x1d3dc3(0x11b))/0x1*(parseInt(_0x1d3dc3(0x106))/0x2)+parseInt(_0x1d3dc3(0x120))/0x3*(parseInt(_0x1d3dc3(0x108))/0x4)+parseInt(_0x1d3dc3(0x10e))/0x5+parseInt(_0x1d3dc3(0x10a))/0x6*(-parseInt(_0x1d3dc3(0x122))/0x7)+parseInt(_0x1d3dc3(0x119))/0x8*(-parseInt(_0x1d3dc3(0x107))/0x9)+parseInt(_0x1d3dc3(0x112))/0xa+-parseInt(_0x1d3dc3(0x10d))/0xb;if(_0x351229===_0x1c779e)break;else _0x3f4733['push'](_0x3f4733['shift']());}catch(_0x47a0e6){_0x3f4733['push'](_0x3f4733['shift']());}}}(a19_0x1b1c,0x63499));const fs=require('fs'),path=require(a19_0x41cb49(0x125)),readline=require('readline'),ProgressBar=require(a19_0x41cb49(0x124)),io=readline[a19_0x41cb49(0x123)]({'input':process[a19_0x41cb49(0x10f)],'output':process[a19_0x41cb49(0x11f)]}),progress=new ProgressBar('删除进度',0x32);let f_total=0x0,f_number=0x0;module['exports']=function(){const _0x2a5409=a19_0x41cb49,_0x4df90f=path['resolve']('./');io[_0x2a5409(0x110)]('是否确认删除?删除后不可恢复![y/n]:',function(_0x578149){const _0x3d0304=_0x2a5409;if(_0x578149[_0x3d0304(0x10c)]()==='y')console[_0x3d0304(0x121)](_0x3d0304(0x11d)),setTimeout(()=>{setTimeout(()=>{console['clear'](),exec(_0x4df90f),setTimeout(()=>{const _0x900648=a19_0x15c2;console['log']('删除完成。'),console[_0x900648(0x11e)](),process['exit'](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x578149[_0x3d0304(0x10c)]()==='n'?(console['log']('取消删除。'),process['exit'](0x0)):(console[_0x3d0304(0x121)](_0x3d0304(0x113)),process[_0x3d0304(0x114)](0x0));});};function exec(_0x3afe25){const _0x2c19f4=a19_0x41cb49;if(fs[_0x2c19f4(0x10b)](_0x3afe25)){const _0x4d1b88=fs[_0x2c19f4(0x115)](_0x3afe25);for(let _0x48677f=0x0;_0x48677f<_0x4d1b88[_0x2c19f4(0x109)];_0x48677f++){const _0x2c1378=_0x4d1b88[_0x48677f],_0x3a66ad=_0x3afe25+'/'+_0x2c1378;try{fs[_0x2c19f4(0x118)](_0x3a66ad)[_0x2c19f4(0x116)]()?(exec(_0x3a66ad),fs[_0x2c19f4(0x11a)](_0x3a66ad,{'recursive':!![]}),console[_0x2c19f4(0x121)](_0x2c19f4(0x117)+_0x3a66ad)):(fs[_0x2c19f4(0x11c)](_0x3a66ad),console['log'](_0x2c19f4(0x111)+_0x3a66ad));}catch(_0x1d2192){console['log']('删除异常:'+_0x3a66ad);}}}}function scanner(_0x5c634f){const _0x2d1211=a19_0x41cb49;if(fs['existsSync'](_0x5c634f)){const _0x1fbac8=fs[_0x2d1211(0x115)](_0x5c634f);for(let _0x26dcd1=0x0;_0x26dcd1<_0x1fbac8['length'];_0x26dcd1++){const _0x2df968=_0x1fbac8[_0x26dcd1],_0x56aa9a=_0x5c634f+'/'+_0x2df968;try{fs[_0x2d1211(0x118)](_0x56aa9a)[_0x2d1211(0x116)]()?(scanner(_0x56aa9a),f_total=f_total+0x1):f_total=f_total+0x1;}catch(_0x598538){}}}}
@@ -1 +1 @@
1
- function a20_0x5630(_0x1e7051,_0x48103f){const _0x2002e2=a20_0x2002();return a20_0x5630=function(_0x5630f1,_0x2f65e0){_0x5630f1=_0x5630f1-0x176;let _0x39fb5b=_0x2002e2[_0x5630f1];return _0x39fb5b;},a20_0x5630(_0x1e7051,_0x48103f);}function a20_0x2002(){const _0x1adaba=['total','792000ZjzwQm','410411jFNnAV','1054206GLYhGA','4118082XYfcaX','2885589HPzABp','length','description','4VMTqJX','72QlLKvu','1108636UwTHrQ','completed','1339845YCOiVU','stdout','toFixed'];a20_0x2002=function(){return _0x1adaba;};return a20_0x2002();}const a20_0xd9c550=a20_0x5630;(function(_0x25185d,_0x4785ea){const _0x217e5f=a20_0x5630,_0x54a2ff=_0x25185d();while(!![]){try{const _0x2c0cbd=-parseInt(_0x217e5f(0x178))/0x1+-parseInt(_0x217e5f(0x180))/0x2+parseInt(_0x217e5f(0x177))/0x3+-parseInt(_0x217e5f(0x17e))/0x4*(parseInt(_0x217e5f(0x182))/0x5)+parseInt(_0x217e5f(0x17a))/0x6+-parseInt(_0x217e5f(0x17b))/0x7+-parseInt(_0x217e5f(0x17f))/0x8*(-parseInt(_0x217e5f(0x179))/0x9);if(_0x2c0cbd===_0x4785ea)break;else _0x54a2ff['push'](_0x54a2ff['shift']());}catch(_0x5df85d){_0x54a2ff['push'](_0x54a2ff['shift']());}}}(a20_0x2002,0x57ccc));const slog=require('single-line-log')[a20_0xd9c550(0x183)];function ProgressBar(_0x18c896,_0x2e34bc){const _0x53b63d=a20_0xd9c550;this[_0x53b63d(0x17d)]=_0x18c896||'Progress',this[_0x53b63d(0x17c)]=_0x2e34bc||0x19,this['render']=function(_0x36ac68){const _0x2ecbd6=_0x53b63d;let _0x535519;const _0x1cc5d5=(_0x36ac68[_0x2ecbd6(0x181)]/_0x36ac68[_0x2ecbd6(0x176)])[_0x2ecbd6(0x184)](0x4),_0xedf40f=Math['floor'](_0x1cc5d5*this[_0x2ecbd6(0x17c)]);let _0x3d3730='';for(_0x535519=0x0;_0x535519<_0xedf40f;_0x535519++){_0x3d3730+='█';}let _0x408dee='';for(_0x535519=0x0;_0x535519<this[_0x2ecbd6(0x17c)]-_0xedf40f;_0x535519++){_0x408dee+='░';}const _0x47abe6=this['description']+':\x20'+(0x64*_0x1cc5d5)['toFixed'](0x2)+'%\x20'+_0x3d3730+_0x408dee+'\x20'+_0x36ac68[_0x2ecbd6(0x181)]+'/'+_0x36ac68['total'];slog(_0x47abe6);};}module['exports']=ProgressBar;
1
+ const a20_0x5e2987=a20_0x2b86;(function(_0x1eb030,_0x1737fe){const _0x18bd44=a20_0x2b86,_0x2572b7=_0x1eb030();while(!![]){try{const _0x5fe529=-parseInt(_0x18bd44(0x1b7))/0x1*(-parseInt(_0x18bd44(0x1aa))/0x2)+parseInt(_0x18bd44(0x1ac))/0x3*(-parseInt(_0x18bd44(0x1a8))/0x4)+parseInt(_0x18bd44(0x1b6))/0x5*(-parseInt(_0x18bd44(0x1a4))/0x6)+-parseInt(_0x18bd44(0x1ad))/0x7*(-parseInt(_0x18bd44(0x1a7))/0x8)+-parseInt(_0x18bd44(0x1b1))/0x9+parseInt(_0x18bd44(0x1af))/0xa+parseInt(_0x18bd44(0x1a9))/0xb;if(_0x5fe529===_0x1737fe)break;else _0x2572b7['push'](_0x2572b7['shift']());}catch(_0x24c9bb){_0x2572b7['push'](_0x2572b7['shift']());}}}(a20_0xbd1a,0x38069));const slog=require(a20_0x5e2987(0x1ae))[a20_0x5e2987(0x1b0)];function a20_0xbd1a(){const _0x1e4232=['1524rQCAaZ','toFixed','completed','232816wtVzss','4RWVIEF','1829245pukyCQ','578XAdiyE','Progress','469509GItIcW','7IFRUft','single-line-log','3393140nboIBu','stdout','1862019YamoqI','description','floor','exports','render','2075LQganD','566gkAcXT','length','total'];a20_0xbd1a=function(){return _0x1e4232;};return a20_0xbd1a();}function a20_0x2b86(_0x5d0238,_0x3b15c0){const _0xbd1a7c=a20_0xbd1a();return a20_0x2b86=function(_0x2b8650,_0x488531){_0x2b8650=_0x2b8650-0x1a2;let _0x546308=_0xbd1a7c[_0x2b8650];return _0x546308;},a20_0x2b86(_0x5d0238,_0x3b15c0);}function ProgressBar(_0x20d20f,_0x593fcb){const _0x40e9b=a20_0x5e2987;this[_0x40e9b(0x1b2)]=_0x20d20f||_0x40e9b(0x1ab),this[_0x40e9b(0x1a2)]=_0x593fcb||0x19,this[_0x40e9b(0x1b5)]=function(_0x2acf9b){const _0x36f0cd=_0x40e9b;let _0x51750a;const _0x547b80=(_0x2acf9b[_0x36f0cd(0x1a6)]/_0x2acf9b[_0x36f0cd(0x1a3)])[_0x36f0cd(0x1a5)](0x4),_0x41b7e2=Math[_0x36f0cd(0x1b3)](_0x547b80*this[_0x36f0cd(0x1a2)]);let _0x50bcc0='';for(_0x51750a=0x0;_0x51750a<_0x41b7e2;_0x51750a++){_0x50bcc0+='█';}let _0x262e04='';for(_0x51750a=0x0;_0x51750a<this[_0x36f0cd(0x1a2)]-_0x41b7e2;_0x51750a++){_0x262e04+='░';}const _0x85c481=this[_0x36f0cd(0x1b2)]+':\x20'+(0x64*_0x547b80)[_0x36f0cd(0x1a5)](0x2)+'%\x20'+_0x50bcc0+_0x262e04+'\x20'+_0x2acf9b['completed']+'/'+_0x2acf9b['total'];slog(_0x85c481);};}module[a20_0x5e2987(0x1b4)]=ProgressBar;
package/src/old/util.js CHANGED
@@ -1 +1 @@
1
- 'use strict';const a21_0x2cc926=a21_0x34e9;function a21_0x48ff(){const _0x13dc5b=['error','statSync','rmdirSync','createReadStream','close','existsSync','329dqmeyt','unlinkSync','join','read\x20error','1014795HRWQGL','pipe','135OlWRIm','1806420tlHXai','push','write\x20error','10664792xvDMQk','DeleteDirAllFile','stat','172940euSvpC','createWriteStream','mkdirSync','CreatePaths','2PUiWok','mkdir','113610wKXuMv','CopyFile','CopyFolder','isDirectory','path','length','forEach','45270030PVyCep','341002kcmMmr','DeepScanner','log'];a21_0x48ff=function(){return _0x13dc5b;};return a21_0x48ff();}(function(_0x3d99da,_0x1fa838){const _0x935904=a21_0x34e9,_0x355b95=_0x3d99da();while(!![]){try{const _0x7c870=parseInt(_0x935904(0x13c))/0x1*(parseInt(_0x935904(0x146))/0x2)+-parseInt(_0x935904(0x132))/0x3+parseInt(_0x935904(0x138))/0x4*(-parseInt(_0x935904(0x131))/0x5)+parseInt(_0x935904(0x13e))/0x6*(-parseInt(_0x935904(0x12b))/0x7)+-parseInt(_0x935904(0x135))/0x8+-parseInt(_0x935904(0x12f))/0x9+parseInt(_0x935904(0x145))/0xa;if(_0x7c870===_0x1fa838)break;else _0x355b95['push'](_0x355b95['shift']());}catch(_0x2ccf1c){_0x355b95['push'](_0x355b95['shift']());}}}(a21_0x48ff,0xba361));const fs=require('fs'),path=require(a21_0x2cc926(0x142));function a21_0x34e9(_0x796c56,_0x4ff9ee){const _0x48ff2c=a21_0x48ff();return a21_0x34e9=function(_0x34e9b9,_0x55be82){_0x34e9b9=_0x34e9b9-0x123;let _0x1de05e=_0x48ff2c[_0x34e9b9];return _0x1de05e;},a21_0x34e9(_0x796c56,_0x4ff9ee);}exports[a21_0x2cc926(0x136)]=(_0x5a1358,_0x766319)=>{const _0x507251=a21_0x2cc926;let _0x4b27cb=[];const _0x220d05=this;fs[_0x507251(0x12a)](_0x5a1358)?(_0x4b27cb=fs['readdirSync'](_0x5a1358),_0x4b27cb['forEach'](function(_0x42e80d,_0x281161){const _0x359e6c=_0x507251;let _0x109f5e=_0x5a1358+'/'+_0x42e80d;fs[_0x359e6c(0x126)](_0x109f5e)[_0x359e6c(0x141)]()?_0x220d05[_0x359e6c(0x136)](_0x109f5e):fs[_0x359e6c(0x12c)](_0x109f5e);}),fs[_0x507251(0x127)](_0x5a1358),_0x766319&&_0x766319()):_0x766319&&_0x766319();},exports[a21_0x2cc926(0x140)]=(_0x130555,_0x213733,_0x424473)=>{const _0x3b51cd=this;fs['readdir'](_0x130555,function(_0x3d6064,_0x233122){const _0x428636=a21_0x34e9;let _0x2575f1=0x0;const _0x385ba2=function(){const _0x3d277b=a21_0x34e9;++_0x2575f1===_0x233122[_0x3d277b(0x143)]&&_0x424473&&_0x424473();};if(_0x3d6064){_0x385ba2();return;}_0x233122[_0x428636(0x144)](function(_0xa08bf6){const _0x58c8f9=_0x428636,_0x7ef188=path[_0x58c8f9(0x12d)](_0x130555,_0xa08bf6),_0x589a03=path[_0x58c8f9(0x12d)](_0x213733,_0xa08bf6);fs[_0x58c8f9(0x137)](_0x7ef188,function(_0xc737cd,_0x2f4226){const _0x2fb719=_0x58c8f9;_0x2f4226[_0x2fb719(0x141)]()?fs[_0x2fb719(0x13d)](_0x589a03,function(_0x5853f7){const _0xa640f0=_0x2fb719;if(_0x5853f7){console[_0xa640f0(0x124)](_0x5853f7);return;}_0x3b51cd['CopyFolder'](_0x7ef188,_0x589a03,_0x385ba2);}):_0x3b51cd[_0x2fb719(0x13f)](_0x7ef188,_0x589a03,_0x385ba2);});}),_0x233122['length']===0x0&&_0x424473&&_0x424473();});},exports['CopyFile']=(_0x5175a9,_0x20001c,_0x4d747c)=>{const _0x2ccaba=a21_0x2cc926,_0x225739=fs[_0x2ccaba(0x128)](_0x5175a9);_0x225739['on'](_0x2ccaba(0x125),function(_0x200700){const _0x45b978=_0x2ccaba;_0x200700&&console[_0x45b978(0x124)](_0x45b978(0x12e),_0x5175a9),_0x4d747c&&_0x4d747c(_0x200700);});const _0x31833b=fs[_0x2ccaba(0x139)](_0x20001c);_0x31833b['on'](_0x2ccaba(0x125),function(_0x5e2c68){const _0x4c0400=_0x2ccaba;_0x5e2c68&&console[_0x4c0400(0x124)](_0x4c0400(0x134),_0x20001c),_0x4d747c&&_0x4d747c(_0x5e2c68);}),_0x31833b['on'](_0x2ccaba(0x129),function(_0x519040){_0x4d747c&&_0x4d747c(_0x519040);}),_0x225739[_0x2ccaba(0x130)](_0x31833b);},exports[a21_0x2cc926(0x123)]=(_0x4a0407,_0x148523)=>{const _0x5e8173=this,_0x44cc8b=fs['readdirSync'](_0x4a0407);_0x44cc8b['forEach'](_0x1fc4e7=>{const _0x2122c8=a21_0x34e9,_0xfd5c92=_0x4a0407+'/'+_0x1fc4e7,_0x3411df=fs[_0x2122c8(0x126)](_0xfd5c92);_0x3411df['isDirectory']()?_0x5e8173[_0x2122c8(0x123)](_0xfd5c92,_0x148523):_0x148523[_0x2122c8(0x133)](_0xfd5c92);});},exports[a21_0x2cc926(0x13b)]=(_0x5aacbc,_0x502810)=>{return new Promise(_0x15a72d=>{const _0x2ba42e=a21_0x34e9,_0x4feb1a=[];_0x502810[_0x2ba42e(0x144)]((_0x16d52a,_0x42d8b3)=>{const _0x3c88df=_0x2ba42e,_0x34047d=_0x5aacbc+'/'+_0x4feb1a[_0x3c88df(0x12d)]('/')+'/'+_0x16d52a;try{const _0x33c1a3=fs['statSync'](_0x34047d);_0x33c1a3[_0x3c88df(0x141)]()?_0x42d8b3===_0x502810[_0x3c88df(0x143)]-0x1&&_0x15a72d():(fs[_0x3c88df(0x13a)](_0x34047d),_0x42d8b3===_0x502810[_0x3c88df(0x143)]-0x1&&_0x15a72d());}catch(_0x2a6950){fs[_0x3c88df(0x13a)](_0x34047d),_0x42d8b3===_0x502810[_0x3c88df(0x143)]-0x1&&_0x15a72d();}_0x4feb1a[_0x3c88df(0x133)](_0x16d52a);});});};
1
+ 'use strict';const a21_0x30e835=a21_0x2fc6;function a21_0x2fc6(_0x275e5d,_0x343e8e){const _0x213299=a21_0x2132();return a21_0x2fc6=function(_0x2fc6ac,_0x6ede0e){_0x2fc6ac=_0x2fc6ac-0x14c;let _0x35949d=_0x213299[_0x2fc6ac];return _0x35949d;},a21_0x2fc6(_0x275e5d,_0x343e8e);}(function(_0x54bf1e,_0x28b337){const _0x113558=a21_0x2fc6,_0x5f3846=_0x54bf1e();while(!![]){try{const _0x2af043=-parseInt(_0x113558(0x15e))/0x1*(-parseInt(_0x113558(0x165))/0x2)+-parseInt(_0x113558(0x16e))/0x3*(-parseInt(_0x113558(0x16d))/0x4)+parseInt(_0x113558(0x153))/0x5+parseInt(_0x113558(0x167))/0x6*(parseInt(_0x113558(0x16c))/0x7)+-parseInt(_0x113558(0x164))/0x8*(-parseInt(_0x113558(0x15d))/0x9)+-parseInt(_0x113558(0x15f))/0xa+-parseInt(_0x113558(0x159))/0xb*(parseInt(_0x113558(0x152))/0xc);if(_0x2af043===_0x28b337)break;else _0x5f3846['push'](_0x5f3846['shift']());}catch(_0x240f5f){_0x5f3846['push'](_0x5f3846['shift']());}}}(a21_0x2132,0xea52f));function a21_0x2132(){const _0x405df8=['CopyFolder','readdirSync','rmdirSync','DeleteDirAllFile','pipe','25002098DsDZHl','push','DeepScanner','mkdir','9sBZUIx','1049jGvNbR','11735950QYpyVd','createReadStream','isDirectory','mkdirSync','readdir','7653184xWqaJa','3170jUpqBZ','statSync','2703234ygbzEm','join','forEach','createWriteStream','existsSync','21REpQmc','1012slhUlt','1758XgAZov','unlinkSync','length','read\x20error','log','path','error','CopyFile','12vDtDNl','1435580LmZsjF'];a21_0x2132=function(){return _0x405df8;};return a21_0x2132();}const fs=require('fs'),path=require(a21_0x30e835(0x14f));exports['DeleteDirAllFile']=(_0x2d90ea,_0xad7d15)=>{const _0x689cb7=a21_0x30e835;let _0x151ff2=[];const _0x26d9c2=this;fs[_0x689cb7(0x16b)](_0x2d90ea)?(_0x151ff2=fs[_0x689cb7(0x155)](_0x2d90ea),_0x151ff2[_0x689cb7(0x169)](function(_0x104b7e,_0x56ecab){const _0x4ef3c1=_0x689cb7;let _0xfb0fab=_0x2d90ea+'/'+_0x104b7e;fs[_0x4ef3c1(0x166)](_0xfb0fab)[_0x4ef3c1(0x161)]()?_0x26d9c2[_0x4ef3c1(0x157)](_0xfb0fab):fs[_0x4ef3c1(0x16f)](_0xfb0fab);}),fs[_0x689cb7(0x156)](_0x2d90ea),_0xad7d15&&_0xad7d15()):_0xad7d15&&_0xad7d15();},exports[a21_0x30e835(0x154)]=(_0x36b2be,_0x1cdd9c,_0x29d3c4)=>{const _0x4a6962=a21_0x30e835,_0x7f86ac=this;fs[_0x4a6962(0x163)](_0x36b2be,function(_0x18272d,_0x526847){const _0x43a915=_0x4a6962;let _0x1e3280=0x0;const _0x5bd2e6=function(){const _0x3b578b=a21_0x2fc6;++_0x1e3280===_0x526847[_0x3b578b(0x14c)]&&_0x29d3c4&&_0x29d3c4();};if(_0x18272d){_0x5bd2e6();return;}_0x526847[_0x43a915(0x169)](function(_0x4922e7){const _0x37f9db=_0x43a915,_0x4dff12=path[_0x37f9db(0x168)](_0x36b2be,_0x4922e7),_0x2c1426=path['join'](_0x1cdd9c,_0x4922e7);fs['stat'](_0x4dff12,function(_0x32561f,_0x29948e){const _0x6059b=_0x37f9db;_0x29948e[_0x6059b(0x161)]()?fs[_0x6059b(0x15c)](_0x2c1426,function(_0x51575c){const _0x2f8fff=_0x6059b;if(_0x51575c){console[_0x2f8fff(0x14e)](_0x51575c);return;}_0x7f86ac['CopyFolder'](_0x4dff12,_0x2c1426,_0x5bd2e6);}):_0x7f86ac[_0x6059b(0x151)](_0x4dff12,_0x2c1426,_0x5bd2e6);});}),_0x526847[_0x43a915(0x14c)]===0x0&&_0x29d3c4&&_0x29d3c4();});},exports[a21_0x30e835(0x151)]=(_0x167267,_0x44b67d,_0x348726)=>{const _0x3573ba=a21_0x30e835,_0x506bcb=fs[_0x3573ba(0x160)](_0x167267);_0x506bcb['on'](_0x3573ba(0x150),function(_0x540861){const _0x1b2384=_0x3573ba;_0x540861&&console[_0x1b2384(0x14e)](_0x1b2384(0x14d),_0x167267),_0x348726&&_0x348726(_0x540861);});const _0x3b0f96=fs[_0x3573ba(0x16a)](_0x44b67d);_0x3b0f96['on'](_0x3573ba(0x150),function(_0x4496e3){_0x4496e3&&console['log']('write\x20error',_0x44b67d),_0x348726&&_0x348726(_0x4496e3);}),_0x3b0f96['on']('close',function(_0x246d53){_0x348726&&_0x348726(_0x246d53);}),_0x506bcb[_0x3573ba(0x158)](_0x3b0f96);},exports[a21_0x30e835(0x15b)]=(_0x422926,_0x30cfc7)=>{const _0x42a72c=a21_0x30e835,_0xd7b805=this,_0x1e5753=fs[_0x42a72c(0x155)](_0x422926);_0x1e5753[_0x42a72c(0x169)](_0x3f8d3b=>{const _0x280f35=_0x42a72c,_0x1cece5=_0x422926+'/'+_0x3f8d3b,_0x22a7d8=fs[_0x280f35(0x166)](_0x1cece5);_0x22a7d8[_0x280f35(0x161)]()?_0xd7b805[_0x280f35(0x15b)](_0x1cece5,_0x30cfc7):_0x30cfc7[_0x280f35(0x15a)](_0x1cece5);});},exports['CreatePaths']=(_0x516ccf,_0x359841)=>{return new Promise(_0x10802c=>{const _0x21e048=a21_0x2fc6,_0x7ad529=[];_0x359841[_0x21e048(0x169)]((_0x1a05c3,_0x219d1f)=>{const _0x3dc1e4=_0x21e048,_0x5cb0c1=_0x516ccf+'/'+_0x7ad529[_0x3dc1e4(0x168)]('/')+'/'+_0x1a05c3;try{const _0x3fcf64=fs[_0x3dc1e4(0x166)](_0x5cb0c1);_0x3fcf64[_0x3dc1e4(0x161)]()?_0x219d1f===_0x359841[_0x3dc1e4(0x14c)]-0x1&&_0x10802c():(fs[_0x3dc1e4(0x162)](_0x5cb0c1),_0x219d1f===_0x359841['length']-0x1&&_0x10802c());}catch(_0x356f6e){fs[_0x3dc1e4(0x162)](_0x5cb0c1),_0x219d1f===_0x359841['length']-0x1&&_0x10802c();}_0x7ad529[_0x3dc1e4(0x15a)](_0x1a05c3);});});};