jjb-cmd 2.1.13 → 2.1.14

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.
@@ -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,142 @@
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
+ 'components'
75
+ ].includes(args)) {
76
+ if ([
77
+ 'v',
78
+ 'version'
79
+ ].includes(args)) {
80
+ require('../src/new/cmd.version/index.js')();
81
+ }
82
+ if ([
83
+ 'server',
84
+ 'components'
85
+ ].includes(args)) {
86
+ require('../src/new/cmd.reglist/index.js')(args);
87
+ }
88
+ if ([ 'latest' ].includes(args)) {
89
+ require('../src/new/cmd.push/index.js')('latest');
90
+ }
91
+ } else if (['java'].includes(args)) {
92
+ require('../src/new/cmd.push/java.js')(process.argv.splice(3));
93
+ } else {
94
+ console.log(`无效的选项‘${args}’。`);
95
+ process.exit(0);
96
+ }
97
+ } else {
98
+ require('../src/new/cmd.push/index.js')(null);
99
+ }
100
+ });
101
+
102
+ // reglist 命令
103
+ commander.command('reg [args]').description('-- 查询注册表').action(a => {
104
+ // require('../src/new/cmd.reglist/index.js')();
105
+ });
106
+
107
+ // init 命令
108
+ commander.command('init -- <templateName>').description('-- 初始化模板').action(stdin => {
109
+ if ([
110
+ 'lib',
111
+ 'react-component',
112
+ 'micro-app',
113
+ 'micro-app-ts'
114
+ ].includes(stdin)) {
115
+ require('../src/new/cmd.init/index.js')(stdin);
116
+ } else {
117
+ console.log(`初始化失败,未能正确输入模板类型,仅支持(lib,react-component,micro-app,micro-app-ts)模板。`);
118
+ process.exit(0);
119
+ }
120
+ });
121
+
122
+ // rm-rf 命令
123
+ commander.command('rm-rf').description('-- 删除全部').action(() => {
124
+ require('../src/new/cmd.rm-rf/index.js')();
125
+ });
126
+
127
+ // install 安装
128
+ commander.command('install').description('-- 安装').action(() => {
129
+ require('../src/new/cmd.install/index.js')();
130
+ });
131
+
132
+ // install 安装
133
+ commander.command('install.app').description('-- 安装').action(stdin => {
134
+ require('../src/new/cmd.install.app/index.js')(stdin);
135
+ });
136
+
137
+ //从服务端更新本地文件
138
+ commander.command('refresh').description('-- 更新').action(stdin => {
139
+ require('../src/new/cmd.refresh/index.js')(stdin);
140
+ });
141
+
142
+ 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.14",
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_0x4195e8=a0_0x3b50;function a0_0x1a3a(){const _0x2cf9f7=['Auth\x20Fail!','data','log','Auth\x20Success!','13PuBJUA','../cmd.install/config','30UeSIuZ','join','589039WoSwrl','10973504PCcwcZ','path','unlinkSync','../../../.auth','348tmQJbj','post','148694VPwjFC','Auth\x20NetWork\x20Fail!','4938588LNxKvk','28KpiMle','429155zSqcOS','existsSync','/api/auth','3697749JBKrTV','127004ndpEPP','axios'];a0_0x1a3a=function(){return _0x2cf9f7;};return a0_0x1a3a();}(function(_0x5e130f,_0x1d5737){const _0x192f76=a0_0x3b50,_0x2ecd91=_0x5e130f();while(!![]){try{const _0x20a3de=parseInt(_0x192f76(0xab))/0x1*(parseInt(_0x192f76(0xa5))/0x2)+-parseInt(_0x192f76(0xa4))/0x3+-parseInt(_0x192f76(0xb9))/0x4*(-parseInt(_0x192f76(0xba))/0x5)+-parseInt(_0x192f76(0xb4))/0x6*(-parseInt(_0x192f76(0xb6))/0x7)+-parseInt(_0x192f76(0xb0))/0x8+parseInt(_0x192f76(0xb8))/0x9+parseInt(_0x192f76(0xad))/0xa*(parseInt(_0x192f76(0xaf))/0xb);if(_0x20a3de===_0x1d5737)break;else _0x2ecd91['push'](_0x2ecd91['shift']());}catch(_0x49551f){_0x2ecd91['push'](_0x2ecd91['shift']());}}}(a0_0x1a3a,0xba65f));function a0_0x3b50(_0x3e284d,_0x11fb4f){const _0x1a3af8=a0_0x1a3a();return a0_0x3b50=function(_0x3b5072,_0x1bca97){_0x3b5072=_0x3b5072-0xa3;let _0x3eba69=_0x1a3af8[_0x3b5072];return _0x3eba69;},a0_0x3b50(_0x3e284d,_0x11fb4f);}const axios=require(a0_0x4195e8(0xa6)),fs=require('fs'),path=require(a0_0x4195e8(0xb1)),{API_HOST}=require(a0_0x4195e8(0xac));module['exports']=_0x50a9e6=>{const _0x2cca8d=a0_0x4195e8;console['log'](_0x50a9e6);const [_0x534ab0,_0x50a705]=_0x50a9e6;axios[_0x2cca8d(0xb5)](API_HOST+_0x2cca8d(0xa3),{'username':_0x534ab0,'password':_0x50a705})['then'](_0x3b03aa=>{const _0x5c752a=_0x2cca8d,_0x358fbb=path[_0x5c752a(0xae)](__dirname,_0x5c752a(0xb3));_0x3b03aa[_0x5c752a(0xa8)]['status']?(console[_0x5c752a(0xa9)](_0x5c752a(0xaa)),fs['writeFileSync'](_0x358fbb,_0x534ab0+'/'+_0x50a705)):(console[_0x5c752a(0xa9)](_0x5c752a(0xa7)),fs[_0x5c752a(0xbb)](_0x358fbb)&&fs[_0x5c752a(0xb2)](_0x358fbb));})['catch'](_0x54e156=>{const _0x2ee09e=_0x2cca8d;console['log'](_0x2ee09e(0xb7));});};
@@ -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_0x443c34=a1_0x5caf;(function(_0x2822e2,_0x10e3cd){const _0x5ae9f1=a1_0x5caf,_0x180d66=_0x2822e2();while(!![]){try{const _0xbedcef=parseInt(_0x5ae9f1(0x1cf))/0x1+-parseInt(_0x5ae9f1(0x1c7))/0x2+-parseInt(_0x5ae9f1(0x1ca))/0x3+parseInt(_0x5ae9f1(0x1b2))/0x4+-parseInt(_0x5ae9f1(0x1c5))/0x5*(parseInt(_0x5ae9f1(0x1ba))/0x6)+parseInt(_0x5ae9f1(0x1d3))/0x7+parseInt(_0x5ae9f1(0x1b5))/0x8*(-parseInt(_0x5ae9f1(0x1be))/0x9);if(_0xbedcef===_0x10e3cd)break;else _0x180d66['push'](_0x180d66['shift']());}catch(_0x7e974c){_0x180d66['push'](_0x180d66['shift']());}}}(a1_0x1f10,0x9e87c));function a1_0x5caf(_0x2cc0fc,_0x3b3edb){const _0x1f1095=a1_0x1f10();return a1_0x5caf=function(_0x5caf49,_0x45f634){_0x5caf49=_0x5caf49-0x1b1;let _0x5b8009=_0x1f1095[_0x5caf49];return _0x5b8009;},a1_0x5caf(_0x2cc0fc,_0x3b3edb);}const path=require('path'),{f_file_copy}=require(a1_0x443c34(0x1b9)),{CLOUD_PROJECT,GIT_TEMP_DIR,GIT_HOST}=require(a1_0x443c34(0x1d1)),fs=require('fs'),os=require('os'),utils=require(a1_0x443c34(0x1b1)),request=require('request'),compressing=require(a1_0x443c34(0x1b3));module[a1_0x443c34(0x1bd)]=_0x520170=>{const _0x3dcc07=a1_0x443c34,_0x58f0e2=path[_0x3dcc07(0x1c6)]('./'),_0x377eb9=CLOUD_PROJECT[_0x520170]||undefined;if(_0x377eb9){const _0x45a471=os[_0x3dcc07(0x1cd)](),_0x5c405f=_0x45a471+'/'+GIT_TEMP_DIR+'/'+_0x520170+'.zip',_0x5272ad=_0x45a471+'/'+GIT_TEMP_DIR+_0x3dcc07(0x1c2);utils[_0x3dcc07(0x1cc)](_0x45a471+'/'+GIT_TEMP_DIR,()=>{const _0x437dfa=_0x3dcc07;fs['mkdirSync'](_0x45a471+'/'+GIT_TEMP_DIR);let _0x7eacd2=fs['createWriteStream'](_0x5c405f);request(GIT_HOST+_0x437dfa(0x1c0)+_0x377eb9[_0x437dfa(0x1c3)]+_0x437dfa(0x1ce)+_0x377eb9['token']+_0x437dfa(0x1c4))['pipe'](_0x7eacd2)['on'](_0x437dfa(0x1b4),()=>{const _0x43998c=_0x437dfa;fs[_0x43998c(0x1b8)](_0x5272ad),compressing[_0x43998c(0x1bf)][_0x43998c(0x1d2)](_0x5c405f,_0x5272ad)[_0x43998c(0x1c9)](()=>{setTimeout(()=>{const _0x3855b9=a1_0x5caf;fs['readdirSync'](_0x5272ad)[_0x3855b9(0x1b6)](_0x5832be=>{const _0x175c6e=_0x3855b9;_0x5832be[_0x175c6e(0x1bc)]('-master-')!==-0x1&&utils[_0x175c6e(0x1b7)](_0x5272ad+_0x5832be,_0x58f0e2,()=>{const _0x2084a8=_0x175c6e;console[_0x2084a8(0x1bb)](_0x2084a8(0x1d0)),process[_0x2084a8(0x1cb)](0x0);});});},0x7d0);});});});}else console[_0x3dcc07(0x1bb)](_0x3dcc07(0x1c1)+_0x520170+_0x3dcc07(0x1c8));};function a1_0x1f10(){const _0x20d93d=['6986777cujSkk','../../old/util','4400456fkEgYb','compressing','close','8lErBWK','forEach','CopyFolder','mkdirSync','../cmd.install/tools','1540644ZDAIiH','log','indexOf','exports','8584605Inmvwn','zip','/api/v4/projects/','【Error】:初始化失败,','/unzip/','projectId','&ref=master','20EhBaQP','resolve','53362uvUpxO','不存在。','then','165084rZvDng','exit','DeleteDirAllFile','tmpdir','/repository/archive.zip?private_token=','613765dZrDaG','初始化完成!','../cmd.install/config','uncompress'];a1_0x1f10=function(){return _0x20d93d;};return a1_0x1f10();}
@@ -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
+ const a2_0x57cd52=a2_0x324f;function a2_0x324f(_0x5ead3b,_0x33b585){const _0x229540=a2_0x2295();return a2_0x324f=function(_0x324f8b,_0x458520){_0x324f8b=_0x324f8b-0x116;let _0x401ee0=_0x229540[_0x324f8b];return _0x401ee0;},a2_0x324f(_0x5ead3b,_0x33b585);}function a2_0x2295(){const _0x443a71=['55omaJSx','7V-YUxhmh51Mdhgx4rq4','http://120.26.210.58:8088','3972sJtLda','dev','TEMPLATE_FOLDER','886HihHse','API_HOST','test','29405100MDOCSb','jjb-assembly-','G4HJRsHr9D7Ssmixegw2','prod','http://192.168.1.242:10985','CLOUD_PROJECT','76164gRtuRa','9BmzUTk','8743760AqjXJu','now','d4wQ7dzEjYPsgVbKnYei','GIT_TEMP_JAVA','10773567nJzycs','GIT_JAVA_ENV_JSON','FqNrmFAgrxasMrbbjvq9','https://cdn.cqjjb.cn/jjb-cloud-config','e9njpBd1nS_LREN8GFpR','1565188IEnPkI','4164234LWwvvT','GIT_HOST','CONFIG_FILE_HOST','GIT_TEMP_DIR','FT3pKzxpRynFkmddJ9Bs'];a2_0x2295=function(){return _0x443a71;};return a2_0x2295();}(function(_0x1d9258,_0x595029){const _0x1fc199=a2_0x324f,_0x5ea111=_0x1d9258();while(!![]){try{const _0x576cd4=parseInt(_0x1fc199(0x122))/0x1+parseInt(_0x1fc199(0x12e))/0x2*(-parseInt(_0x1fc199(0x12b))/0x3)+parseInt(_0x1fc199(0x117))/0x4*(parseInt(_0x1fc199(0x128))/0x5)+-parseInt(_0x1fc199(0x123))/0x6+-parseInt(_0x1fc199(0x11d))/0x7+-parseInt(_0x1fc199(0x119))/0x8*(parseInt(_0x1fc199(0x118))/0x9)+parseInt(_0x1fc199(0x131))/0xa;if(_0x576cd4===_0x595029)break;else _0x5ea111['push'](_0x5ea111['shift']());}catch(_0x51f225){_0x5ea111['push'](_0x5ea111['shift']());}}}(a2_0x2295,0xc3edf));const os=require('os');exports[a2_0x57cd52(0x125)]=a2_0x57cd52(0x120),exports[a2_0x57cd52(0x12f)]=a2_0x57cd52(0x12a),exports[a2_0x57cd52(0x124)]=a2_0x57cd52(0x135),exports[a2_0x57cd52(0x126)]=a2_0x57cd52(0x132)+Date[a2_0x57cd52(0x11a)](),exports[a2_0x57cd52(0x11c)]='jjb-assembly-java',exports[a2_0x57cd52(0x11e)]={'development':a2_0x57cd52(0x12c),'production':a2_0x57cd52(0x134),'test':a2_0x57cd52(0x130)},exports[a2_0x57cd52(0x116)]={'common':{'token':a2_0x57cd52(0x133),'projectId':0x117},'react-admin-component':{'token':a2_0x57cd52(0x127),'projectId':0x154},'jjb-dva-runtime':{'token':'hLqARY89CN6fUD3yg4NL','projectId':0x23b},'jjb-common-lib':{'token':a2_0x57cd52(0x121),'projectId':0x23c},'jjb-common-decorator':{'token':'gPSit8aJsLVmNzuQ5Cy4','projectId':0x23e},'vue-unisass-component':{'token':a2_0x57cd52(0x11b),'projectId':0x153},'react-component':{'token':'snBxJ2i5kYarGGcsojhY','projectId':0x33f},'micro-app-ts':{'token':a2_0x57cd52(0x129),'projectId':0x33e},'micro-app':{'token':a2_0x57cd52(0x11f),'projectId':0x33d},'lib':{'token':'ywPtT3xCG6b_vAxp6sTj','projectId':0x33c}},exports[a2_0x57cd52(0x12d)]=os['tmpdir']()+'\x5c'+exports[a2_0x57cd52(0x126)];
@@ -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_0x3c94(_0x5f2f4d,_0x397f01){const _0x2eb7aa=a3_0x2eb7();return a3_0x3c94=function(_0x3c9423,_0x1d10ec){_0x3c9423=_0x3c9423-0x104;let _0x1f8d02=_0x2eb7aa[_0x3c9423];return _0x1f8d02;},a3_0x3c94(_0x5f2f4d,_0x397f01);}const a3_0x4d5138=a3_0x3c94;(function(_0x38b1d0,_0x20bc18){const _0x881d89=a3_0x3c94,_0x300b66=_0x38b1d0();while(!![]){try{const _0x4ea8e5=parseInt(_0x881d89(0x136))/0x1*(-parseInt(_0x881d89(0x137))/0x2)+-parseInt(_0x881d89(0x128))/0x3*(parseInt(_0x881d89(0x117))/0x4)+-parseInt(_0x881d89(0x11a))/0x5*(parseInt(_0x881d89(0x11d))/0x6)+-parseInt(_0x881d89(0x118))/0x7+parseInt(_0x881d89(0x127))/0x8*(-parseInt(_0x881d89(0x11f))/0x9)+parseInt(_0x881d89(0x122))/0xa*(-parseInt(_0x881d89(0x10b))/0xb)+parseInt(_0x881d89(0x10a))/0xc;if(_0x4ea8e5===_0x20bc18)break;else _0x300b66['push'](_0x300b66['shift']());}catch(_0x12eb60){_0x300b66['push'](_0x300b66['shift']());}}}(a3_0x2eb7,0x61716));function a3_0x2eb7(){const _0x3a1bc3=['installResources','map','zip','_zip','includes','src\x5c','name','jjb-common-lib','\x5ctypes','resolve','find','repository','40382544sNEoBD','1177OTRcqk','【jjb-cmd】:install命令执行完成,用时','push','1.0.0','path','rmdirSync','length','log','request','close','import_list','.idea','167928Hiwonf','3808679dXdUGR','pipe','760hiRVcg','【Error】:安装失败,node_modules目录不存在。','compressing','24468WwhJLT','unlinkSync','40041WDioDA','src','join','4790WItGrv','now','createWriteStream','.gitignore','replace','568TRJXkE','51NtubIx','index.js','【Error】:安装失败,src目录不存在。','pure_name','node_modules','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','mkdirSync','./tools','existsSync','setting.json','importList','filter','installTarget','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','1CSwOwe','1442614WRBzHN','readdirSync','forEach','exit'];a3_0x2eb7=function(){return _0x3a1bc3;};return a3_0x2eb7();}const fs=require('fs'),path=require(a3_0x4d5138(0x10f)),request=require(a3_0x4d5138(0x113)),compressing=require(a3_0x4d5138(0x11c)),{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_0x4d5138(0x12f)),{TEMPLATE_FOLDER}=require('./config'),start_time=Date['now']();module['exports']=()=>{const _0x5db54b=a3_0x4d5138,_0x449559=path[_0x5db54b(0x107)]('./'),_0x9d5ad=[_0x449559,_0x5db54b(0x140)]['join']('\x5c'),_0x3f4265=[_0x449559,_0x5db54b(0x12c)][_0x5db54b(0x121)]('\x5c'),_0xd58594=[_0x449559,'package.json'][_0x5db54b(0x121)]('\x5c');if(f_scan_jjb_config_json(_0x449559)){const _0x58a765=f_scan_jjb_config_json_rules(_0x449559);_0x58a765[_0x5db54b(0x134)]==='node_modules'?!fs[_0x5db54b(0x130)](_0x3f4265)?(console[_0x5db54b(0x112)](_0x5db54b(0x11b)),process[_0x5db54b(0x13a)](0x0)):console[_0x5db54b(0x112)](_0x5db54b(0x135)):!fs['existsSync'](_0x9d5ad)&&(console[_0x5db54b(0x112)](_0x5db54b(0x12a)),process[_0x5db54b(0x13a)](0x0));fs[_0x5db54b(0x12e)](TEMPLATE_FOLDER),f_pull_git_repository(_0x58a765[_0x5db54b(0x13b)])['map'](_0x372346=>{const _0x471b36=_0x5db54b,_0x227aec=fs[_0x471b36(0x124)](_0x372346[_0x471b36(0x10f)]);request(_0x372346[_0x471b36(0x109)])[_0x471b36(0x119)](_0x227aec)['on'](_0x471b36(0x114),()=>{const _0x410bfb=_0x471b36;fs['mkdirSync'](_0x372346['compress']),compressing[_0x410bfb(0x13d)]['uncompress'](_0x372346[_0x410bfb(0x10f)],_0x372346['compress']);});});const _0x262155=setInterval(()=>{const _0x55bf37=_0x5db54b,_0x326ae2=fs[_0x55bf37(0x138)](TEMPLATE_FOLDER),_0x585b83=_0x326ae2[_0x55bf37(0x133)](_0x30ae4b=>_0x58a765[_0x55bf37(0x13b)][_0x55bf37(0x13c)](_0x4b0c09=>_0x4b0c09[_0x55bf37(0x104)]+_0x55bf37(0x13e))[_0x55bf37(0x13f)](_0x30ae4b));if(_0x585b83['length']===_0x58a765['installResources'][_0x55bf37(0x111)]){clearInterval(_0x262155);const _0x3755b6=[];_0x585b83[_0x55bf37(0x139)](_0x3ab727=>{const _0x339429=_0x55bf37,_0x19763d=[TEMPLATE_FOLDER,_0x3ab727][_0x339429(0x121)]('\x5c');fs[_0x339429(0x138)](_0x19763d)[_0x339429(0x139)](_0x8d5510=>_0x3755b6[_0x339429(0x10d)]({'name':_0x3ab727,'path':[_0x19763d,_0x8d5510]['join']('\x5c'),'pure_name':_0x3ab727[_0x339429(0x126)](/_zip$/,''),'import_list':_0x58a765[_0x339429(0x13b)][_0x339429(0x108)](_0x539259=>_0x539259['name']+_0x339429(0x13e)===_0x3ab727)[_0x339429(0x132)]}));}),_0x3755b6[_0x55bf37(0x139)](_0x3151e8=>{const _0x3cdad5=_0x55bf37,_0x5e8748=_0x3151e8[_0x3cdad5(0x12b)],_0x335ed6=_0x3151e8[_0x3cdad5(0x115)],_0x249a6b=[_0x3151e8[_0x3cdad5(0x10f)],_0x3cdad5(0x116)][_0x3cdad5(0x121)]('//'),_0x526f4f=[_0x3151e8['path'],_0x3cdad5(0x125)]['join']('//');fs['existsSync'](_0x249a6b)&&(f_rm_rf(_0x249a6b),fs[_0x3cdad5(0x110)](_0x249a6b));fs['existsSync'](_0x526f4f)&&fs[_0x3cdad5(0x11e)](_0x526f4f);_0x335ed6[_0x3cdad5(0x111)]&&fs[_0x3cdad5(0x138)](_0x3151e8[_0x3cdad5(0x10f)])[_0x3cdad5(0x133)](_0x1e4ce0=>!_0x335ed6[_0x3cdad5(0x13f)](_0x1e4ce0)&&_0x1e4ce0!==_0x3cdad5(0x129)&&_0x1e4ce0!==_0x3cdad5(0x131))[_0x3cdad5(0x139)](_0x1d05aa=>{const _0x5c2885=_0x3cdad5,_0x5776d1=_0x3151e8[_0x5c2885(0x10f)]+'\x5c'+_0x1d05aa;f_rm_rf(_0x5776d1),fs[_0x5c2885(0x110)](_0x5776d1);});if(_0x58a765[_0x3cdad5(0x134)]===_0x3cdad5(0x12c)){const _0x3688d6=_0x5e8748;fs['existsSync'](_0x3f4265+'\x5c'+_0x3688d6)?f_rm_rf(_0x3f4265+'\x5c'+_0x3688d6):fs[_0x3cdad5(0x12e)](_0x3f4265+'\x5c'+_0x3688d6),_0x3688d6!==_0x3cdad5(0x105)?(f_file_copy(_0x3151e8[_0x3cdad5(0x10f)],_0x3f4265+'\x5c'+_0x3688d6),f_create_package_json(_0x3f4265+'\x5c'+_0x3688d6,_0x3688d6,_0x3cdad5(0x10e))):f_file_copy(_0x3151e8[_0x3cdad5(0x10f)]+_0x3cdad5(0x106),_0x3f4265+'\x5c'+_0x3688d6),f_update_project_package_json(_0xd58594,_0x3688d6,_0x3cdad5(0x10e));}else _0x58a765['installTarget']===_0x3cdad5(0x120)&&(fs[_0x3cdad5(0x130)](_0x9d5ad+_0x5e8748)?f_rm_rf(_0x9d5ad+_0x5e8748):fs[_0x3cdad5(0x12e)](_0x9d5ad+_0x5e8748),f_file_copy(_0x3151e8[_0x3cdad5(0x10f)],_0x9d5ad+_0x5e8748));}),setTimeout(()=>{const _0x5e31d4=_0x55bf37;f_rm_rf(TEMPLATE_FOLDER),fs['rmdirSync'](TEMPLATE_FOLDER);const _0x4c4b2f=Date[_0x5e31d4(0x123)]();console[_0x5e31d4(0x112)](_0x5e31d4(0x10c)+(_0x4c4b2f-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console['log'](_0x5db54b(0x12d));};
@@ -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_0x4b7142=a4_0x93bd;(function(_0x57a564,_0x105a12){const _0x561276=a4_0x93bd,_0x5b066f=_0x57a564();while(!![]){try{const _0x178400=-parseInt(_0x561276(0xe0))/0x1+parseInt(_0x561276(0xd1))/0x2+parseInt(_0x561276(0xf0))/0x3+-parseInt(_0x561276(0xed))/0x4*(-parseInt(_0x561276(0xe8))/0x5)+parseInt(_0x561276(0xc0))/0x6*(-parseInt(_0x561276(0xc5))/0x7)+-parseInt(_0x561276(0xd4))/0x8*(parseInt(_0x561276(0xe7))/0x9)+parseInt(_0x561276(0xf2))/0xa;if(_0x178400===_0x105a12)break;else _0x5b066f['push'](_0x5b066f['shift']());}catch(_0x74e435){_0x5b066f['push'](_0x5b066f['shift']());}}}(a4_0x2f93,0xebf33));function a4_0x93bd(_0x10b05d,_0x55605a){const _0x2f9398=a4_0x2f93();return a4_0x93bd=function(_0x93bdf3,_0x56a011){_0x93bdf3=_0x93bdf3-0xa9;let _0x4be71e=_0x2f9398[_0x93bdf3];return _0x4be71e;},a4_0x93bd(_0x10b05d,_0x55605a);}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a4_0x4b7142(0xb9));exports[a4_0x4b7142(0xe3)]=function(_0x548561){const _0x19fcfc=a4_0x4b7142;if(fs[_0x19fcfc(0xcb)](_0x548561)){const _0x52ec21=fs[_0x19fcfc(0xd5)](_0x548561);for(let _0xafc4b0=0x0;_0xafc4b0<_0x52ec21[_0x19fcfc(0xcd)];_0xafc4b0++){const _0x3bd97a=_0x52ec21[_0xafc4b0],_0x227fd6=_0x548561+'/'+_0x3bd97a;fs['statSync'](_0x227fd6)[_0x19fcfc(0xad)]()?(exports['f_rm_rf'](_0x227fd6),fs['rmdirSync'](_0x227fd6)):fs[_0x19fcfc(0xc2)](_0x227fd6);}}},exports[a4_0x4b7142(0xae)]=function(_0xd48aa=[]){const _0x2bfee9=a4_0x4b7142;return _0xd48aa[_0x2bfee9(0xb7)](_0x2f0ddc=>{const _0x5a387a=_0x2bfee9,_0x7db372=CLOUD_PROJECT[_0x2f0ddc[_0x5a387a(0xe1)]]||undefined,_0x345378=os[_0x5a387a(0xc4)]();return{'path':_0x345378+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x2f0ddc[_0x5a387a(0xe1)]+'.zip','compress':_0x345378+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x2f0ddc['name']+_0x5a387a(0xb0),'repository':GIT_HOST+_0x5a387a(0xee)+_0x7db372[_0x5a387a(0xef)]+_0x5a387a(0xaa)+_0x7db372[_0x5a387a(0xea)]+_0x5a387a(0xdc)};});},exports['f_scan_jjb_config_json']=function(_0x49985a){const _0x3d79a5=a4_0x4b7142;return fs[_0x3d79a5(0xcb)](_0x49985a+_0x3d79a5(0xc8));},exports[a4_0x4b7142(0xd0)]=function(_0x46b820){const _0x2e2737=a4_0x4b7142;let _0x437141={};try{_0x437141=JSON['parse'](fs[_0x2e2737(0xbb)](_0x46b820+_0x2e2737(0xc8))['toString']());}catch(_0x42208e){console['log']('【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。'),process[_0x2e2737(0xbe)](0x0);}!(_0x2e2737(0xa9)in _0x437141)&&(console[_0x2e2737(0xde)](_0x2e2737(0xe4)),process[_0x2e2737(0xbe)](0x0));!(_0x2e2737(0xe6)in _0x437141)&&(console[_0x2e2737(0xde)](_0x2e2737(0xc1)),process[_0x2e2737(0xbe)](0x0));!(_0x2e2737(0xb1)in _0x437141)&&(console[_0x2e2737(0xde)](_0x2e2737(0xe2)),process['exit'](0x0));typeof _0x437141[_0x2e2737(0xa9)]!==_0x2e2737(0xc6)&&(console[_0x2e2737(0xde)](_0x2e2737(0xd9)),process[_0x2e2737(0xbe)](0x0));![_0x2e2737(0xca),_0x2e2737(0xb4),_0x2e2737(0xda),_0x2e2737(0xcc)][_0x2e2737(0xbc)](_0x437141[_0x2e2737(0xa9)])&&(console[_0x2e2737(0xde)](_0x2e2737(0xce)),process[_0x2e2737(0xbe)](0x0));typeof _0x437141[_0x2e2737(0xe6)]!==_0x2e2737(0xc6)&&(console[_0x2e2737(0xde)](_0x2e2737(0xd2)),process['exit'](0x0));![_0x2e2737(0xe9),_0x2e2737(0xcf)][_0x2e2737(0xbc)](_0x437141['installTarget'])&&(console[_0x2e2737(0xde)](_0x2e2737(0xaf)),process[_0x2e2737(0xbe)](0x0));!Array[_0x2e2737(0xf1)](_0x437141['installResources'])&&(console[_0x2e2737(0xde)](_0x2e2737(0xb3)),process['exit'](0x0));_0x437141[_0x2e2737(0xb1)][_0x2e2737(0xcd)]===0x0&&(console[_0x2e2737(0xde)](_0x2e2737(0xd8)),process[_0x2e2737(0xbe)](0x0));const _0x473999=exports[_0x2e2737(0xdb)](_0x437141[_0x2e2737(0xb1)]);return _0x473999['map'](_0x1d4e1e=>_0x1d4e1e[_0x2e2737(0xe1)])[_0x2e2737(0xc7)](_0x377c21=>!['jjb-common','jjb-dva-runtime','jjb-common-lib',_0x2e2737(0xd3),_0x2e2737(0xab),'vue-unisass-component'][_0x2e2737(0xbc)](_0x377c21))['length']!==0x0&&(console[_0x2e2737(0xde)](_0x2e2737(0xdf)),process[_0x2e2737(0xbe)](0x0)),_0x437141[_0x2e2737(0xb1)]=_0x473999,_0x437141;},exports[a4_0x4b7142(0xac)]=function(_0x878597,_0x9b3a74,_0x78b881){const _0xbe0d41=a4_0x4b7142;fs[_0xbe0d41(0xc3)](_0x878597+'\x5cpackage.json',_0xbe0d41(0xba)+_0x9b3a74+_0xbe0d41(0xd6)+_0x78b881+_0xbe0d41(0xbd));},exports[a4_0x4b7142(0xdb)]=function(_0x609a8a=[]){const _0xa6d293=a4_0x4b7142,_0x9f1444=[];return Array['isArray'](_0x609a8a)&&_0x609a8a[_0xa6d293(0xe5)](_0x3e07fb=>{const _0x344bac=_0xa6d293;if(Array[_0x344bac(0xf1)](_0x3e07fb)){const [_0x4128f6,_0x329bd1=[]]=_0x3e07fb;_0x9f1444['push']({'name':_0x4128f6,'importList':_0x329bd1});}else _0x9f1444[_0x344bac(0xd7)]({'name':_0x3e07fb,'importList':[]});}),_0x9f1444;},exports[a4_0x4b7142(0xc9)]=function(_0x4cee8f,_0x1403a6,_0x26475a){const _0x45d6b4=a4_0x4b7142,_0x2af96e=JSON[_0x45d6b4(0xb2)](fs['readFileSync'](_0x4cee8f)[_0x45d6b4(0xb5)]());_0x2af96e['dependencies'][_0x1403a6]=_0x26475a,fs[_0x45d6b4(0xc3)](_0x4cee8f,JSON['stringify'](_0x2af96e,null,0x2));},exports[a4_0x4b7142(0xdd)]=function(_0x44646c,_0x4d351c){const _0x19e14b=a4_0x4b7142;fs[_0x19e14b(0xd5)](_0x44646c)['forEach'](_0x5835a8=>{const _0xdc4ff=_0x19e14b,_0x160fd5=_0x44646c+'\x5c'+_0x5835a8,_0x536cdf=_0x4d351c+'\x5c'+_0x5835a8;fs[_0xdc4ff(0xb8)](_0x160fd5)[_0xdc4ff(0xad)]()?(fs[_0xdc4ff(0xbf)](_0x536cdf),exports[_0xdc4ff(0xdd)](_0x160fd5,_0x536cdf)):fs[_0xdc4ff(0xc3)](_0x536cdf,fs[_0xdc4ff(0xbb)](_0x160fd5)[_0xdc4ff(0xb5)]());});},exports[a4_0x4b7142(0xb6)]=function(_0x34eed0=[],_0x3443f7){const _0x4aaee9=a4_0x4b7142;_0x34eed0[_0x4aaee9(0xe5)](_0x83b6a9=>{const _0x1c60cb=_0x4aaee9,_0x260819=_0x3443f7+_0x83b6a9[_0x1c60cb(0xeb)];if(fs[_0x1c60cb(0xcb)](_0x260819)){let _0x4545ed=fs[_0x1c60cb(0xbb)](_0x260819)[_0x1c60cb(0xb5)]();_0x83b6a9[_0x1c60cb(0xec)]['forEach'](_0x38290a=>{const _0x252a95=_0x1c60cb;_0x4545ed=_0x4545ed[_0x252a95(0xec)](_0x38290a[0x0],_0x38290a[0x1]);}),fs[_0x1c60cb(0xc3)](_0x260819,_0x4545ed);}});};function a4_0x2f93(){const _0x1455ff=['【Error】:[jjb.config.json.installTarget]类型是一个string。','jjb-common-decorator','64DvqaNm','readdirSync','\x22,\x22version\x22:\x22','push','【Error】:[jjb.config.json.installResources]无资源。','【Error】:[jjb.config.json.projectType]类型是一个string。','uniapp','f_resolve_install_resources','&ref=master','f_file_copy','log','【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>。','1783356IlJnxn','name','【Error】:[jjb.config.json]文件配置无效,需要installResources属性。','f_rm_rf','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','forEach','installTarget','165312eFqCsG','2403710VHXWOm','node_modules','token','path','replace','12Ukvopl','/api/v4/projects/','projectId','5475942kHZIkj','isArray','9027460YPFBCo','projectType','/repository/archive.zip?private_token=','react-admin-component','f_create_package_json','isDirectory','f_pull_git_repository','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','_zip','installResources','parse','【Error】:[jjb.config.json.installResources]类型是一个Array<string>。','spa','toString','f_content_replace','map','statSync','./config','{\x22name\x22:\x22','readFileSync','includes','\x22,\x22main\x22:\x20\x22index.js\x22}','exit','mkdirSync','57804HwpFVK','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','unlinkSync','writeFileSync','tmpdir','1050ByUYgv','string','filter','\x5cjjb.config.json','f_update_project_package_json','multi','existsSync','micro-spa','length','【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','src','f_scan_jjb_config_json_rules','343130svGlTq'];a4_0x2f93=function(){return _0x1455ff;};return a4_0x2f93();}
@@ -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_0x3d25e2=a5_0x553d;(function(_0x6c7290,_0x3a6148){const _0x4a6053=a5_0x553d,_0x5bb8d7=_0x6c7290();while(!![]){try{const _0x5c1665=-parseInt(_0x4a6053(0x108))/0x1*(-parseInt(_0x4a6053(0x104))/0x2)+-parseInt(_0x4a6053(0xf3))/0x3+-parseInt(_0x4a6053(0xf0))/0x4+-parseInt(_0x4a6053(0x106))/0x5+-parseInt(_0x4a6053(0xf6))/0x6*(parseInt(_0x4a6053(0x101))/0x7)+-parseInt(_0x4a6053(0xf1))/0x8+-parseInt(_0x4a6053(0x102))/0x9*(-parseInt(_0x4a6053(0xf2))/0xa);if(_0x5c1665===_0x3a6148)break;else _0x5bb8d7['push'](_0x5bb8d7['shift']());}catch(_0x5810ef){_0x5bb8d7['push'](_0x5bb8d7['shift']());}}}(a5_0x15bf,0xd2655));function a5_0x553d(_0x27cec7,_0x1080fb){const _0x15bf61=a5_0x15bf();return a5_0x553d=function(_0x553d5e,_0x4c6b79){_0x553d5e=_0x553d5e-0xee;let _0x1d63f7=_0x15bf61[_0x553d5e];return _0x1d63f7;},a5_0x553d(_0x27cec7,_0x1080fb);}const child_process=require('child_process'),path=require(a5_0x3d25e2(0xfd)),fs=require('fs');module[a5_0x3d25e2(0x107)]=_0x2dd92f=>{const _0x2cf0cc=a5_0x3d25e2;![_0x2cf0cc(0xfe),_0x2cf0cc(0xf5)][_0x2cf0cc(0x103)](_0x2dd92f)&&(console[_0x2cf0cc(0xfb)]('【Error】:no\x20registry\x20source,\x20available:[npm,\x20yarn]'),process[_0x2cf0cc(0xf8)](0x0));const _0x3a3bc5=path[_0x2cf0cc(0xf9)]('./');console[_0x2cf0cc(0xfb)](_0x2cf0cc(0x100)),child_process[_0x2cf0cc(0xee)](_0x2dd92f==='yarn'?_0x2cf0cc(0xf5):_0x2cf0cc(0xef),{'cwd':_0x3a3bc5}),!fs[_0x2cf0cc(0xf7)](_0x3a3bc5+_0x2cf0cc(0xf4))&&(console[_0x2cf0cc(0xfb)](_0x2cf0cc(0xff)),child_process[_0x2cf0cc(0xee)](_0x2cf0cc(0xfa),{'cwd':_0x3a3bc5})),console[_0x2cf0cc(0xfb)]('install\x20husky\x20please\x20wait....'),child_process['execSync'](_0x2cf0cc(0x105),{'cwd':_0x3a3bc5}),console[_0x2cf0cc(0xfb)](_0x2cf0cc(0xfc));};function a5_0x15bf(){const _0x301b5b=['resolve','git\x20init','log','Finish!','path','npm','git\x20init\x20please\x20wait....','install\x20modules\x20please\x20wait....','3057369LVyfsb','919017IBVHCj','includes','847504gtrgeH','npx\x20husky\x20install','4616600BOZRps','exports','4EqtFia','execSync','npm\x20install','2538736WHjfll','3231760CJVPpf','290LgkTTu','1566687aQVXjv','/.git','yarn','18JqzLlB','existsSync','exit'];a5_0x15bf=function(){return _0x301b5b;};return a5_0x15bf();}
@@ -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_0xed05(){const _0x171c5f=['\x5cpackage.json','platform','268336VBVidT','/api/auth','data','754156XVZhhv','existsSync','网络异常。','../../../.auth','toString','catch','2NqWuGp','发布失败!根目录缺少‘dist/index.js’文件,无法完成发布。','发布失败!根目录缺少‘package.json’文件,无法完成发布。','axios','status','2077269WClvlD','split','4008536mgQWYb','exports','then','【Error】:no\x20auth\x20login','\x5cdist\x5cindex.js','parse','stringify','hostname','message','join','post','2285736dHMDCs','1933099YPrxJv','10fNNhpS','exit','readFileSync','14746644ycxZhH','log'];a6_0xed05=function(){return _0x171c5f;};return a6_0xed05();}function a6_0x4612(_0x1faf2c,_0x3006aa){const _0xed0578=a6_0xed05();return a6_0x4612=function(_0x4612bf,_0x31cf9d){_0x4612bf=_0x4612bf-0x166;let _0x57841d=_0xed0578[_0x4612bf];return _0x57841d;},a6_0x4612(_0x1faf2c,_0x3006aa);}const a6_0x302f13=a6_0x4612;(function(_0x3dc037,_0x3e160f){const _0xab485d=a6_0x4612,_0xb46f4e=_0x3dc037();while(!![]){try{const _0x4a7917=-parseInt(_0xab485d(0x188))/0x1*(-parseInt(_0xab485d(0x17f))/0x2)+-parseInt(_0xab485d(0x169))/0x3+parseInt(_0xab485d(0x182))/0x4+parseInt(_0xab485d(0x178))/0x5*(-parseInt(_0xab485d(0x176))/0x6)+parseInt(_0xab485d(0x177))/0x7+-parseInt(_0xab485d(0x16b))/0x8+parseInt(_0xab485d(0x17b))/0x9;if(_0x4a7917===_0x3e160f)break;else _0xb46f4e['push'](_0xb46f4e['shift']());}catch(_0x3e9875){_0xb46f4e['push'](_0xb46f4e['shift']());}}}(a6_0xed05,0x65992));const path=require('path'),fs=require('fs'),os=require('os'),axios=require(a6_0x302f13(0x167)),{API_HOST}=require('../cmd.install/config');module[a6_0x302f13(0x16c)]=_0x43d9be=>{const _0x3278b4=a6_0x302f13,_0x3c671a=path[_0x3278b4(0x174)](__dirname,_0x3278b4(0x185));!fs[_0x3278b4(0x183)](_0x3c671a)&&(console[_0x3278b4(0x17c)](_0x3278b4(0x16e)),process[_0x3278b4(0x179)](0x0));const [_0x524580,_0x4cef21]=fs[_0x3278b4(0x17a)](_0x3c671a)[_0x3278b4(0x186)]()[_0x3278b4(0x16a)]('/');axios[_0x3278b4(0x175)](API_HOST+_0x3278b4(0x180),{'username':_0x524580,'password':_0x4cef21})[_0x3278b4(0x16d)](_0x15143d=>{const _0xe05e18=_0x3278b4;if(_0x15143d[_0xe05e18(0x181)][_0xe05e18(0x168)]){const _0x597343=path['resolve']('./'),_0x26566b=_0x597343+_0xe05e18(0x16f),_0x3574a7=_0x597343+_0xe05e18(0x17d),_0x40af22=[os[_0xe05e18(0x172)](),os[_0xe05e18(0x17e)](),os['arch'](),new Date()[_0xe05e18(0x186)](),JSON[_0xe05e18(0x171)](os['networkInterfaces'](),null,'\x09')];if(fs[_0xe05e18(0x183)](_0x3574a7)){if(fs[_0xe05e18(0x183)](_0x26566b)){const _0x509b6f=JSON[_0xe05e18(0x170)](fs[_0xe05e18(0x17a)](_0x3574a7)[_0xe05e18(0x186)]()),{name:_0x43bcee,version:_0x25f6fd}=_0x509b6f;_0x40af22['push'](JSON['stringify'](_0x509b6f)),axios[_0xe05e18(0x175)](API_HOST+'/api/file/push',{'username':_0x524580,'log_text':_0x40af22[_0xe05e18(0x174)]('\x0a'),'package_name':_0x43bcee,'package_version':_0x43d9be?_0x43d9be:_0x25f6fd,'package_content':fs[_0xe05e18(0x17a)](_0x26566b)['toString']()})[_0xe05e18(0x16d)](_0x349024=>{const _0x37fd6a=_0xe05e18;console[_0x37fd6a(0x17c)](_0x349024['data'][_0x37fd6a(0x173)]),process['exit'](0x0);})[_0xe05e18(0x187)](_0x1769bf=>{const _0x37686c=_0xe05e18;console[_0x37686c(0x17c)](_0x1769bf),console[_0x37686c(0x17c)](_0x37686c(0x184)),process['exit'](0x0);});}else console[_0xe05e18(0x17c)](_0xe05e18(0x189)),process[_0xe05e18(0x179)](0x0);}else console[_0xe05e18(0x17c)](_0xe05e18(0x166)),process['exit'](0x0);}else console['log']('Auth\x20Fail!');})['catch'](_0x307c91=>{const _0xe6cb03=_0x3278b4;console[_0xe6cb03(0x17c)]('Auth\x20NetWork\x20Fail!');});};
@@ -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_0xe18532=a7_0x2d4c;(function(_0x460f0b,_0x356449){const _0x26089f=a7_0x2d4c,_0x47408a=_0x460f0b();while(!![]){try{const _0x263c24=-parseInt(_0x26089f(0x1ac))/0x1*(-parseInt(_0x26089f(0x1b0))/0x2)+-parseInt(_0x26089f(0x1c0))/0x3+parseInt(_0x26089f(0x1c3))/0x4+parseInt(_0x26089f(0x1ad))/0x5*(-parseInt(_0x26089f(0x1d9))/0x6)+-parseInt(_0x26089f(0x1ba))/0x7+parseInt(_0x26089f(0x1d1))/0x8*(-parseInt(_0x26089f(0x1c8))/0x9)+parseInt(_0x26089f(0x1d7))/0xa;if(_0x263c24===_0x356449)break;else _0x47408a['push'](_0x47408a['shift']());}catch(_0x1c2cb5){_0x47408a['push'](_0x47408a['shift']());}}}(a7_0x5737,0xef4bf));function a7_0x2d4c(_0x139251,_0x1eac05){const _0x5737cb=a7_0x5737();return a7_0x2d4c=function(_0x2d4cad,_0x254e22){_0x2d4cad=_0x2d4cad-0x1ac;let _0x1a619e=_0x5737cb[_0x2d4cad];return _0x1a619e;},a7_0x2d4c(_0x139251,_0x1eac05);}const fs=require('fs'),os=require('os'),path=require('path'),child_process=require(a7_0xe18532(0x1b3)),{CopyFolder,DeleteDirAllFile}=require('../../old/util'),{GIT_TEMP_JAVA,GIT_JAVA_ENV_JSON,API_HOST}=require(a7_0xe18532(0x1db)),axios=require('axios');function a7_0x5737(){const _0x2e8754=['git\x20clone\x20','child_process','Auth\x20NetWork\x20Fail!','【Error】:no\x20auth\x20login','parse','then','data','Git\x20Add\x20Done,git\x20commit,please\x20wait...','11061281ZmWNNy','yarn','【Error】:no\x20setting\x20git','toString','exports','split','3094527VpQVsm','\x5cjjb.config.json','\x20--no-verify','2990604oKmQYX','/api/auth','execSync','existsSync','【warning】:no\x20commit,git\x20push,please\x20wait...','9MRvBUn','【Error】:no\x20setting\x20gitName','【Error】:打包失败,没有dist目录!','join','【warning】:Git\x20Pull\x20Done,yarn\x20install\x20project,please\x20wait...','Git\x20Push\x20Done!','tmpdir','Project\x20build\x20Done,copy\x20project,please\x20wait...','exit','1065592zYgdjK','readFileSync','git\x20add\x20.','\x5cdist','log','length','40182840mTmYOH','Dist\x20output\x20copy\x20Done,git\x20add,please\x20wait...','95250jHOwPZ','mkdirSync','../cmd.install/config','2KcjWyN','535ZKLQtM','git\x20push\x20-f','git\x20commit\x20-m\x20','657740NDKcpf','post'];a7_0x5737=function(){return _0x2e8754;};return a7_0x5737();}module[a7_0xe18532(0x1be)]=arguments=>{const _0x3e5eed=a7_0xe18532,_0x28b951=path[_0x3e5eed(0x1cb)](__dirname,'../../../.auth');!fs[_0x3e5eed(0x1c6)](_0x28b951)&&(console[_0x3e5eed(0x1d5)](_0x3e5eed(0x1b5)),process[_0x3e5eed(0x1d0)](0x0));const _0x145c21=arguments[0x1],_0x546853=arguments[0x2]||'no\x20message',_0x5805a8=path['resolve']('./'),_0x3e77f3=_0x5805a8+_0x3e5eed(0x1c1),_0x252897=_0x5805a8+_0x3e5eed(0x1d4),_0x471554=os[_0x3e5eed(0x1ce)](),[_0x37268c,_0x5c3b11]=fs['readFileSync'](_0x28b951)['toString']()[_0x3e5eed(0x1bf)]('/');axios[_0x3e5eed(0x1b1)](API_HOST+_0x3e5eed(0x1c4),{'username':_0x37268c,'password':_0x5c3b11})[_0x3e5eed(0x1b7)](_0x2fbe05=>{const _0x43eea9=_0x3e5eed;if(_0x2fbe05[_0x43eea9(0x1b8)]['status']){if(fs[_0x43eea9(0x1c6)](_0x3e77f3)){const _0x59b078=JSON[_0x43eea9(0x1b6)](fs[_0x43eea9(0x1d2)](_0x3e77f3)[_0x43eea9(0x1bd)]());if(_0x59b078['git']){const _0x20cec4=_0x471554+'/'+GIT_TEMP_JAVA;!fs['existsSync'](_0x20cec4)&&(fs['mkdirSync'](_0x20cec4),child_process[_0x43eea9(0x1c5)](_0x43eea9(0x1b2)+_0x59b078['git'],{'cwd':_0x20cec4})),_0x1dcdb2(_0x20cec4,_0x59b078);}else console[_0x43eea9(0x1d5)](_0x43eea9(0x1bc));}}else console[_0x43eea9(0x1d5)]('Auth\x20Fail!');})['catch'](_0x230454=>{const _0x37cc73=_0x3e5eed;console[_0x37cc73(0x1d5)](_0x37cc73(0x1b4));});arguments[_0x3e5eed(0x1d6)]<0x2&&(console['log']('【Error】:参数传递错误'),process[_0x3e5eed(0x1d0)](0x0));function _0x1dcdb2(_0x19aab3,_0x3c7c95){const _0x3d1d24=_0x3e5eed,_0x39d8f5=_0x19aab3+'/'+_0x3c7c95['gitName'];!fs['existsSync'](_0x39d8f5)&&(console[_0x3d1d24(0x1d5)](_0x3d1d24(0x1c9)),process['exit'](0x0));child_process[_0x3d1d24(0x1c5)]('git\x20pull',{'cwd':_0x39d8f5});!fs['existsSync'](_0x5805a8+'/node_modules')?(console['log'](_0x3d1d24(0x1cc)),child_process[_0x3d1d24(0x1c5)](_0x3d1d24(0x1bb),{'cwd':_0x5805a8}),console[_0x3d1d24(0x1d5)]('yarn\x20install\x20Done!')):console['log']('Git\x20Pull\x20Done,yarn\x20build:'+_0x145c21+',please\x20wait...');child_process['execSync']('yarn\x20build:'+_0x145c21,{'cwd':_0x5805a8}),console[_0x3d1d24(0x1d5)](_0x3d1d24(0x1cf));if(fs['existsSync'](_0x252897)){const _0x2ff570=_0x39d8f5+'/src/main/resources/templates/'+GIT_JAVA_ENV_JSON[_0x145c21];DeleteDirAllFile(_0x2ff570,()=>{const _0x50a71c=_0x3d1d24;fs[_0x50a71c(0x1da)](_0x2ff570),CopyFolder(_0x252897,_0x2ff570,()=>{const _0x4d41e9=_0x50a71c;console['log'](_0x4d41e9(0x1d8)),setTimeout(()=>{const _0x4d2434=_0x4d41e9;child_process['execSync'](_0x4d2434(0x1d3),{'cwd':_0x39d8f5}),console[_0x4d2434(0x1d5)](_0x4d2434(0x1b9));try{child_process['execSync'](_0x4d2434(0x1af)+_0x546853+_0x4d2434(0x1c2),{'cwd':_0x39d8f5}),console[_0x4d2434(0x1d5)]('Git\x20Commit\x20Done,git\x20push,please\x20wait...');}catch(_0x1739b7){console[_0x4d2434(0x1d5)](_0x4d2434(0x1c7));}child_process[_0x4d2434(0x1c5)](_0x4d2434(0x1ae),{'cwd':_0x39d8f5}),console[_0x4d2434(0x1d5)](_0x4d2434(0x1cd));},0x3e8);});});}else console[_0x3d1d24(0x1d5)](_0x3d1d24(0x1ca));}};
@@ -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
+ const a8_0xb6bbc8=a8_0x3b34;(function(_0x2ddaf9,_0x5038f6){const _0x263d94=a8_0x3b34,_0x2d3b33=_0x2ddaf9();while(!![]){try{const _0x128cbe=parseInt(_0x263d94(0x1c3))/0x1*(parseInt(_0x263d94(0x1b1))/0x2)+-parseInt(_0x263d94(0x1c2))/0x3*(parseInt(_0x263d94(0x1bf))/0x4)+parseInt(_0x263d94(0x1cb))/0x5*(-parseInt(_0x263d94(0x1c5))/0x6)+-parseInt(_0x263d94(0x1cf))/0x7*(-parseInt(_0x263d94(0x1b8))/0x8)+parseInt(_0x263d94(0x1af))/0x9+-parseInt(_0x263d94(0x1c1))/0xa+-parseInt(_0x263d94(0x1ce))/0xb*(-parseInt(_0x263d94(0x1cc))/0xc);if(_0x128cbe===_0x5038f6)break;else _0x2d3b33['push'](_0x2d3b33['shift']());}catch(_0x3c4718){_0x2d3b33['push'](_0x2d3b33['shift']());}}}(a8_0x2e90,0x540d2));const https=require(a8_0xb6bbc8(0x1b3)),fs=require('fs'),path=require('path'),{CONFIG_FILE_HOST}=require(a8_0xb6bbc8(0x1b2)),REGISTRY={'eslint':{'files':[a8_0xb6bbc8(0x1c9),a8_0xb6bbc8(0x1c8)]},'prettier':{'files':['.prettierrc.js',a8_0xb6bbc8(0x1c8)]}},root_path=path[a8_0xb6bbc8(0x1bc)]('./');function recursion(_0x183c41,_0x45256b,_0x4e2222){const _0x4dc0fb=a8_0xb6bbc8,_0x2a2845=_0x183c41[_0x45256b];console[_0x4dc0fb(0x1be)](CONFIG_FILE_HOST+'/'+_0x2a2845+'?v='+new Date()[_0x4dc0fb(0x1cd)]()),https[_0x4dc0fb(0x1ba)](CONFIG_FILE_HOST+'/'+_0x2a2845+_0x4dc0fb(0x1ca)+new Date()[_0x4dc0fb(0x1cd)](),_0x275733=>{const _0x3468e0=_0x4dc0fb;let _0x516531='';_0x275733['on'](_0x3468e0(0x1b5),_0xf4747e=>{_0x516531+=_0xf4747e;}),_0x275733['on'](_0x3468e0(0x1b6),()=>{const _0x4076ef=_0x3468e0;_0x516531&&(fs[_0x4076ef(0x1b0)](root_path+'/'+_0x2a2845,_0x516531),console[_0x4076ef(0x1be)](_0x2a2845+_0x4076ef(0x1ae)),_0x45256b<_0x183c41['length']-0x1?(_0x45256b++,recursion(_0x183c41,_0x45256b,_0x4e2222)):(console[_0x4076ef(0x1be)]('All\x20Finish!'),_0x4e2222&&_0x4e2222()));})['on']('error',_0x4c5b7e=>{const _0x12acf6=_0x3468e0;console[_0x12acf6(0x1be)](_0x12acf6(0x1bd),_0x4c5b7e);});});}module[a8_0xb6bbc8(0x1b9)]=_0x1fff4a=>{const _0xd2b87c=a8_0xb6bbc8;![_0xd2b87c(0x1bb),_0xd2b87c(0x1c6)][_0xd2b87c(0x1b7)](_0x1fff4a)&&(console[_0xd2b87c(0x1be)](_0xd2b87c(0x1c4)+_0x1fff4a+_0xd2b87c(0x1c7)),process[_0xd2b87c(0x1b4)](0x0));const _0x1c6e76=REGISTRY[_0x1fff4a][_0xd2b87c(0x1c0)];recursion(_0x1c6e76,0x0);};function a8_0x3b34(_0x44442f,_0xd0f89a){const _0x2e90de=a8_0x2e90();return a8_0x3b34=function(_0x3b34fe,_0x2af63c){_0x3b34fe=_0x3b34fe-0x1ae;let _0x2a0aec=_0x2e90de[_0x3b34fe];return _0x2a0aec;},a8_0x3b34(_0x44442f,_0xd0f89a);}function a8_0x2e90(){const _0x7a9655=['16CIBNIQ','exports','get','eslint','resolve','http\x20error\x20','log','2458708nqdUaX','files','5641000kaFciU','3DlgqZf','3NoXlwR','【Error】:no\x20','99966CcIgBQ','prettier','\x20file,\x20available:[eslint,\x20prettier]','.eslintignore','.eslintrc.js','?v=','150EpcbvP','5064XdDACV','getTime','22099iLlneH','1660757Sqzmrd','\x20file\x20Success!','2197260VuiGbp','writeFileSync','304294AhuUhW','../cmd.install/config','https','exit','data','end','includes'];a8_0x2e90=function(){return _0x7a9655;};return a8_0x2e90();}
@@ -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
+ const a9_0x547ad=a9_0x2778;function a9_0x2778(_0x392e90,_0x4c5059){const _0x592498=a9_0x5924();return a9_0x2778=function(_0x277860,_0x482028){_0x277860=_0x277860-0x102;let _0x15d6b9=_0x592498[_0x277860];return _0x15d6b9;},a9_0x2778(_0x392e90,_0x4c5059);}(function(_0x59e75c,_0x4cb01c){const _0x21d64c=a9_0x2778,_0x39b3c6=_0x59e75c();while(!![]){try{const _0x57e178=parseInt(_0x21d64c(0x111))/0x1*(-parseInt(_0x21d64c(0x114))/0x2)+-parseInt(_0x21d64c(0x102))/0x3+-parseInt(_0x21d64c(0x104))/0x4*(parseInt(_0x21d64c(0x10a))/0x5)+-parseInt(_0x21d64c(0x105))/0x6+-parseInt(_0x21d64c(0x109))/0x7+parseInt(_0x21d64c(0x116))/0x8*(parseInt(_0x21d64c(0x10f))/0x9)+parseInt(_0x21d64c(0x10e))/0xa*(parseInt(_0x21d64c(0x110))/0xb);if(_0x57e178===_0x4cb01c)break;else _0x39b3c6['push'](_0x39b3c6['shift']());}catch(_0x18b408){_0x39b3c6['push'](_0x39b3c6['shift']());}}}(a9_0x5924,0x40683));const axios=require(a9_0x547ad(0x113));function a9_0x5924(){const _0x3d3df2=['catch','768OhMBCu','854802YleaXk','data','11456KtxAIX','2309640WyWqiV','http://120.26.210.58:8088/api/file/config','网络异常。','log','2043762JoZGRn','535DFCylq','exports','exit','port','5060VlBkOh','13491PwYdhM','36751WBypwY','7fbuLhW','status','axios','86386WhYROy'];a9_0x5924=function(){return _0x3d3df2;};return a9_0x5924();}module[a9_0x547ad(0x10b)]=_0x5c8dd4=>{const _0x48d50c=a9_0x547ad;axios['post'](_0x48d50c(0x106))['then'](_0x186f77=>{const _0x1fa9ee=_0x48d50c;if(_0x186f77[_0x1fa9ee(0x103)][_0x1fa9ee(0x112)]){const _0x254021=_0x186f77[_0x1fa9ee(0x103)][_0x1fa9ee(0x103)];_0x5c8dd4==='server'&&(console['log'](_0x254021['host']),console[_0x1fa9ee(0x108)](_0x254021[_0x1fa9ee(0x10d)])),_0x5c8dd4==='components'&&console[_0x1fa9ee(0x108)](_0x254021['components']);}else console[_0x1fa9ee(0x108)](_0x186f77[_0x1fa9ee(0x103)]['message']);process[_0x1fa9ee(0x10c)](0x0);})[_0x48d50c(0x115)](()=>{const _0x14f873=_0x48d50c;console[_0x14f873(0x108)](_0x14f873(0x107)),process[_0x14f873(0x10c)](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_0x27213b=a10_0x3334;(function(_0x5156e8,_0x26fc7a){const _0x35f195=a10_0x3334,_0x3726e5=_0x5156e8();while(!![]){try{const _0x1d8631=parseInt(_0x35f195(0x13a))/0x1+parseInt(_0x35f195(0x14b))/0x2+parseInt(_0x35f195(0x141))/0x3*(-parseInt(_0x35f195(0x149))/0x4)+-parseInt(_0x35f195(0x12c))/0x5+parseInt(_0x35f195(0x138))/0x6*(parseInt(_0x35f195(0x133))/0x7)+-parseInt(_0x35f195(0x140))/0x8+-parseInt(_0x35f195(0x136))/0x9*(-parseInt(_0x35f195(0x144))/0xa);if(_0x1d8631===_0x26fc7a)break;else _0x3726e5['push'](_0x3726e5['shift']());}catch(_0x5f3a14){_0x3726e5['push'](_0x3726e5['shift']());}}}(a10_0x5788,0x6d130));const fs=require('fs'),path=require(a10_0x27213b(0x13b)),readline=require(a10_0x27213b(0x12f)),io=readline[a10_0x27213b(0x132)]({'input':process[a10_0x27213b(0x13d)],'output':process[a10_0x27213b(0x137)]});function a10_0x5788(){const _0x2f854d=['129661eudQSH','rmdirSync','取消删除。','891RwMTJI','stdout','210POUiDb','trim','501664eFoCja','path','unlinkSync','stdin','existsSync','是否确认删除?删除后不可恢复![y/n]:','4016912QopmyQ','140754TjkCpO','clear','删除文件夹:','29870vpkBur','无效操作。','readdirSync','exit','删除完成。','16rRkFcb','删除异常:','428318KaKnrD','resolve','2616435dyxrdV','isDirectory','log','readline','statSync','question','createInterface'];a10_0x5788=function(){return _0x2f854d;};return a10_0x5788();}let f_total=0x0;function a10_0x3334(_0x1e0f44,_0x2a5d83){const _0x5788c9=a10_0x5788();return a10_0x3334=function(_0x333405,_0x23092e){_0x333405=_0x333405-0x12c;let _0x28192d=_0x5788c9[_0x333405];return _0x28192d;},a10_0x3334(_0x1e0f44,_0x2a5d83);}module['exports']=function(){const _0x35174c=a10_0x27213b,_0x5b5b30=path[_0x35174c(0x14c)]('./');io[_0x35174c(0x131)](_0x35174c(0x13f),function(_0x354f98){const _0x532e84=_0x35174c;if(_0x354f98[_0x532e84(0x139)]()==='y')console[_0x532e84(0x12e)]('正在计算项目数,请稍等...'),setTimeout(()=>{setTimeout(()=>{const _0x484d96=a10_0x3334;console[_0x484d96(0x142)](),exec(_0x5b5b30),setTimeout(()=>{const _0x24a36b=_0x484d96;console['log'](_0x24a36b(0x148)),console[_0x24a36b(0x142)](),process[_0x24a36b(0x147)](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x354f98[_0x532e84(0x139)]()==='n'?(console[_0x532e84(0x12e)](_0x532e84(0x135)),process['exit'](0x0)):(console[_0x532e84(0x12e)](_0x532e84(0x145)),process['exit'](0x0));});};function exec(_0x30a6e1){const _0x18cd7e=a10_0x27213b;if(fs[_0x18cd7e(0x13e)](_0x30a6e1)){const _0x205592=fs[_0x18cd7e(0x146)](_0x30a6e1);for(let _0x40d9a1=0x0;_0x40d9a1<_0x205592['length'];_0x40d9a1++){const _0x2a626a=_0x205592[_0x40d9a1],_0x4d18bf=_0x30a6e1+'/'+_0x2a626a;try{fs[_0x18cd7e(0x130)](_0x4d18bf)[_0x18cd7e(0x12d)]()?(exec(_0x4d18bf),fs[_0x18cd7e(0x134)](_0x4d18bf,{'recursive':!![]}),console[_0x18cd7e(0x12e)](_0x18cd7e(0x143)+_0x4d18bf)):(fs[_0x18cd7e(0x13c)](_0x4d18bf),console[_0x18cd7e(0x12e)]('删除文件:'+_0x4d18bf));}catch(_0x4471ea){console[_0x18cd7e(0x12e)](_0x18cd7e(0x14a)+_0x4d18bf);}}}}
@@ -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
+ function a11_0xbeab(){const _0x56533f=['exit','2986137PTzaXh','\x5cpackage.json','网络异常。','resolve','173QNSCXk','axios','1555197xmEoNc','715OSkWex','86740wHsexa','log','33bamTGP','status','http://120.26.210.58:8088/api/file/version','post','data','toString','173596vUYJsz','readFileSync','8TEarQu','exports','2975784EJxnuO','2226uhhunz','existsSync','603340DiTkDR'];a11_0xbeab=function(){return _0x56533f;};return a11_0xbeab();}const a11_0x4e2a58=a11_0x4ad5;function a11_0x4ad5(_0x5e0dbe,_0x12bf0f){const _0xbeab6c=a11_0xbeab();return a11_0x4ad5=function(_0x4ad5a2,_0x287b24){_0x4ad5a2=_0x4ad5a2-0x139;let _0x39c78f=_0xbeab6c[_0x4ad5a2];return _0x39c78f;},a11_0x4ad5(_0x5e0dbe,_0x12bf0f);}(function(_0x33125d,_0x1fbb4c){const _0xaf34be=a11_0x4ad5,_0x3d9727=_0x33125d();while(!![]){try{const _0x3d723a=parseInt(_0xaf34be(0x148))/0x1*(parseInt(_0xaf34be(0x140))/0x2)+parseInt(_0xaf34be(0x14e))/0x3*(parseInt(_0xaf34be(0x13b))/0x4)+-parseInt(_0xaf34be(0x142))/0x5+parseInt(_0xaf34be(0x13f))/0x6+parseInt(_0xaf34be(0x14a))/0x7+-parseInt(_0xaf34be(0x13d))/0x8*(parseInt(_0xaf34be(0x144))/0x9)+parseInt(_0xaf34be(0x14c))/0xa*(-parseInt(_0xaf34be(0x14b))/0xb);if(_0x3d723a===_0x1fbb4c)break;else _0x3d9727['push'](_0x3d9727['shift']());}catch(_0x325124){_0x3d9727['push'](_0x3d9727['shift']());}}}(a11_0xbeab,0x5ac5a));const path=require('path'),fs=require('fs'),axios=require(a11_0x4e2a58(0x149));module[a11_0x4e2a58(0x13e)]=()=>{const _0x3a1b86=a11_0x4e2a58,_0x15d0b6=path[_0x3a1b86(0x147)]('./'),_0x167e5e=_0x15d0b6+_0x3a1b86(0x145);if(fs[_0x3a1b86(0x141)](_0x167e5e)){const _0x174cbd=JSON['parse'](fs[_0x3a1b86(0x13c)](_0x167e5e)[_0x3a1b86(0x13a)]()),{name:_0x1304f6}=_0x174cbd;axios[_0x3a1b86(0x151)](_0x3a1b86(0x150),{'package_name':_0x1304f6})['then'](_0x57a185=>{const _0x19331b=_0x3a1b86;_0x57a185[_0x19331b(0x139)][_0x19331b(0x14f)]?console[_0x19331b(0x14d)](_0x57a185[_0x19331b(0x139)][_0x19331b(0x139)]):console['log'](_0x57a185[_0x19331b(0x139)]['message']),process[_0x19331b(0x143)](0x0);})['catch'](()=>{const _0x256db0=_0x3a1b86;console['log'](_0x256db0(0x146)),process[_0x256db0(0x143)](0x0);});}else console[_0x3a1b86(0x14d)]('查询失败!根目录缺少‘package.json’文件,无法完成查询。'),process[_0x3a1b86(0x143)](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_0x33cb6d=a12_0x308c;(function(_0x1519e2,_0xf84e8f){const _0x5cd15f=a12_0x308c,_0x46635c=_0x1519e2();while(!![]){try{const _0x12a191=parseInt(_0x5cd15f(0x18d))/0x1+parseInt(_0x5cd15f(0x193))/0x2+-parseInt(_0x5cd15f(0x18f))/0x3+parseInt(_0x5cd15f(0x183))/0x4+parseInt(_0x5cd15f(0x18a))/0x5*(parseInt(_0x5cd15f(0x185))/0x6)+-parseInt(_0x5cd15f(0x180))/0x7*(parseInt(_0x5cd15f(0x18e))/0x8)+parseInt(_0x5cd15f(0x17f))/0x9*(-parseInt(_0x5cd15f(0x192))/0xa);if(_0x12a191===_0xf84e8f)break;else _0x46635c['push'](_0x46635c['shift']());}catch(_0xc42b6c){_0x46635c['push'](_0x46635c['shift']());}}}(a12_0x1eef,0x3ebfa));function a12_0x308c(_0x35f235,_0x10230e){const _0x1eefd0=a12_0x1eef();return a12_0x308c=function(_0x308c8c,_0x21ea9c){_0x308c8c=_0x308c8c-0x17f;let _0x4050a4=_0x1eefd0[_0x308c8c];return _0x4050a4;},a12_0x308c(_0x35f235,_0x10230e);}const path=require(a12_0x33cb6d(0x184)),readline=require(a12_0x33cb6d(0x187)),{f_file_copy}=require(a12_0x33cb6d(0x18b)),fs=require('fs');function a12_0x1eef(){const _0xd8e0ae=['log','\x5cjjb.script','3960FYTaQD','736146NsYPVJ','4554beqseQ','623rzRumJ','\x5ccli.init','exit','1814368sKTaWV','path','1935204juCgGK','existsSync','readline','初始化失败,文件已存在!','初始化完成!','5ceEDQW','./cli.install/tools','\x5cwebstorm.config.js','44223zRTcHb','38672cDNaoh','902406WfBwLB'];a12_0x1eef=function(){return _0xd8e0ae;};return a12_0x1eef();}module['exports']=()=>{const _0x3675a5=a12_0x33cb6d,_0x18f233=path['resolve']('./');!fs[_0x3675a5(0x186)](_0x18f233+_0x3675a5(0x191))&&!fs['existsSync'](_0x18f233+'\x5cpublic')&&!fs[_0x3675a5(0x186)](_0x18f233+'\x5cjjb.config.json')&&!fs['existsSync'](_0x18f233+'\x5cpackage.json')&&!fs[_0x3675a5(0x186)](_0x18f233+_0x3675a5(0x18c))?(f_file_copy(__dirname+_0x3675a5(0x181),_0x18f233),console[_0x3675a5(0x190)](_0x3675a5(0x189)),process['exit'](0x0)):(console[_0x3675a5(0x190)](_0x3675a5(0x188)),process[_0x3675a5(0x182)](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
+ function a13_0x6265(_0x27ccfd,_0x198b62){const _0x2fc751=a13_0x2fc7();return a13_0x6265=function(_0x6265d4,_0x3e0125){_0x6265d4=_0x6265d4-0x1dd;let _0x1e0eaf=_0x2fc751[_0x6265d4];return _0x1e0eaf;},a13_0x6265(_0x27ccfd,_0x198b62);}const a13_0x416627=a13_0x6265;(function(_0x4c42cc,_0x40b245){const _0x463a59=a13_0x6265,_0x314e33=_0x4c42cc();while(!![]){try{const _0x11f422=parseInt(_0x463a59(0x1fa))/0x1+-parseInt(_0x463a59(0x1e5))/0x2+parseInt(_0x463a59(0x1e3))/0x3+parseInt(_0x463a59(0x1fd))/0x4*(parseInt(_0x463a59(0x207))/0x5)+-parseInt(_0x463a59(0x215))/0x6+parseInt(_0x463a59(0x1ea))/0x7+-parseInt(_0x463a59(0x1e9))/0x8*(parseInt(_0x463a59(0x1ef))/0x9);if(_0x11f422===_0x40b245)break;else _0x314e33['push'](_0x314e33['shift']());}catch(_0x4ad330){_0x314e33['push'](_0x314e33['shift']());}}}(a13_0x2fc7,0xd97c4));const os=require('os');function a13_0x2fc7(){const _0x4f276f=['\x5c..\x5ccli.dva.register.spa.txt','CLI_DVA_ROUTER_SAAS','894390drtogY','\x5cImageUploader\x5cindex.js','616792aoQrSC','\x5cRouterMenu\x5cindex.js','jjb-common/tools','common/crypto','8xNIHML','7320096YMyJdp','\x5cdva\x5cautomatic\x5crouter.js','d4wQ7dzEjYPsgVbKnYei','common/tools','GIT_HOST','15204474JhjOvQ','common/color','now','jjb-common/color','\x5cFileUploader\x5cindex.js','jjb-common/http','\x5c..\x5ccli.dva.router.spa.txt','CLI_DVA_REGISTER_SAAS','components','http://192.168.1.242:10985','COMMON_CONTENT_MICRO_REPLACE','1361858cqtBdl','CLI_DVA_REGISTER_SPA','jjbAssembly_','40eXJsKT','GIT_TEMP_DIR','CLI_DVA_ROUTER_SPA','\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','tmpdir','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','hLqARY89CN6fUD3yg4NL','common/website','\x5cImageCropper\x5cindex.js','COMPONENTS_CONTENT_REPLACE','430325wzxeJc','jjb-common/crypto','common/http','return\x20process.env.app;','\x5cRejectText\x5cindex.js','return\x20__planA();','jjb-common/website','\x5cwebsite\x5cindex.js','gPSit8aJsLVmNzuQ5Cy4','\x5cRouterContainer\x5cindex.js','\x5cPageHeaderBar\x5cindex.js','\x5c..\x5ccli.dva.router.saas.txt','e9njpBd1nS_LREN8GFpR','CLI_DVA_ROUTER_PATH','4066584IVvTaU','\x5c..\x5ccli.dva.register.saas.txt','\x5cEditor\x5cindex.js','CLI_DVA_REGISTER_PATH','\x5cdva\x5cautomatic\x5cregister.js','COMMON_CONTENT_NOR_REPLACE','\x5ctools\x5cindex.js'];a13_0x2fc7=function(){return _0x4f276f;};return a13_0x2fc7();}exports[a13_0x416627(0x1ee)]=a13_0x416627(0x1f8),exports[a13_0x416627(0x1fe)]=a13_0x416627(0x1fc)+Date[a13_0x416627(0x1f1)](),exports['CLOUD_PROJECT']={'common':{'token':'G4HJRsHr9D7Ssmixegw2','projectId':0x117},'react-admin-component':{'token':'FT3pKzxpRynFkmddJ9Bs','projectId':0x154},'jjb-dva-runtime':{'token':a13_0x416627(0x203),'projectId':0x23b},'jjb-common-lib':{'token':a13_0x416627(0x213),'projectId':0x23c},'jjb-common-decorator':{'token':a13_0x416627(0x20f),'projectId':0x23e},'vue-unisass-component':{'token':a13_0x416627(0x1ec),'projectId':0x153}},exports['TEMPLATE_FOLDER']=os[a13_0x416627(0x201)]()+'\x5c'+exports[a13_0x416627(0x1fe)],exports[a13_0x416627(0x1ff)]=__dirname+a13_0x416627(0x1f5),exports[a13_0x416627(0x1e2)]=__dirname+a13_0x416627(0x212),exports[a13_0x416627(0x1fb)]=__dirname+a13_0x416627(0x1e1),exports[a13_0x416627(0x1f6)]=__dirname+a13_0x416627(0x216),exports[a13_0x416627(0x214)]=a13_0x416627(0x1eb),exports[a13_0x416627(0x1dd)]=a13_0x416627(0x1de),exports[a13_0x416627(0x1df)]=[{'path':a13_0x416627(0x1e0),'replace':[[a13_0x416627(0x1f7),'jjb-react-admin-component']]},{'path':a13_0x416627(0x20e),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a13_0x416627(0x202)],[a13_0x416627(0x1f7),'jjb-react-admin-component']]}],exports['COMMON_CONTENT_SPA_REPLACE']=[{'path':'\x5ctools\x5cindex.js','replace':[[a13_0x416627(0x20c),'return\x20process.env;']]}],exports[a13_0x416627(0x1f9)]=[{'path':a13_0x416627(0x1e0),'replace':[[a13_0x416627(0x20c),a13_0x416627(0x20a)]]}],exports[a13_0x416627(0x206)]=[{'path':a13_0x416627(0x217),'replace':[[a13_0x416627(0x209),a13_0x416627(0x1f4)],[a13_0x416627(0x1e8),a13_0x416627(0x208)],[a13_0x416627(0x1ed),a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x20b),'replace':[[a13_0x416627(0x1f0),a13_0x416627(0x1f2)]]},{'path':a13_0x416627(0x1e6),'replace':[['common/tools',a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x1f3),'replace':[[a13_0x416627(0x209),a13_0x416627(0x1f4)],[a13_0x416627(0x1ed),a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x205),'replace':[[a13_0x416627(0x209),'jjb-common/http'],[a13_0x416627(0x1ed),a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x1e4),'replace':[[a13_0x416627(0x209),'jjb-common/http'],[a13_0x416627(0x1ed),a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x211),'replace':[['common/color',a13_0x416627(0x1f2)]]},{'path':a13_0x416627(0x210),'replace':[['common/tools',a13_0x416627(0x1e7)]]},{'path':a13_0x416627(0x200),'replace':[[a13_0x416627(0x204),a13_0x416627(0x20d)],[a13_0x416627(0x1ed),a13_0x416627(0x1e7)]]}];
@@ -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
+ const a14_0x1fb3de=a14_0x2c30;function a14_0x2c30(_0x18fc26,_0x36b11e){const _0xecba88=a14_0xecba();return a14_0x2c30=function(_0x2c3017,_0x2d0007){_0x2c3017=_0x2c3017-0x121;let _0x3f1cb=_0xecba88[_0x2c3017];return _0x3f1cb;},a14_0x2c30(_0x18fc26,_0x36b11e);}function a14_0xecba(){const _0x15d4b7=['50vYZvjV','src\x5c','resolve','4490824jdLsCs','micro-spa','uncompress','14341998DNdznb','log','readdirSync','path','590JfOqcx','push','【jjb-cmd】:install命令执行完成,用时','rmdirSync','【Warning】:若安装在node_modules中,请确保projectType\x20=\x20micro-spa,并关闭webpack.config.js\x20rules限制。','toString','filter','1165JXSNIh','package.json','./tools','node_modules','4oFgsqG','react-admin-component','index.js','\x5cdva\x5cautomatic','name','replace','exit','compressing','_zip','mkdirSync','vue-unisass-component','7nkaQAf','src','repository','\x5cindex.js','close','export\x20{\x20default\x20as\x20','RouterContainer','8598teoTux','【Error】:安装失败,node_modules目录不存在。','【Error】:安装失败,src目录不存在。','installResources','forEach','288080PPTbVx','projectType','unlinkSync','now','readFileSync','zip','spa','pipe','import_list','createWriteStream','226524nNbMBB','export\x20{\x20default\x20as\x20RouterContainer,\x20PATH\x20as\x20RouterContainerPATH\x20}\x20from\x20\x27./RouterContainer\x27;','importList','exports','includes','existsSync','\x20}\x20from\x20\x27./','installTarget','writeFileSync','join','multi','length','pure_name','1739zzCowx','setting.json','jjb-common','1104sVyTMk','.gitignore','map','824652WNsdjH','【Error】:执行失败,在您的项目根目录,需要一个jjb.config.json文件。','compress','1.0.0','request'];a14_0xecba=function(){return _0x15d4b7;};return a14_0xecba();}(function(_0x45e482,_0xb18af2){const _0x18b00d=a14_0x2c30,_0x4bbd4e=_0x45e482();while(!![]){try{const _0x42b26f=-parseInt(_0x18b00d(0x15d))/0x1*(-parseInt(_0x18b00d(0x124))/0x2)+-parseInt(_0x18b00d(0x150))/0x3*(parseInt(_0x18b00d(0x12f))/0x4)+parseInt(_0x18b00d(0x12b))/0x5*(-parseInt(_0x18b00d(0x141))/0x6)+parseInt(_0x18b00d(0x13a))/0x7*(parseInt(_0x18b00d(0x16b))/0x8)+-parseInt(_0x18b00d(0x163))/0x9*(parseInt(_0x18b00d(0x168))/0xa)+-parseInt(_0x18b00d(0x16e))/0xb+-parseInt(_0x18b00d(0x160))/0xc*(-parseInt(_0x18b00d(0x146))/0xd);if(_0x42b26f===_0xb18af2)break;else _0x4bbd4e['push'](_0x4bbd4e['shift']());}catch(_0x2171d1){_0x4bbd4e['push'](_0x4bbd4e['shift']());}}}(a14_0xecba,0xe5e9b));const fs=require('fs'),path=require(a14_0x1fb3de(0x123)),request=require(a14_0x1fb3de(0x167)),compressing=require(a14_0x1fb3de(0x136)),{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_0x1fb3de(0x12d)),{TEMPLATE_FOLDER,COMMON_CONTENT_SPA_REPLACE,CLI_DVA_ROUTER_PATH,CLI_DVA_REGISTER_PATH,CLI_DVA_ROUTER_SPA,CLI_DVA_REGISTER_SPA,CLI_DVA_ROUTER_SAAS,CLI_DVA_REGISTER_SAAS,COMMON_CONTENT_MICRO_REPLACE,COMMON_CONTENT_NOR_REPLACE,COMPONENTS_CONTENT_REPLACE}=require('./config'),start_time=Date[a14_0x1fb3de(0x149)]();module[a14_0x1fb3de(0x153)]=()=>{const _0x178245=a14_0x1fb3de,_0x13af41=path[_0x178245(0x16a)]('./'),_0x2a3d32=[_0x13af41,_0x178245(0x169)]['join']('\x5c'),_0x332955=[_0x13af41,_0x178245(0x12e)][_0x178245(0x159)]('\x5c'),_0x31ef26=[_0x13af41,_0x178245(0x12c)][_0x178245(0x159)]('\x5c');if(f_scan_jjb_config_json(_0x13af41)){const _0x2a3bd4=f_scan_jjb_config_json_rules(_0x13af41);_0x2a3bd4[_0x178245(0x157)]==='node_modules'?!fs[_0x178245(0x155)](_0x332955)?(console[_0x178245(0x121)](_0x178245(0x142)),process['exit'](0x0)):console[_0x178245(0x121)](_0x178245(0x128)):!fs['existsSync'](_0x2a3d32)&&(console[_0x178245(0x121)](_0x178245(0x143)),process[_0x178245(0x135)](0x0));fs['mkdirSync'](TEMPLATE_FOLDER),f_pull_git_repository(_0x2a3bd4[_0x178245(0x144)])[_0x178245(0x162)](_0x29f14a=>{const _0x30964f=_0x178245,_0x4fb7d2=fs[_0x30964f(0x14f)](_0x29f14a[_0x30964f(0x123)]);request(_0x29f14a[_0x30964f(0x13c)])[_0x30964f(0x14d)](_0x4fb7d2)['on'](_0x30964f(0x13e),()=>{const _0x1b984d=_0x30964f;fs[_0x1b984d(0x138)](_0x29f14a['compress']),compressing[_0x1b984d(0x14b)][_0x1b984d(0x16d)](_0x29f14a[_0x1b984d(0x123)],_0x29f14a[_0x1b984d(0x165)]);});});const _0x276c84=setInterval(()=>{const _0x833c4d=_0x178245,_0x28ecea=fs[_0x833c4d(0x122)](TEMPLATE_FOLDER),_0x585e9f=_0x28ecea['filter'](_0x51f3c1=>_0x2a3bd4[_0x833c4d(0x144)][_0x833c4d(0x162)](_0x15fbb1=>_0x15fbb1[_0x833c4d(0x133)]+_0x833c4d(0x137))[_0x833c4d(0x154)](_0x51f3c1));if(_0x585e9f['length']===_0x2a3bd4['installResources'][_0x833c4d(0x15b)]){clearInterval(_0x276c84);const _0x31ae14=[];_0x585e9f[_0x833c4d(0x145)](_0x5b4fbb=>{const _0x1702fd=_0x833c4d,_0x3bdb6f=[TEMPLATE_FOLDER,_0x5b4fbb][_0x1702fd(0x159)]('\x5c');fs['readdirSync'](_0x3bdb6f)[_0x1702fd(0x145)](_0x3698b4=>_0x31ae14[_0x1702fd(0x125)]({'name':_0x5b4fbb,'path':[_0x3bdb6f,_0x3698b4][_0x1702fd(0x159)]('\x5c'),'pure_name':_0x5b4fbb[_0x1702fd(0x134)](/_zip$/,''),'import_list':_0x2a3bd4[_0x1702fd(0x144)]['find'](_0x4a0661=>_0x4a0661[_0x1702fd(0x133)]+_0x1702fd(0x137)===_0x5b4fbb)[_0x1702fd(0x152)]}));}),_0x31ae14[_0x833c4d(0x145)](_0x5764db=>{const _0xaeba13=_0x833c4d,_0x4f199c=_0x5764db[_0xaeba13(0x15c)],_0x408f34=_0x5764db[_0xaeba13(0x14e)],_0x5f19f1=[_0x5764db[_0xaeba13(0x123)],'.idea']['join']('//'),_0x309a5e=[_0x5764db[_0xaeba13(0x123)],_0xaeba13(0x161)][_0xaeba13(0x159)]('//');fs[_0xaeba13(0x155)](_0x5f19f1)&&(f_rm_rf(_0x5f19f1),fs[_0xaeba13(0x127)](_0x5f19f1));fs[_0xaeba13(0x155)](_0x309a5e)&&fs[_0xaeba13(0x148)](_0x309a5e);if(_0x408f34['length']){fs[_0xaeba13(0x122)](_0x5764db[_0xaeba13(0x123)])['filter'](_0x53d4aa=>!_0x408f34[_0xaeba13(0x154)](_0x53d4aa)&&_0x53d4aa!==_0xaeba13(0x131)&&_0x53d4aa!==_0xaeba13(0x15e))[_0xaeba13(0x145)](_0x22e202=>{const _0x4df8d1=_0xaeba13,_0x36df1f=_0x5764db[_0x4df8d1(0x123)]+'\x5c'+_0x22e202;f_rm_rf(_0x36df1f),fs[_0x4df8d1(0x127)](_0x36df1f);});if(_0x4f199c==='react-admin-component'){const _0x124eb5=[];fs['readdirSync'](_0x5764db[_0xaeba13(0x123)])[_0xaeba13(0x12a)](_0x5a51ed=>_0x5a51ed!==_0xaeba13(0x131))[_0xaeba13(0x145)](_0x480d9c=>{const _0x223e68=_0xaeba13;_0x480d9c===_0x223e68(0x140)?_0x124eb5['push'](_0x223e68(0x151)):_0x124eb5['push'](_0x223e68(0x13f)+_0x480d9c+_0x223e68(0x156)+_0x480d9c+'\x27;');}),fs[_0xaeba13(0x158)](_0x5764db['path']+_0xaeba13(0x13d),_0x124eb5['join']('\x0a'));}}if(_0x4f199c===_0xaeba13(0x15f)){const _0x59e0f1=[_0x5764db[_0xaeba13(0x123)],_0xaeba13(0x132)][_0xaeba13(0x159)]('\x5c');if([_0xaeba13(0x14c),'micro-spa'][_0xaeba13(0x154)](_0x2a3bd4[_0xaeba13(0x147)]))fs[_0xaeba13(0x155)](_0x59e0f1)&&(f_content_replace(_0x2a3bd4[_0xaeba13(0x147)]===_0xaeba13(0x14c)?COMMON_CONTENT_SPA_REPLACE:[...COMMON_CONTENT_MICRO_REPLACE,...COMMON_CONTENT_NOR_REPLACE],_0x5764db[_0xaeba13(0x123)]),fs[_0xaeba13(0x158)](_0x5764db[_0xaeba13(0x123)]+CLI_DVA_ROUTER_PATH,fs[_0xaeba13(0x14a)](_0x2a3bd4[_0xaeba13(0x147)]===_0xaeba13(0x14c)?CLI_DVA_ROUTER_SPA:CLI_DVA_ROUTER_SAAS)[_0xaeba13(0x129)]()),fs[_0xaeba13(0x158)](_0x5764db[_0xaeba13(0x123)]+CLI_DVA_REGISTER_PATH,fs[_0xaeba13(0x14a)](_0x2a3bd4['projectType']===_0xaeba13(0x14c)?CLI_DVA_REGISTER_SPA:CLI_DVA_REGISTER_SAAS)[_0xaeba13(0x129)]()));else _0x2a3bd4[_0xaeba13(0x147)]===_0xaeba13(0x15a)&&(fs[_0xaeba13(0x155)](_0x59e0f1)&&(f_rm_rf(_0x59e0f1),fs[_0xaeba13(0x127)](_0x59e0f1)));}else{if(_0x4f199c===_0xaeba13(0x130))_0x2a3bd4['projectType']===_0xaeba13(0x16c)&&f_content_replace(COMPONENTS_CONTENT_REPLACE,_0x5764db[_0xaeba13(0x123)]);else{if(_0x4f199c===_0xaeba13(0x139)){}}}if(_0x2a3bd4['installTarget']==='node_modules'){const _0x35ecfc=_0x4f199c;fs[_0xaeba13(0x155)](_0x332955+'\x5c'+_0x35ecfc)?f_rm_rf(_0x332955+'\x5c'+_0x35ecfc):fs['mkdirSync'](_0x332955+'\x5c'+_0x35ecfc),f_file_copy(_0x5764db[_0xaeba13(0x123)],_0x332955+'\x5c'+_0x35ecfc),f_create_package_json(_0x332955+'\x5c'+_0x35ecfc,_0x35ecfc,_0xaeba13(0x166)),f_update_project_package_json(_0x31ef26,_0x35ecfc,_0xaeba13(0x166));}else{if(_0x2a3bd4['installTarget']===_0xaeba13(0x13b)){const _0x47212d=_0xaeba13(0x130);fs['existsSync'](_0x2a3d32+_0x47212d)?f_rm_rf(_0x2a3d32+_0x47212d):fs[_0xaeba13(0x138)](_0x2a3d32+_0x47212d),f_file_copy(_0x5764db[_0xaeba13(0x123)],_0x2a3d32+_0x47212d);}}}),setTimeout(()=>{const _0x4e7757=_0x833c4d;f_rm_rf(TEMPLATE_FOLDER),fs[_0x4e7757(0x127)](TEMPLATE_FOLDER);const _0x9b6f30=Date[_0x4e7757(0x149)]();console[_0x4e7757(0x121)](_0x4e7757(0x126)+(_0x9b6f30-start_time)/0x3e8+'s');},0x5dc);}},0x3e8);}else console[_0x178245(0x121)](_0x178245(0x164));};
@@ -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
+ function a15_0x359f(){const _0x32f905=['【Error】:[jjb.config.json.projectType]配置无效,有效值<multi\x20|\x20spa\x20|\x20micro-spa\x20|\x20uniapp>。','【Error】:[jjb.config.json]文件配置无效,需要installTarget属性。','f_rm_rf','log','name','tmpdir','readdirSync','exit','f_content_replace','readFileSync','jjb-common-decorator','rmdirSync','【Error】:[jjb.config.json.installResources]无资源。','\x22,\x22version\x22:\x22','753970qCFZfe','length','vue-unisass-component','toString','\x22,\x22main\x22:\x20\x22index.js\x22}','2004uSILcm','146736bULujI','774781yAzrfk','path','projectType','/api/v4/projects/','【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>。','projectId','forEach','mkdirSync','installResources','jjb-common','f_scan_jjb_config_json','f_update_project_package_json','installTarget','writeFileSync','multi','uniapp','map','includes','push','string','dependencies','spa','【Error】:[jjb.config.json]文件配置无效,需要projectType属性。','existsSync','f_file_copy','583QNiFty','16dkSpcR','1wUxJLp','【Error】:[jjb.config.json]文件解析失败,请确认是否配置正确。','4358rQyIxc','unlinkSync','&ref=master','f_scan_jjb_config_json_rules','isArray','/repository/archive.zip?private_token=','1079688Rpkzal','isDirectory','13422SXgnom','18VndPFq','155MQVaoG','stringify','\x5cjjb.config.json','{\x22name\x22:\x22','jjb-dva-runtime','statSync','replace','micro-spa','\x5cpackage.json','【Error】:[jjb.config.json.node_modules]配置无效,有效值<node_modules\x20|\x20src>。','./config'];a15_0x359f=function(){return _0x32f905;};return a15_0x359f();}const a15_0x2abae6=a15_0x4c90;(function(_0x4a6b72,_0x3518a5){const _0x5840c1=a15_0x4c90,_0x1a04f3=_0x4a6b72();while(!![]){try{const _0xc155bb=-parseInt(_0x5840c1(0x179))/0x1*(parseInt(_0x5840c1(0x134))/0x2)+parseInt(_0x5840c1(0x15d))/0x3+parseInt(_0x5840c1(0x13a))/0x4+-parseInt(_0x5840c1(0x13e))/0x5*(parseInt(_0x5840c1(0x13c))/0x6)+-parseInt(_0x5840c1(0x15e))/0x7*(parseInt(_0x5840c1(0x178))/0x8)+-parseInt(_0x5840c1(0x13d))/0x9*(-parseInt(_0x5840c1(0x157))/0xa)+-parseInt(_0x5840c1(0x177))/0xb*(-parseInt(_0x5840c1(0x15c))/0xc);if(_0xc155bb===_0x3518a5)break;else _0x1a04f3['push'](_0x1a04f3['shift']());}catch(_0x32deb0){_0x1a04f3['push'](_0x1a04f3['shift']());}}}(a15_0x359f,0x2d4f3));function a15_0x4c90(_0x1ca2db,_0x1dcb74){const _0x359fe0=a15_0x359f();return a15_0x4c90=function(_0x4c9033,_0x1d695d){_0x4c9033=_0x4c9033-0x133;let _0x188b4e=_0x359fe0[_0x4c9033];return _0x188b4e;},a15_0x4c90(_0x1ca2db,_0x1dcb74);}const fs=require('fs'),os=require('os'),{GIT_HOST,GIT_TEMP_DIR,CLOUD_PROJECT}=require(a15_0x2abae6(0x148));exports[a15_0x2abae6(0x14b)]=function(_0x457519){const _0x16f832=a15_0x2abae6;if(fs['existsSync'](_0x457519)){const _0x1c9ef8=fs[_0x16f832(0x14f)](_0x457519);for(let _0x50c880=0x0;_0x50c880<_0x1c9ef8['length'];_0x50c880++){const _0x53ad72=_0x1c9ef8[_0x50c880],_0x1f2773=_0x457519+'/'+_0x53ad72;fs[_0x16f832(0x143)](_0x1f2773)[_0x16f832(0x13b)]()?(exports[_0x16f832(0x14b)](_0x1f2773),fs[_0x16f832(0x154)](_0x1f2773)):fs[_0x16f832(0x135)](_0x1f2773);}}},exports['f_pull_git_repository']=function(_0x553274=[]){const _0x3ded90=a15_0x2abae6;return _0x553274[_0x3ded90(0x16e)](_0x468a1a=>{const _0x28143d=_0x3ded90,_0x3cb227=CLOUD_PROJECT[_0x468a1a['name']]||undefined,_0x10921d=os[_0x28143d(0x14e)]();return{'path':_0x10921d+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x468a1a['name']+'.zip','compress':_0x10921d+'\x5c'+GIT_TEMP_DIR+'\x5c'+_0x468a1a[_0x28143d(0x14d)]+'_zip','repository':GIT_HOST+_0x28143d(0x161)+_0x3cb227[_0x28143d(0x163)]+_0x28143d(0x139)+_0x3cb227['token']+_0x28143d(0x136)};});},exports[a15_0x2abae6(0x168)]=function(_0x4fbab8){const _0x63c8e8=a15_0x2abae6;return fs[_0x63c8e8(0x175)](_0x4fbab8+_0x63c8e8(0x140));},exports[a15_0x2abae6(0x137)]=function(_0x5ac0b1){const _0x36f07f=a15_0x2abae6;let _0x66a1e3={};try{_0x66a1e3=JSON['parse'](fs[_0x36f07f(0x152)](_0x5ac0b1+_0x36f07f(0x140))[_0x36f07f(0x15a)]());}catch(_0x4be17c){console[_0x36f07f(0x14c)](_0x36f07f(0x133)),process['exit'](0x0);}!(_0x36f07f(0x160)in _0x66a1e3)&&(console[_0x36f07f(0x14c)](_0x36f07f(0x174)),process[_0x36f07f(0x150)](0x0));!('installTarget'in _0x66a1e3)&&(console[_0x36f07f(0x14c)](_0x36f07f(0x14a)),process['exit'](0x0));!(_0x36f07f(0x166)in _0x66a1e3)&&(console[_0x36f07f(0x14c)]('【Error】:[jjb.config.json]文件配置无效,需要installResources属性。'),process[_0x36f07f(0x150)](0x0));typeof _0x66a1e3[_0x36f07f(0x160)]!==_0x36f07f(0x171)&&(console['log']('【Error】:[jjb.config.json.projectType]类型是一个string。'),process[_0x36f07f(0x150)](0x0));![_0x36f07f(0x16c),_0x36f07f(0x173),_0x36f07f(0x16d),_0x36f07f(0x145)]['includes'](_0x66a1e3[_0x36f07f(0x160)])&&(console[_0x36f07f(0x14c)](_0x36f07f(0x149)),process['exit'](0x0));typeof _0x66a1e3[_0x36f07f(0x16a)]!==_0x36f07f(0x171)&&(console[_0x36f07f(0x14c)]('【Error】:[jjb.config.json.installTarget]类型是一个string。'),process[_0x36f07f(0x150)](0x0));!['node_modules','src'][_0x36f07f(0x16f)](_0x66a1e3[_0x36f07f(0x16a)])&&(console[_0x36f07f(0x14c)](_0x36f07f(0x147)),process[_0x36f07f(0x150)](0x0));!Array['isArray'](_0x66a1e3[_0x36f07f(0x166)])&&(console[_0x36f07f(0x14c)]('【Error】:[jjb.config.json.installResources]类型是一个Array<string>。'),process[_0x36f07f(0x150)](0x0));_0x66a1e3[_0x36f07f(0x166)][_0x36f07f(0x158)]===0x0&&(console[_0x36f07f(0x14c)](_0x36f07f(0x155)),process[_0x36f07f(0x150)](0x0));const _0xb769a6=exports['f_resolve_install_resources'](_0x66a1e3[_0x36f07f(0x166)]);return _0xb769a6[_0x36f07f(0x16e)](_0x59f840=>_0x59f840[_0x36f07f(0x14d)])['filter'](_0x54fe66=>![_0x36f07f(0x167),_0x36f07f(0x142),'jjb-common-lib',_0x36f07f(0x153),'react-admin-component',_0x36f07f(0x159)][_0x36f07f(0x16f)](_0x54fe66))['length']!==0x0&&(console['log'](_0x36f07f(0x162)),process[_0x36f07f(0x150)](0x0)),_0x66a1e3[_0x36f07f(0x166)]=_0xb769a6,_0x66a1e3;},exports['f_create_package_json']=function(_0x511bb3,_0x476f01,_0x126d9a){const _0x50911d=a15_0x2abae6;fs['writeFileSync'](_0x511bb3+_0x50911d(0x146),_0x50911d(0x141)+_0x476f01+_0x50911d(0x156)+_0x126d9a+_0x50911d(0x15b));},exports['f_resolve_install_resources']=function(_0x399962=[]){const _0x2f63f1=a15_0x2abae6,_0x208579=[];return Array[_0x2f63f1(0x138)](_0x399962)&&_0x399962[_0x2f63f1(0x164)](_0x5ecfb9=>{const _0x18eea7=_0x2f63f1;if(Array[_0x18eea7(0x138)](_0x5ecfb9)){const [_0x540421,_0x3b33ca=[]]=_0x5ecfb9;_0x208579[_0x18eea7(0x170)]({'name':_0x540421,'importList':_0x3b33ca});}else _0x208579[_0x18eea7(0x170)]({'name':_0x5ecfb9,'importList':[]});}),_0x208579;},exports[a15_0x2abae6(0x169)]=function(_0x46f944,_0x549c4d,_0x3ccc1a){const _0x4c4384=a15_0x2abae6,_0xa5ae58=JSON['parse'](fs['readFileSync'](_0x46f944)[_0x4c4384(0x15a)]());_0xa5ae58[_0x4c4384(0x172)][_0x549c4d]=_0x3ccc1a,fs[_0x4c4384(0x16b)](_0x46f944,JSON[_0x4c4384(0x13f)](_0xa5ae58,null,0x2));},exports['f_file_copy']=function(_0x162051,_0x19f1db){const _0x5c55f7=a15_0x2abae6;fs['readdirSync'](_0x162051)[_0x5c55f7(0x164)](_0x4f8be3=>{const _0x2bbf49=_0x5c55f7,_0x1febf4=_0x162051+'\x5c'+_0x4f8be3,_0x183468=_0x19f1db+'\x5c'+_0x4f8be3;fs[_0x2bbf49(0x143)](_0x1febf4)[_0x2bbf49(0x13b)]()?(fs[_0x2bbf49(0x165)](_0x183468),exports[_0x2bbf49(0x176)](_0x1febf4,_0x183468)):fs[_0x2bbf49(0x16b)](_0x183468,fs[_0x2bbf49(0x152)](_0x1febf4)[_0x2bbf49(0x15a)]());});},exports[a15_0x2abae6(0x151)]=function(_0x28ef03=[],_0x387db5){const _0x57207b=a15_0x2abae6;_0x28ef03[_0x57207b(0x164)](_0x53add3=>{const _0x5bb66b=_0x57207b,_0x3a24fc=_0x387db5+_0x53add3[_0x5bb66b(0x15f)];if(fs[_0x5bb66b(0x175)](_0x3a24fc)){let _0x17bfdf=fs['readFileSync'](_0x3a24fc)[_0x5bb66b(0x15a)]();_0x53add3[_0x5bb66b(0x144)][_0x5bb66b(0x164)](_0x57bdaf=>{const _0x56ad8a=_0x5bb66b;_0x17bfdf=_0x17bfdf[_0x56ad8a(0x144)](_0x57bdaf[0x0],_0x57bdaf[0x1]);}),fs[_0x5bb66b(0x16b)](_0x3a24fc,_0x17bfdf);}});};
@@ -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_0x480b0a=a16_0x1685;function a16_0x1685(_0x91583b,_0x2b0ad7){const _0x30605c=a16_0x3060();return a16_0x1685=function(_0x16858d,_0x91d6ee){_0x16858d=_0x16858d-0x13e;let _0x2ffb25=_0x30605c[_0x16858d];return _0x2ffb25;},a16_0x1685(_0x91583b,_0x2b0ad7);}(function(_0x5d0a78,_0x2cc530){const _0x4656a4=a16_0x1685,_0x37701d=_0x5d0a78();while(!![]){try{const _0x2b65c7=-parseInt(_0x4656a4(0x155))/0x1*(-parseInt(_0x4656a4(0x152))/0x2)+-parseInt(_0x4656a4(0x156))/0x3*(parseInt(_0x4656a4(0x157))/0x4)+parseInt(_0x4656a4(0x14b))/0x5*(-parseInt(_0x4656a4(0x142))/0x6)+-parseInt(_0x4656a4(0x163))/0x7*(parseInt(_0x4656a4(0x14e))/0x8)+parseInt(_0x4656a4(0x165))/0x9+parseInt(_0x4656a4(0x151))/0xa+parseInt(_0x4656a4(0x160))/0xb*(-parseInt(_0x4656a4(0x14c))/0xc);if(_0x2b65c7===_0x2cc530)break;else _0x37701d['push'](_0x37701d['shift']());}catch(_0x59b164){_0x37701d['push'](_0x37701d['shift']());}}}(a16_0x3060,0xd6429));const fs=require('fs'),path=require(a16_0x480b0a(0x158)),utils=require('./util.js');let projectPath='',vesselPath='',commandArr=[];const fromFileData={},applicationJson={};module[a16_0x480b0a(0x15f)]=(_0x3e52dc,_0x92f622)=>{const _0x2cac32=a16_0x480b0a;commandArr=_0x3e52dc[_0x2cac32(0x149)](':'),projectPath=path[_0x2cac32(0x15e)](_0x2cac32(0x141)),vesselPath=path[_0x2cac32(0x15e)]('./vessel/src');let _0x42ad37=vesselPath;_0x92f622==='mp'&&(_0x42ad37=vesselPath+_0x2cac32(0x150),utils[_0x2cac32(0x159)](vesselPath,['application']));const _0x2dfcdf=commandArr[0x1],_0x4e5cc9=JSON[_0x2cac32(0x154)](fs[_0x2cac32(0x15c)](projectPath+'/'+_0x2dfcdf+'/setting.json')[_0x2cac32(0x143)]());TileItems(_0x4e5cc9[_0x2cac32(0x14d)],()=>{const _0x62fe6e=_0x2cac32;fromFileData['router'][_0x62fe6e(0x164)](_0x6a2de6=>{const _0x1eac28=_0x62fe6e,_0x450653=_0x6a2de6['pathAdr'][_0x1eac28(0x149)](_0x6a2de6[_0x1eac28(0x140)]),_0x23aec7=_0x450653[0x1]['split']('/'),_0x1685d5=_0x23aec7[0x1];!applicationJson[_0x1685d5]&&(applicationJson[_0x1685d5]={'routerConfig':[],'routerPath':[]});applicationJson[_0x1685d5][_0x1eac28(0x162)][_0x1eac28(0x161)]('{\x20path:\x20\x27'+_0x6a2de6[_0x1eac28(0x158)]+_0x1eac28(0x14a)+_0x6a2de6[_0x1eac28(0x13f)]+_0x1eac28(0x15a)),applicationJson[_0x1685d5][_0x1eac28(0x147)]['push'](_0x6a2de6[_0x1eac28(0x158)]);let _0x227323=_0x23aec7[_0x1eac28(0x148)]('/');const _0x5ad2fc=_0x227323[_0x1eac28(0x149)]('/');utils[_0x1eac28(0x159)](_0x42ad37,_0x5ad2fc[_0x1eac28(0x14f)](0x0,_0x5ad2fc[_0x1eac28(0x145)]-0x1))[_0x1eac28(0x144)](()=>{const _0x517e99=_0x1eac28,_0x5cdedf=fs[_0x517e99(0x15c)](_0x6a2de6[_0x517e99(0x153)])[_0x517e99(0x143)]();fs['writeFileSync'](vesselPath+'/'+_0x227323,_0x5cdedf);});});});};function a16_0x3060(){const _0xd30122=['parse','10433UPerFV','201dGjhoV','64212aFMweC','path','CreatePaths','\x27)\x20}','DeepScanner','readFileSync','fileType','resolve','exports','2464DtEhUw','push','routerConfig','7fTmOEV','forEach','10591461aZofeW','map','file','region','./project','18uFKUEk','toString','then','length','from','routerPath','join','split','\x27,\x20component:\x20()\x20=>\x20import(\x27','1406145NfGhla','12768avMkUP','items','72912zKmhZb','slice','/application','16379420tRTgUn','44qDdjth','pathAdr'];a16_0x3060=function(){return _0xd30122;};return a16_0x3060();}function TileItems(_0x54f19e,_0x5d66f0){const _0x40b506=a16_0x480b0a;_0x54f19e[_0x40b506(0x164)]((_0x3b91c4,_0x4048d7)=>{const _0x388c2e=_0x40b506,_0xd27f93=_0x3b91c4[_0x388c2e(0x140)];_0x3b91c4[_0x388c2e(0x146)][_0x388c2e(0x164)]((_0x403f5a,_0x3ca55e)=>{const _0x2b46dd=_0x388c2e,_0x497b8a=[];utils[_0x2b46dd(0x15b)](projectPath+'/'+_0xd27f93+'/'+_0x403f5a['file'],_0x497b8a);const _0x353aa9=_0x497b8a[_0x2b46dd(0x13e)](_0x1e4d2b=>({'region':_0xd27f93,'pathAdr':_0x1e4d2b,..._0x403f5a}));!fromFileData[_0x403f5a[_0x2b46dd(0x15d)]]?fromFileData[_0x403f5a[_0x2b46dd(0x15d)]]=_0x353aa9:fromFileData[_0x403f5a['fileType']]=fromFileData[_0x403f5a[_0x2b46dd(0x15d)]]['concat'](_0x353aa9),_0x4048d7===_0x54f19e[_0x2b46dd(0x145)]-0x1&&_0x3ca55e===_0x3b91c4[_0x2b46dd(0x146)][_0x2b46dd(0x145)]-0x1&&_0x5d66f0();});});}
@@ -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';const a17_0x191ae5=a17_0x122f;(function(_0x32db22,_0x279055){const _0x2316fe=a17_0x122f,_0x1a8b98=_0x32db22();while(!![]){try{const _0x549e64=-parseInt(_0x2316fe(0xdf))/0x1*(parseInt(_0x2316fe(0xe7))/0x2)+parseInt(_0x2316fe(0xe0))/0x3+parseInt(_0x2316fe(0x10a))/0x4+-parseInt(_0x2316fe(0x118))/0x5+-parseInt(_0x2316fe(0x111))/0x6+-parseInt(_0x2316fe(0xfc))/0x7*(-parseInt(_0x2316fe(0xe9))/0x8)+-parseInt(_0x2316fe(0xf3))/0x9;if(_0x549e64===_0x279055)break;else _0x1a8b98['push'](_0x1a8b98['shift']());}catch(_0x4e542a){_0x1a8b98['push'](_0x1a8b98['shift']());}}}(a17_0x3b31,0x82919));const fs=require('fs'),os=require('os'),path=require('path'),utils=require(a17_0x191ae5(0xee)),request=require(a17_0x191ae5(0x112)),compressing=require(a17_0x191ae5(0xea)),GIT_TEMP_DIR=a17_0x191ae5(0xec),GIT_HOST=a17_0x191ae5(0xe6),CLOUD_PROJECT={'common':{'token':a17_0x191ae5(0x116),'projectId':0x117,'localName':a17_0x191ae5(0xeb)},'react-admin-component':{'token':a17_0x191ae5(0xe2),'projectId':0x154,'localName':a17_0x191ae5(0x115)}};module[a17_0x191ae5(0xfd)]=_0x5e47ca=>{const _0x1634cc=a17_0x191ae5,_0xb1e138=_0x5e47ca,_0x72b90d=path[_0x1634cc(0x106)]('./');try{if(fs[_0x1634cc(0x104)](_0x72b90d+_0x1634cc(0x105))){const _0x5c5639=_0x72b90d+_0x1634cc(0x105),_0x28a698=CLOUD_PROJECT[_0xb1e138]||undefined;if(_0x28a698){const _0x43f5df=os['tmpdir'](),_0x2a8deb=_0x43f5df+('/'+GIT_TEMP_DIR+'/'+_0xb1e138+_0x1634cc(0xf4)),_0x411dc0=_0x43f5df+'/'+GIT_TEMP_DIR+_0x1634cc(0xf2);utils[_0x1634cc(0x102)](_0x43f5df+'/'+GIT_TEMP_DIR,()=>{const _0x201b71=_0x1634cc;fs['mkdirSync'](_0x43f5df+'/'+GIT_TEMP_DIR);let _0x126a45=fs[_0x201b71(0xe8)](_0x2a8deb);request(GIT_HOST+_0x201b71(0xff)+_0x28a698[_0x201b71(0xf8)]+_0x201b71(0xe3)+_0x28a698['token']+_0x201b71(0xfa))[_0x201b71(0x108)](_0x126a45)['on']('close',()=>{const _0x8c2c72=_0x201b71;fs[_0x8c2c72(0x107)](_0x411dc0),compressing[_0x8c2c72(0x10f)]['uncompress'](_0x2a8deb,_0x411dc0)[_0x8c2c72(0x100)](()=>{setTimeout(()=>{const _0x465856=a17_0x122f,_0x1b1fbd=fs[_0x465856(0xfe)](_0x411dc0);_0x1b1fbd[_0x465856(0x10d)](_0x5799fa=>{const _0x2cc2b6=_0x465856;if(_0x5799fa[_0x2cc2b6(0x103)](_0x2cc2b6(0xf9))!==-0x1){const _0x18cb7c=_0x5c5639+'\x5c'+_0x28a698[_0x2cc2b6(0xde)];utils[_0x2cc2b6(0x102)](_0x18cb7c,()=>{const _0x42afe6=_0x2cc2b6;fs[_0x42afe6(0x107)](_0x18cb7c),utils[_0x42afe6(0x114)](_0x411dc0+_0x5799fa,_0x18cb7c),setTimeout(()=>{const _0xf59831=_0x42afe6,_0x8a3d00=fs[_0xf59831(0xf5)](_0x5c5639+'\x5c'+'application');if(!_0x8a3d00){const _0x23e615=_0x5c5639+'\x5c'+_0xf59831(0x10e),_0x492827=_0x5c5639+'\x5c'+'common\x5cwebsite\x5cindex.js';let _0x3569f6=fs[_0xf59831(0xf1)](_0x23e615)[_0xf59831(0xf7)](),_0x31cd38=fs[_0xf59831(0xf1)](_0x492827)[_0xf59831(0xf7)]();_0x3569f6=_0x3569f6[_0xf59831(0x117)]('return\x20__planA();',_0xf59831(0xe5)),_0x31cd38=_0x31cd38[_0xf59831(0x117)](/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,'const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;'),fs['writeFileSync'](_0x23e615,_0x3569f6),fs[_0xf59831(0xef)](_0x492827,_0x31cd38),fs[_0xf59831(0xef)](_0x5c5639+'\x5ccommon\x5cdva\x5cautomatic\x5crouter.js',fs[_0xf59831(0xf1)](__dirname+_0xf59831(0x109))['toString']()),fs[_0xf59831(0xef)](_0x5c5639+_0xf59831(0xf0),fs[_0xf59831(0xf1)](__dirname+_0xf59831(0x113))[_0xf59831(0xf7)]());}else fs[_0xf59831(0x10b)](_0x5c5639+'\x5c'+_0xf59831(0xe1),_0x556a80=>{const _0x22f1c4=_0xf59831;_0x556a80&&(fs[_0x22f1c4(0xfe)](_0x5c5639+'\x5c'+_0x22f1c4(0x110))['forEach'](_0x329a4c=>{const _0x1e369f=_0x22f1c4;fs[_0x1e369f(0xf6)](_0x5c5639+'\x5c'+'common\x5cdva\x5cautomatic\x5c'+_0x329a4c);}),fs[_0x22f1c4(0xfb)](_0x5c5639+'\x5c'+_0x22f1c4(0x110)));});},0x3e8);});}}),console[_0x465856(0x101)](_0xb1e138+_0x465856(0x10c));},0x7d0);});});});}else console['error'](_0x1634cc(0xe4)+_0xb1e138);}}catch(_0x41f584){console['error'](_0x1634cc(0xed));}};function a17_0x122f(_0x67ae71,_0x5723b5){const _0x3b316d=a17_0x3b31();return a17_0x122f=function(_0x122f47,_0x319ac3){_0x122f47=_0x122f47-0xde;let _0xa3e02b=_0x3b316d[_0x122f47];return _0xa3e02b;},a17_0x122f(_0x67ae71,_0x5723b5);}function a17_0x3b31(){const _0x30b79a=['【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','./util','writeFileSync','\x5ccommon\x5cdva\x5cautomatic\x5cregister.js','readFileSync','/unzip/','1239201MCLdac','.zip','existsSync','unlinkSync','toString','projectId','-master-','&ref=master','rmdirSync','3648799ulWhvI','exports','readdirSync','/api/v4/projects/','then','log','DeleteDirAllFile','indexOf','statSync','\x5csrc','resolve','mkdirSync','pipe','\x5ccli.dva.router.spa.txt','1253652HMXYeN','exists','-文件下载完毕','forEach','common\x5ctools\x5cindex.js','zip','common\x5cdva\x5cautomatic','2277102hiCZry','request','\x5ccli.dva.register.spa.txt','CopyFolder','components','G4HJRsHr9D7Ssmixegw2','replace','2660005rZleHY','localName','8744kUuHFG','2231955YxwMOz','common\x5cdva\x5cautomatic\x5cindex.js','FT3pKzxpRynFkmddJ9Bs','/repository/archive.zip?private_token=','【Error】:\x20未获取到项目\x20','return\x20process.env;','http://192.168.1.242:10985','118ZLMFCF','createWriteStream','16TEXeGU','compressing','common','jjbAssembly'];a17_0x3b31=function(){return _0x30b79a;};return a17_0x3b31();}
@@ -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';const a18_0x2b791c=a18_0x2876;(function(_0x416f68,_0x9dedcd){const _0x22fe40=a18_0x2876,_0x333652=_0x416f68();while(!![]){try{const _0x24e05a=parseInt(_0x22fe40(0x1fc))/0x1*(-parseInt(_0x22fe40(0x1e6))/0x2)+-parseInt(_0x22fe40(0x1ef))/0x3+parseInt(_0x22fe40(0x235))/0x4*(parseInt(_0x22fe40(0x217))/0x5)+parseInt(_0x22fe40(0x205))/0x6*(-parseInt(_0x22fe40(0x21b))/0x7)+parseInt(_0x22fe40(0x1f3))/0x8+-parseInt(_0x22fe40(0x1f6))/0x9*(parseInt(_0x22fe40(0x225))/0xa)+parseInt(_0x22fe40(0x1f7))/0xb*(parseInt(_0x22fe40(0x238))/0xc);if(_0x24e05a===_0x9dedcd)break;else _0x333652['push'](_0x333652['shift']());}catch(_0x44a3b0){_0x333652['push'](_0x333652['shift']());}}}(a18_0x20a0,0x9046a));const fs=require('fs'),os=require('os'),path=require('path'),utils=require(a18_0x2b791c(0x22f)),request=require('request'),compressing=require(a18_0x2b791c(0x23e)),GIT_HOST=a18_0x2b791c(0x1e2),GIT_TEMP_DIR='jjbAssembly',CLOUD_PROJECT={'common':{'token':a18_0x2b791c(0x1e3),'projectId':0x117,'localName':a18_0x2b791c(0x21c)},'react-admin-component':{'token':'FT3pKzxpRynFkmddJ9Bs','projectId':0x154,'localName':a18_0x2b791c(0x20a)}},COMMON_CONTENT_NOR_REPLACE=[{'path':a18_0x2b791c(0x22d),'replace':[['components','jjb-react-admin-component']]},{'path':a18_0x2b791c(0x1e5),'replace':[[/const\srelation\s=\srequire\(`~\/application\/\${module.code}\/enumerate\/menu`\)\.default;/,a18_0x2b791c(0x220)],[a18_0x2b791c(0x20a),a18_0x2b791c(0x1ed)]]}],COMMON_CONTENT_SPA_REPLACE=[{'path':a18_0x2b791c(0x22d),'replace':[[a18_0x2b791c(0x1f1),a18_0x2b791c(0x1fb)]]}],COMMON_CONTENT_MICRO_REPLACE=[{'path':'\x5ctools\x5cindex.js','replace':[[a18_0x2b791c(0x1f1),a18_0x2b791c(0x22e)]]}],COMPONENTS_CONTENT_REPLACE=[{'path':a18_0x2b791c(0x20e),'replace':[[a18_0x2b791c(0x1e9),'jjb-common/http'],[a18_0x2b791c(0x232),a18_0x2b791c(0x204)],[a18_0x2b791c(0x21d),'jjb-common/tools']]},{'path':a18_0x2b791c(0x23a),'replace':[[a18_0x2b791c(0x1e4),a18_0x2b791c(0x226)]]},{'path':a18_0x2b791c(0x236),'replace':[[a18_0x2b791c(0x21d),a18_0x2b791c(0x22a)]]},{'path':a18_0x2b791c(0x219),'replace':[[a18_0x2b791c(0x1e9),a18_0x2b791c(0x210)],[a18_0x2b791c(0x21d),a18_0x2b791c(0x22a)]]},{'path':a18_0x2b791c(0x223),'replace':[[a18_0x2b791c(0x1e9),a18_0x2b791c(0x210)],['common/tools',a18_0x2b791c(0x22a)]]},{'path':'\x5cImageUploader\x5cindex.js','replace':[[a18_0x2b791c(0x1e9),a18_0x2b791c(0x210)],[a18_0x2b791c(0x21d),a18_0x2b791c(0x22a)]]},{'path':a18_0x2b791c(0x23b),'replace':[[a18_0x2b791c(0x1e4),a18_0x2b791c(0x226)]]},{'path':a18_0x2b791c(0x227),'replace':[[a18_0x2b791c(0x21d),a18_0x2b791c(0x22a)]]},{'path':a18_0x2b791c(0x20d),'replace':[[a18_0x2b791c(0x234),a18_0x2b791c(0x23c)],[a18_0x2b791c(0x21d),a18_0x2b791c(0x22a)]]}];function uid(){const _0x103888=a18_0x2b791c;return Math[_0x103888(0x1ff)]()[_0x103888(0x213)]()[_0x103888(0x203)](0x2);}module[a18_0x2b791c(0x1f9)]=_0x4216fb=>{const _0x272c63=a18_0x2b791c,_0x289ce1=path[_0x272c63(0x201)]('./'),_0x105146=_0x272c63(0x22b)+_0x4216fb,_0x2d924c=_0x272c63(0x222),_0x24943a=_0x289ce1+_0x272c63(0x229),_0x131e7e=_0x272c63(0x237)+uid(),_0x343b67=__dirname+'\x5c'+_0x131e7e,_0x1eb83b=_0x289ce1+'\x5cpackage.json',_0x18b122=_0x289ce1+_0x272c63(0x1f5)+_0x4216fb;try{if(fs[_0x272c63(0x211)](_0x24943a)){const _0x1934b8=CLOUD_PROJECT[_0x4216fb]||undefined;if(_0x1934b8){const _0x1f6e98=os[_0x272c63(0x228)](),_0x4af60b=_0x1f6e98+'/'+GIT_TEMP_DIR+'/'+_0x4216fb+_0x272c63(0x200),_0xb5cae6=_0x1f6e98+'/'+GIT_TEMP_DIR+'/unzip/';utils[_0x272c63(0x20c)](_0x1f6e98+'/'+GIT_TEMP_DIR,()=>{const _0x532e16=_0x272c63;fs[_0x532e16(0x212)](_0x1f6e98+'/'+GIT_TEMP_DIR);const _0x2fce22=fs['createWriteStream'](_0x4af60b);request(GIT_HOST+_0x532e16(0x224)+_0x1934b8[_0x532e16(0x206)]+'/repository/archive.zip?private_token='+_0x1934b8['token']+'&ref=master')['pipe'](_0x2fce22)['on'](_0x532e16(0x21e),()=>{const _0x1ef91f=_0x532e16;fs[_0x1ef91f(0x212)](_0xb5cae6),compressing[_0x1ef91f(0x202)][_0x1ef91f(0x1eb)](_0x4af60b,_0xb5cae6)['then'](()=>{setTimeout(()=>{const _0x30c15d=a18_0x2876;fs[_0x30c15d(0x1e8)](_0xb5cae6)[_0x30c15d(0x209)](_0x19e2f4=>{const _0x3eacd3=_0x30c15d;_0x19e2f4['indexOf']('-master-')!==-0x1&&utils[_0x3eacd3(0x20c)](_0x24943a+'\x5c'+_0x1934b8[_0x3eacd3(0x233)],()=>{fs['mkdirSync'](_0x343b67),utils['CopyFolder'](_0xb5cae6+_0x19e2f4,_0x343b67),setTimeout(()=>{const _0x4ff607=a18_0x2876;if(_0x4216fb===_0x4ff607(0x21c)){const _0x374429=fs['existsSync'](_0x24943a+'\x5capplication');if(_0x374429)rm_rf(_0x343b67+_0x4ff607(0x1ec)),fs[_0x4ff607(0x231)](_0x343b67+_0x4ff607(0x1ec));else{if(get_project_type(_0x1eb83b)==='spa')content_replace(COMMON_CONTENT_SPA_REPLACE,_0x343b67),fs[_0x4ff607(0x239)](_0x343b67+'\x5cdva\x5cautomatic\x5crouter.js',fs[_0x4ff607(0x218)](__dirname+'\x5ccli.dva.router.spa.txt')[_0x4ff607(0x213)]()),fs[_0x4ff607(0x239)](_0x343b67+_0x4ff607(0x1e7),fs[_0x4ff607(0x218)](__dirname+_0x4ff607(0x1f4))[_0x4ff607(0x213)]());else get_project_type(_0x1eb83b)===_0x4ff607(0x1ea)&&(content_replace(COMMON_CONTENT_MICRO_REPLACE,_0x343b67),fs[_0x4ff607(0x239)](_0x343b67+_0x4ff607(0x208),fs[_0x4ff607(0x218)](__dirname+_0x4ff607(0x1ee))[_0x4ff607(0x213)]()),fs[_0x4ff607(0x239)](_0x343b67+_0x4ff607(0x1e7),fs[_0x4ff607(0x218)](__dirname+_0x4ff607(0x207))[_0x4ff607(0x213)]()));}content_replace(COMMON_CONTENT_NOR_REPLACE,_0x343b67);}_0x4216fb===_0x4ff607(0x221)&&content_replace(COMPONENTS_CONTENT_REPLACE,_0x343b67),rm_rf(_0x343b67+_0x4ff607(0x1f2)),fs['existsSync'](_0x343b67+'\x5c.idea')&&fs[_0x4ff607(0x231)](_0x343b67+_0x4ff607(0x1f2)),fs[_0x4ff607(0x211)](_0x343b67+'\x5c.gitignore')&&fs[_0x4ff607(0x1fa)](_0x343b67+_0x4ff607(0x23f)),!fs[_0x4ff607(0x211)](_0x18b122)?fs['mkdirSync'](_0x18b122):rm_rf(_0x18b122),utils['CopyFolder'](_0x343b67,_0x18b122,()=>{const _0x13e863=_0x4ff607;rm_rf(_0x343b67),fs[_0x13e863(0x231)](_0x343b67),create_package_json(_0x18b122,_0x105146,_0x2d924c),update_project_package_json(_0x1eb83b,_0x105146,_0x2d924c),console['log'](_0x13e863(0x1fe)+_0x105146+'\x20v'+_0x2d924c);});},0x3e8);});});},0x7d0);});});});}else console[_0x272c63(0x230)]('【Error】:\x20未获取到项目\x20'+_0x4216fb);}}catch(_0x165982){console[_0x272c63(0x230)](_0x272c63(0x23d));}};function rm_rf(_0xc085c9){const _0x3f05fb=a18_0x2b791c;if(fs[_0x3f05fb(0x211)](_0xc085c9)){const _0x45c90d=fs[_0x3f05fb(0x1e8)](_0xc085c9);for(let _0x249dd6=0x0;_0x249dd6<_0x45c90d[_0x3f05fb(0x214)];_0x249dd6++){const _0x4b3290=_0x45c90d[_0x249dd6],_0xbab63c=_0xc085c9+'/'+_0x4b3290;fs[_0x3f05fb(0x21a)](_0xbab63c)[_0x3f05fb(0x215)]()?(rm_rf(_0xbab63c),fs['rmdirSync'](_0xbab63c)):fs[_0x3f05fb(0x1fa)](_0xbab63c);}}}function create_package_json(_0x156f25,_0x4e605b,_0x3738c2){const _0x62efc=a18_0x2b791c;fs[_0x62efc(0x239)](_0x156f25+_0x62efc(0x20f),_0x62efc(0x20b)+_0x4e605b+_0x62efc(0x1fd)+_0x3738c2+_0x62efc(0x22c));}function get_project_type(_0x26cbeb){const _0x40cc0b=a18_0x2b791c,_0x168c09=JSON[_0x40cc0b(0x216)](fs[_0x40cc0b(0x218)](_0x26cbeb)['toString']());return _0x168c09[_0x40cc0b(0x1f0)];}function a18_0x2876(_0x28b7b9,_0x35ba91){const _0x20a0c8=a18_0x20a0();return a18_0x2876=function(_0x287681,_0x1f859d){_0x287681=_0x287681-0x1e2;let _0x544306=_0x20a0c8[_0x287681];return _0x544306;},a18_0x2876(_0x28b7b9,_0x35ba91);}function a18_0x20a0(){const _0x214d7b=['\x5cRouterContainer\x5ccomponents\x5cNavigationTab\x5cindex.js','\x5cEditor\x5cindex.js','\x5cpackage.json','jjb-common/http','existsSync','mkdirSync','toString','length','isDirectory','parse','195SRjObF','readFileSync','\x5cFileUploader\x5cindex.js','statSync','7tYLFqJ','common','common/tools','close','stringify','const\x20relation\x20=\x20require(\x27~/enumerate/menu\x27).default;','react-admin-component','1.0.0','\x5cImageCropper\x5cindex.js','/api/v4/projects/','11080FXOduo','jjb-common/color','\x5cRouterContainer\x5cindex.js','tmpdir','\x5csrc','jjb-common/tools','jjb-','\x22,\x22main\x22:\x20\x22index.js\x22}','\x5ctools\x5cindex.js','return\x20process.env.app;','./util','error','rmdirSync','common/crypto','localName','common/website','63904CREslp','\x5cRouterMenu\x5cindex.js','template_','269460Jomhoh','writeFileSync','\x5cRejectText\x5cindex.js','\x5cPageHeaderBar\x5cindex.js','jjb-common/website','【Error】:\x20当前目录不存在src子目录,无法完成pull操作。','compressing','\x5c.gitignore','http://192.168.1.242:10985','G4HJRsHr9D7Ssmixegw2','common/color','\x5cwebsite\x5cindex.js','164694XlgwBp','\x5cdva\x5cautomatic\x5cregister.js','readdirSync','common/http','micro-spa','uncompress','\x5cdva\x5cautomatic','jjb-react-admin-component','\x5ccli.dva.router.saas.txt','1035969OInBaR','projectType','return\x20__planA();','\x5c.idea','6496968DsiJiT','\x5ccli.dva.register.spa.txt','\x5cnode_modules\x5cjjb-','6678wvyXOa','781hYmhfT','replace','exports','unlinkSync','return\x20process.env;','8Spxtth','\x22,\x22version\x22:\x22','【已安装】:','random','.zip','resolve','zip','substr','jjb-common/crypto','3673806DQigGd','projectId','\x5ccli.dva.register.saas.txt','\x5cdva\x5cautomatic\x5crouter.js','forEach','components','{\x22name\x22:\x22','DeleteDirAllFile'];a18_0x20a0=function(){return _0x214d7b;};return a18_0x20a0();}function update_project_package_json(_0x52f7e8,_0x273a51,_0x3c88eb){const _0x4bef5e=a18_0x2b791c,_0xb0350a=JSON[_0x4bef5e(0x216)](fs[_0x4bef5e(0x218)](_0x52f7e8)[_0x4bef5e(0x213)]());_0xb0350a['dependencies'][_0x273a51]=_0x3c88eb,fs['writeFileSync'](_0x52f7e8,JSON[_0x4bef5e(0x21f)](_0xb0350a,null,0x2));}function content_replace(_0xb53ffd=[],_0x175bc8){const _0x484501=a18_0x2b791c;_0xb53ffd[_0x484501(0x209)](_0x56ff6e=>{const _0x3fb088=_0x484501,_0x5e8c9f=_0x175bc8+_0x56ff6e['path'];if(fs[_0x3fb088(0x211)](_0x5e8c9f)){let _0x1aa124=fs[_0x3fb088(0x218)](_0x5e8c9f)[_0x3fb088(0x213)]();_0x56ff6e[_0x3fb088(0x1f8)]['forEach'](_0x3081d4=>{const _0x44e031=_0x3fb088;_0x1aa124=_0x1aa124[_0x44e031(0x1f8)](_0x3081d4[0x0],_0x3081d4[0x1]);}),fs[_0x3fb088(0x239)](_0x5e8c9f,_0x1aa124);}});}
@@ -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_0x4044b2=a19_0x3234;(function(_0x3d7b53,_0xe552c2){const _0x11889b=a19_0x3234,_0x158ef3=_0x3d7b53();while(!![]){try{const _0xdaebad=-parseInt(_0x11889b(0x14e))/0x1*(parseInt(_0x11889b(0x13c))/0x2)+-parseInt(_0x11889b(0x149))/0x3+-parseInt(_0x11889b(0x140))/0x4+parseInt(_0x11889b(0x14b))/0x5+-parseInt(_0x11889b(0x13d))/0x6*(parseInt(_0x11889b(0x142))/0x7)+-parseInt(_0x11889b(0x13a))/0x8+parseInt(_0x11889b(0x14a))/0x9*(parseInt(_0x11889b(0x148))/0xa);if(_0xdaebad===_0xe552c2)break;else _0x158ef3['push'](_0x158ef3['shift']());}catch(_0x3be25e){_0x158ef3['push'](_0x158ef3['shift']());}}}(a19_0x4d00,0xd1700));const fs=require('fs'),path=require('path'),readline=require('readline'),ProgressBar=require(a19_0x4044b2(0x144)),io=readline[a19_0x4044b2(0x141)]({'input':process['stdin'],'output':process[a19_0x4044b2(0x145)]}),progress=new ProgressBar(a19_0x4044b2(0x151),0x32);function a19_0x3234(_0x3ce3a1,_0x1ba478){const _0x4d0096=a19_0x4d00();return a19_0x3234=function(_0x32341e,_0x40b577){_0x32341e=_0x32341e-0x13a;let _0x580fbe=_0x4d0096[_0x32341e];return _0x580fbe;},a19_0x3234(_0x3ce3a1,_0x1ba478);}function a19_0x4d00(){const _0xf03204=['601329YEZdUp','92340cOCfIs','8333450ybeMTx','readdirSync','是否确认删除?删除后不可恢复![y/n]:','50Elgrtu','isDirectory','log','删除进度','删除完成。','rmdirSync','length','正在计算项目数,请稍等...','8898224ZAujQN','unlinkSync','1500DzIxJF','6xbOBPJ','statSync','exit','6362392sYsddT','createInterface','8920345Qxbafb','existsSync','./progress-bar','stdout','resolve','exports','3320ZxXsjh'];a19_0x4d00=function(){return _0xf03204;};return a19_0x4d00();}let f_total=0x0,f_number=0x0;module[a19_0x4044b2(0x147)]=function(){const _0x533848=a19_0x4044b2,_0x3e14ee=path[_0x533848(0x146)]('./');io['question'](_0x533848(0x14d),function(_0x32d505){const _0x25fad2=_0x533848;if(_0x32d505['trim']()==='y')console[_0x25fad2(0x150)](_0x25fad2(0x155)),setTimeout(()=>{setTimeout(()=>{console['clear'](),exec(_0x3e14ee),setTimeout(()=>{const _0x4067f8=a19_0x3234;console[_0x4067f8(0x150)](_0x4067f8(0x152)),console['clear'](),process[_0x4067f8(0x13f)](0x0);},0x1f4);},0x1f4);},0x1f4);else _0x32d505['trim']()==='n'?(console[_0x25fad2(0x150)]('取消删除。'),process[_0x25fad2(0x13f)](0x0)):(console['log']('无效操作。'),process[_0x25fad2(0x13f)](0x0));});};function exec(_0x5734d8){const _0xf5b3d0=a19_0x4044b2;if(fs[_0xf5b3d0(0x143)](_0x5734d8)){const _0x5e5701=fs[_0xf5b3d0(0x14c)](_0x5734d8);for(let _0x5de9ba=0x0;_0x5de9ba<_0x5e5701['length'];_0x5de9ba++){const _0x448d7d=_0x5e5701[_0x5de9ba],_0x55f06f=_0x5734d8+'/'+_0x448d7d;try{fs['statSync'](_0x55f06f)['isDirectory']()?(exec(_0x55f06f),fs[_0xf5b3d0(0x153)](_0x55f06f,{'recursive':!![]}),console['log']('删除文件夹:'+_0x55f06f)):(fs[_0xf5b3d0(0x13b)](_0x55f06f),console['log']('删除文件:'+_0x55f06f));}catch(_0x340e7b){console['log']('删除异常:'+_0x55f06f);}}}}function scanner(_0x504aee){const _0x179ff0=a19_0x4044b2;if(fs[_0x179ff0(0x143)](_0x504aee)){const _0x63ef9a=fs[_0x179ff0(0x14c)](_0x504aee);for(let _0x24517b=0x0;_0x24517b<_0x63ef9a[_0x179ff0(0x154)];_0x24517b++){const _0x109e90=_0x63ef9a[_0x24517b],_0x422ef3=_0x504aee+'/'+_0x109e90;try{fs[_0x179ff0(0x13e)](_0x422ef3)[_0x179ff0(0x14f)]()?(scanner(_0x422ef3),f_total=f_total+0x1):f_total=f_total+0x1;}catch(_0x551510){}}}}
@@ -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_0x343ba4=a20_0xc6da;(function(_0x1a8da0,_0x5402d6){const _0x1c2623=a20_0xc6da,_0x104dde=_0x1a8da0();while(!![]){try{const _0x5a6c91=parseInt(_0x1c2623(0x101))/0x1+parseInt(_0x1c2623(0xfa))/0x2+-parseInt(_0x1c2623(0x102))/0x3*(parseInt(_0x1c2623(0x103))/0x4)+parseInt(_0x1c2623(0x104))/0x5*(parseInt(_0x1c2623(0xf9))/0x6)+parseInt(_0x1c2623(0xff))/0x7*(-parseInt(_0x1c2623(0x100))/0x8)+parseInt(_0x1c2623(0xfe))/0x9+parseInt(_0x1c2623(0xf7))/0xa*(-parseInt(_0x1c2623(0xfb))/0xb);if(_0x5a6c91===_0x5402d6)break;else _0x104dde['push'](_0x104dde['shift']());}catch(_0x3ee7b5){_0x104dde['push'](_0x104dde['shift']());}}}(a20_0x3d25,0x6fb22));function a20_0xc6da(_0x19afee,_0x3057d2){const _0x3d251f=a20_0x3d25();return a20_0xc6da=function(_0xc6da30,_0x5f34f5){_0xc6da30=_0xc6da30-0xf6;let _0x539494=_0x3d251f[_0xc6da30];return _0x539494;},a20_0xc6da(_0x19afee,_0x3057d2);}const slog=require(a20_0x343ba4(0xf8))['stdout'];function ProgressBar(_0x4b264b,_0x4a49c5){const _0x251b4c=a20_0x343ba4;this[_0x251b4c(0x107)]=_0x4b264b||_0x251b4c(0x108),this['length']=_0x4a49c5||0x19,this[_0x251b4c(0x106)]=function(_0x446da2){const _0xa824b9=_0x251b4c;let _0x4f4ad4;const _0x352d16=(_0x446da2[_0xa824b9(0xfc)]/_0x446da2['total'])[_0xa824b9(0x105)](0x4),_0x23947d=Math['floor'](_0x352d16*this[_0xa824b9(0xfd)]);let _0x29c20c='';for(_0x4f4ad4=0x0;_0x4f4ad4<_0x23947d;_0x4f4ad4++){_0x29c20c+='█';}let _0xbe208b='';for(_0x4f4ad4=0x0;_0x4f4ad4<this['length']-_0x23947d;_0x4f4ad4++){_0xbe208b+='░';}const _0x13960f=this['description']+':\x20'+(0x64*_0x352d16)['toFixed'](0x2)+'%\x20'+_0x29c20c+_0xbe208b+'\x20'+_0x446da2[_0xa824b9(0xfc)]+'/'+_0x446da2['total'];slog(_0x13960f);};}function a20_0x3d25(){const _0x5c0b1c=['exports','18030SZkWIv','single-line-log','1101756jwKfWh','864252KZpLwK','5973tkXuhN','completed','length','4998807vzBxmM','2106034rcVMCz','8VFpfqg','880693RBnaTF','3HYAYXW','1992388rjXcID','10EjxRDU','toFixed','render','description','Progress'];a20_0x3d25=function(){return _0x5c0b1c;};return a20_0x3d25();}module[a20_0x343ba4(0xf6)]=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_0xe4e60a=a21_0x42e7;(function(_0x5ac804,_0x161b5f){const _0x858e84=a21_0x42e7,_0x199f80=_0x5ac804();while(!![]){try{const _0xfbcbeb=parseInt(_0x858e84(0xfc))/0x1+parseInt(_0x858e84(0x102))/0x2*(-parseInt(_0x858e84(0x112))/0x3)+parseInt(_0x858e84(0x116))/0x4+parseInt(_0x858e84(0x100))/0x5+parseInt(_0x858e84(0x115))/0x6*(-parseInt(_0x858e84(0xf8))/0x7)+parseInt(_0x858e84(0x104))/0x8+-parseInt(_0x858e84(0x114))/0x9*(parseInt(_0x858e84(0x10c))/0xa);if(_0xfbcbeb===_0x161b5f)break;else _0x199f80['push'](_0x199f80['shift']());}catch(_0x17390e){_0x199f80['push'](_0x199f80['shift']());}}}(a21_0x5a78,0x90d92));function a21_0x42e7(_0x2c3339,_0x59dc55){const _0x5a78e6=a21_0x5a78();return a21_0x42e7=function(_0x42e709,_0x397951){_0x42e709=_0x42e709-0xf8;let _0x261a0a=_0x5a78e6[_0x42e709];return _0x261a0a;},a21_0x42e7(_0x2c3339,_0x59dc55);}const fs=require('fs'),path=require(a21_0xe4e60a(0x107));exports[a21_0xe4e60a(0x105)]=(_0x4256c4,_0x334c97)=>{const _0x4cf683=a21_0xe4e60a;let _0x42b9b4=[];const _0x300495=this;fs['existsSync'](_0x4256c4)?(_0x42b9b4=fs[_0x4cf683(0x109)](_0x4256c4),_0x42b9b4['forEach'](function(_0x35c113,_0x3dae6f){const _0x546a42=_0x4cf683;let _0x113cc2=_0x4256c4+'/'+_0x35c113;fs[_0x546a42(0xf9)](_0x113cc2)[_0x546a42(0xff)]()?_0x300495[_0x546a42(0x105)](_0x113cc2):fs[_0x546a42(0x106)](_0x113cc2);}),fs[_0x4cf683(0x117)](_0x4256c4),_0x334c97&&_0x334c97()):_0x334c97&&_0x334c97();},exports['CopyFolder']=(_0x16fbc5,_0x3b7e80,_0xae1db8)=>{const _0x532ce8=this;fs['readdir'](_0x16fbc5,function(_0x3b0b28,_0xd3b024){let _0x4480a3=0x0;const _0x2f9db3=function(){const _0x3d9af6=a21_0x42e7;++_0x4480a3===_0xd3b024[_0x3d9af6(0x110)]&&_0xae1db8&&_0xae1db8();};if(_0x3b0b28){_0x2f9db3();return;}_0xd3b024['forEach'](function(_0x1976fc){const _0x23132d=a21_0x42e7,_0x271a54=path[_0x23132d(0xfe)](_0x16fbc5,_0x1976fc),_0x18c1df=path[_0x23132d(0xfe)](_0x3b7e80,_0x1976fc);fs['stat'](_0x271a54,function(_0x168347,_0xe17669){const _0x21cfb3=_0x23132d;_0xe17669[_0x21cfb3(0xff)]()?fs[_0x21cfb3(0x10f)](_0x18c1df,function(_0x3a5833){const _0x102706=_0x21cfb3;if(_0x3a5833){console['log'](_0x3a5833);return;}_0x532ce8[_0x102706(0xfa)](_0x271a54,_0x18c1df,_0x2f9db3);}):_0x532ce8[_0x21cfb3(0x113)](_0x271a54,_0x18c1df,_0x2f9db3);});}),_0xd3b024['length']===0x0&&_0xae1db8&&_0xae1db8();});},exports[a21_0xe4e60a(0x113)]=(_0x2cd1eb,_0x2c95d9,_0x31160c)=>{const _0x19f6d2=a21_0xe4e60a,_0x4395aa=fs[_0x19f6d2(0x111)](_0x2cd1eb);_0x4395aa['on']('error',function(_0x4e5cce){const _0x341ff6=_0x19f6d2;_0x4e5cce&&console['log'](_0x341ff6(0x10b),_0x2cd1eb),_0x31160c&&_0x31160c(_0x4e5cce);});const _0x2b6b2=fs[_0x19f6d2(0xfb)](_0x2c95d9);_0x2b6b2['on']('error',function(_0xf70fdc){const _0x6823c5=_0x19f6d2;_0xf70fdc&&console['log'](_0x6823c5(0x101),_0x2c95d9),_0x31160c&&_0x31160c(_0xf70fdc);}),_0x2b6b2['on'](_0x19f6d2(0x10e),function(_0x54391d){_0x31160c&&_0x31160c(_0x54391d);}),_0x4395aa['pipe'](_0x2b6b2);},exports[a21_0xe4e60a(0x108)]=(_0x4a0905,_0x49eabb)=>{const _0x289c6f=a21_0xe4e60a,_0xb4f0d7=this,_0x227447=fs[_0x289c6f(0x109)](_0x4a0905);_0x227447[_0x289c6f(0x103)](_0x231408=>{const _0xd44f4=_0x289c6f,_0x579ce2=_0x4a0905+'/'+_0x231408,_0x322b32=fs['statSync'](_0x579ce2);_0x322b32['isDirectory']()?_0xb4f0d7[_0xd44f4(0x108)](_0x579ce2,_0x49eabb):_0x49eabb[_0xd44f4(0x10a)](_0x579ce2);});},exports[a21_0xe4e60a(0xfd)]=(_0x595473,_0x3787d9)=>{return new Promise(_0x1ab7cb=>{const _0x7afcb=[];_0x3787d9['forEach']((_0x176154,_0x2d6d93)=>{const _0x3383bf=a21_0x42e7,_0x41b441=_0x595473+'/'+_0x7afcb[_0x3383bf(0xfe)]('/')+'/'+_0x176154;try{const _0x349077=fs[_0x3383bf(0xf9)](_0x41b441);_0x349077[_0x3383bf(0xff)]()?_0x2d6d93===_0x3787d9[_0x3383bf(0x110)]-0x1&&_0x1ab7cb():(fs['mkdirSync'](_0x41b441),_0x2d6d93===_0x3787d9[_0x3383bf(0x110)]-0x1&&_0x1ab7cb());}catch(_0x1d5fb1){fs[_0x3383bf(0x10d)](_0x41b441),_0x2d6d93===_0x3787d9[_0x3383bf(0x110)]-0x1&&_0x1ab7cb();}_0x7afcb['push'](_0x176154);});});};function a21_0x5a78(){const _0x2f9cf5=['CreatePaths','join','isDirectory','5004660HVlSrt','write\x20error','27512pRCBKM','forEach','6092136GmUVpZ','DeleteDirAllFile','unlinkSync','path','DeepScanner','readdirSync','push','read\x20error','30PSKvOO','mkdirSync','close','mkdir','length','createReadStream','174MUgfQC','CopyFile','2243457KVKxvK','114hKrZMd','89812sQiHtF','rmdirSync','141351YhoTyE','statSync','CopyFolder','createWriteStream','737730OlgfzV'];a21_0x5a78=function(){return _0x2f9cf5;};return a21_0x5a78();}