@zwa73/dev-utils 1.0.81 → 1.0.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli +1 -1
- package/data/template/base/gitignore +3 -0
- package/data/template/base/package.json +25 -0
- package/data/template/base/scripts/compile.ps1 +8 -0
- package/data/template/base/scripts/release.ps1 +4 -0
- package/data/template/base/src/macro.macro.ts +6 -0
- package/data/template/base/tsconfig.cjs.json +9 -0
- package/data/template/base/tsconfig.json +22 -0
- package/data/template/base/tsconfig.mjs.json +10 -0
- package/dist/cjs/Command/GenTemplate.d.ts +3 -0
- package/dist/cjs/Command/GenTemplate.js +59 -0
- package/dist/{Command → cjs/Command}/Route.js +2 -4
- package/dist/{Command → cjs/Command}/RouteInterface.d.ts +4 -0
- package/dist/{Command → cjs/Command}/RouteInterface.js +6 -2
- package/dist/cjs/test/testRegex.js +3 -0
- package/dist/{test → cjs/test}/testRegex.macro.js +0 -1
- package/dist/{test → cjs/test}/testRegexa.macro.js +0 -1
- package/dist/mjs/Command/ExpandMacro.d.ts +3 -0
- package/dist/mjs/Command/ExpandMacro.js +16 -0
- package/dist/mjs/Command/GenI18n.d.ts +3 -0
- package/dist/mjs/Command/GenI18n.js +75 -0
- package/dist/mjs/Command/GenSchema.d.ts +3 -0
- package/dist/mjs/Command/GenSchema.js +22 -0
- package/dist/mjs/Command/GenTemplate.d.ts +3 -0
- package/dist/mjs/Command/GenTemplate.js +52 -0
- package/dist/mjs/Command/MapPath.d.ts +3 -0
- package/dist/mjs/Command/MapPath.js +64 -0
- package/dist/mjs/Command/Node.d.ts +3 -0
- package/dist/mjs/Command/Node.js +14 -0
- package/dist/mjs/Command/Release.d.ts +3 -0
- package/dist/mjs/Command/Release.js +88 -0
- package/dist/mjs/Command/Route.d.ts +1 -0
- package/dist/mjs/Command/Route.js +20 -0
- package/dist/mjs/Command/RouteInterface.d.ts +24 -0
- package/dist/mjs/Command/RouteInterface.js +58 -0
- package/dist/mjs/Command/ScanDups.d.ts +3 -0
- package/dist/mjs/Command/ScanDups.js +43 -0
- package/dist/mjs/Command/index.d.ts +1 -0
- package/dist/mjs/Command/index.js +1 -0
- package/dist/mjs/Macro.macro.d.ts +1 -0
- package/dist/mjs/Macro.macro.js +2 -0
- package/dist/mjs/QuickFunc.d.ts +2 -0
- package/dist/mjs/QuickFunc.js +2 -0
- package/dist/mjs/UtilAst.d.ts +13 -0
- package/dist/mjs/UtilAst.js +15 -0
- package/dist/mjs/UtilDevTool.d.ts +99 -0
- package/dist/mjs/UtilDevTool.js +296 -0
- package/dist/mjs/UtilInterface.d.ts +4 -0
- package/dist/mjs/UtilInterface.js +1 -0
- package/dist/mjs/UtilMacro.d.ts +7 -0
- package/dist/mjs/UtilMacro.js +23 -0
- package/dist/mjs/index.d.ts +5 -0
- package/dist/mjs/index.js +5 -0
- package/dist/mjs/test/testFileMacro.d.ts +1 -0
- package/dist/mjs/test/testFileMacro.js +1 -0
- package/dist/mjs/test/testGlobMacro.d.ts +1 -0
- package/dist/mjs/test/testGlobMacro.js +2 -0
- package/dist/mjs/test/testRegex.d.ts +1 -0
- package/dist/mjs/test/testRegex.js +2 -0
- package/dist/mjs/test/testRegex.macro.d.ts +1 -0
- package/dist/mjs/test/testRegex.macro.js +9 -0
- package/dist/mjs/test/testRegexa.d.ts +1 -0
- package/dist/mjs/test/testRegexa.js +1 -0
- package/dist/mjs/test/testRegexa.macro.d.ts +1 -0
- package/dist/mjs/test/testRegexa.macro.js +2 -0
- package/package.json +8 -3
- package/data/init/index.d.ts +0 -1
- package/data/init/index.js +0 -1
- package/data/init/scripts/compile.ps1 +0 -5
- package/data/init/tsconfig.compile.json +0 -4
- package/data/init/tsconfig.json +0 -22
- package/dist/Command/Init.d.ts +0 -3
- package/dist/Command/Init.js +0 -82
- package/dist/Command/InitElectron.d.ts +0 -3
- package/dist/Command/InitElectron.js +0 -64
- package/dist/test/testRegex.js +0 -10
- package/index.d.ts +0 -1
- package/index.js +0 -1
- /package/data/{init → template/base}/scripts/watch.ps1 +0 -0
- /package/data/{init → template/base}/src/index.ts +0 -0
- /package/data/{InitElectron → template/electron}/.eslintrc.js +0 -0
- /package/data/{InitElectron → template/electron}/forge.config.ts +0 -0
- /package/data/{InitElectron → template/electron}/gitignore +0 -0
- /package/data/{InitElectron → template/electron}/package-lock.json +0 -0
- /package/data/{InitElectron → template/electron}/package.json +0 -0
- /package/data/{InitElectron → template/electron}/src/Backend/BridgeBackend.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/Backend/index.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/Frontend/Base.tsx +0 -0
- /package/data/{InitElectron → template/electron}/src/Frontend/ContextProxy.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/Frontend/index.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/app.tsx +0 -0
- /package/data/{InitElectron → template/electron}/src/index.html +0 -0
- /package/data/{InitElectron → template/electron}/src/index.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/preload.ts +0 -0
- /package/data/{InitElectron → template/electron}/src/renderer.ts +0 -0
- /package/data/{InitElectron → template/electron}/tsconfig.json +0 -0
- /package/data/{InitElectron → template/electron}/webpack.main.config.ts +0 -0
- /package/data/{InitElectron → template/electron}/webpack.plugins.ts +0 -0
- /package/data/{InitElectron → template/electron}/webpack.renderer.config.ts +0 -0
- /package/data/{InitElectron → template/electron}/webpack.rules.ts +0 -0
- /package/dist/{Command → cjs/Command}/ExpandMacro.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/ExpandMacro.js +0 -0
- /package/dist/{Command → cjs/Command}/GenI18n.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/GenI18n.js +0 -0
- /package/dist/{Command → cjs/Command}/GenSchema.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/GenSchema.js +0 -0
- /package/dist/{Command → cjs/Command}/MapPath.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/MapPath.js +0 -0
- /package/dist/{Command → cjs/Command}/Node.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/Node.js +0 -0
- /package/dist/{Command → cjs/Command}/Release.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/Release.js +0 -0
- /package/dist/{Command → cjs/Command}/Route.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/ScanDups.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/ScanDups.js +0 -0
- /package/dist/{Command → cjs/Command}/index.d.ts +0 -0
- /package/dist/{Command → cjs/Command}/index.js +0 -0
- /package/dist/{Macro.macro.d.ts → cjs/Macro.macro.d.ts} +0 -0
- /package/dist/{Macro.macro.js → cjs/Macro.macro.js} +0 -0
- /package/dist/{QuickFunc.d.ts → cjs/QuickFunc.d.ts} +0 -0
- /package/dist/{QuickFunc.js → cjs/QuickFunc.js} +0 -0
- /package/dist/{UtilAst.d.ts → cjs/UtilAst.d.ts} +0 -0
- /package/dist/{UtilAst.js → cjs/UtilAst.js} +0 -0
- /package/dist/{UtilDevTool.d.ts → cjs/UtilDevTool.d.ts} +0 -0
- /package/dist/{UtilDevTool.js → cjs/UtilDevTool.js} +0 -0
- /package/dist/{UtilInterface.d.ts → cjs/UtilInterface.d.ts} +0 -0
- /package/dist/{UtilInterface.js → cjs/UtilInterface.js} +0 -0
- /package/dist/{UtilMacro.d.ts → cjs/UtilMacro.d.ts} +0 -0
- /package/dist/{UtilMacro.js → cjs/UtilMacro.js} +0 -0
- /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/dist/{index.js → cjs/index.js} +0 -0
- /package/dist/{test → cjs/test}/testFileMacro.d.ts +0 -0
- /package/dist/{test → cjs/test}/testFileMacro.js +0 -0
- /package/dist/{test → cjs/test}/testGlobMacro.d.ts +0 -0
- /package/dist/{test → cjs/test}/testGlobMacro.js +0 -0
- /package/dist/{test → cjs/test}/testRegex.d.ts +0 -0
- /package/dist/{test → cjs/test}/testRegex.macro.d.ts +0 -0
- /package/dist/{test → cjs/test}/testRegexa.d.ts +0 -0
- /package/dist/{test → cjs/test}/testRegexa.js +0 -0
- /package/dist/{test → cjs/test}/testRegexa.macro.d.ts +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
type Test3 = 4;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { commentMacro, fileMacro, regionMacro } from "../QuickFunc.js";
|
2
|
+
regionMacro('macroTest1', "type Test1 = 1");
|
3
|
+
regionMacro('macroTest2', "type Test2 = 2");
|
4
|
+
regionMacro('macroTest3', "type Test3 = 3");
|
5
|
+
commentMacro('comment1', "type CM1 = 3");
|
6
|
+
commentMacro('comment2', "type CM2 = 3");
|
7
|
+
regionMacro('macroTest4', "type Test3 = 4", { filePath: 'src/test/**/*.ts', glob: true });
|
8
|
+
fileMacro("type FileMacro = 5", { filePath: 'src/test/testFileMacro.ts' });
|
9
|
+
commentMacro(/regexTest[\S]*/, ({ matchId: id }) => `type ${id} = "${id}"`);
|
@@ -0,0 +1 @@
|
|
1
|
+
type CM1 = 3;
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/package.json
CHANGED
@@ -1,8 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zwa73/dev-utils",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.83",
|
4
4
|
"description": "编译与调试工具",
|
5
|
-
"
|
5
|
+
"type": "module",
|
6
|
+
"exports": {
|
7
|
+
".": {
|
8
|
+
"require": "./dist/cjs/index.js",
|
9
|
+
"import": "./dist/mjs/index.js"
|
10
|
+
}
|
11
|
+
},
|
6
12
|
"scripts": {
|
7
13
|
"test": "jest",
|
8
14
|
"release": "powershell scripts/release",
|
@@ -25,7 +31,6 @@
|
|
25
31
|
"typescript-json-schema": "^0.64.0"
|
26
32
|
},
|
27
33
|
"devDependencies": {
|
28
|
-
"@types/fluent-ffmpeg": "^2.1.24",
|
29
34
|
"@types/jest": "^29.5.12",
|
30
35
|
"@types/node": "^20.14.11",
|
31
36
|
"jest": "^29.7.0",
|
package/data/init/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dist';
|
package/data/init/index.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
module.exports = require("./dist");
|
package/data/init/tsconfig.json
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"compilerOptions": {
|
3
|
-
"allowJs": true,
|
4
|
-
"strict": true,
|
5
|
-
"target": "ES2022",
|
6
|
-
"module": "CommonJS",
|
7
|
-
"moduleResolution": "node",
|
8
|
-
"esModuleInterop": true,
|
9
|
-
"outDir": "./dist",
|
10
|
-
"declaration": true,
|
11
|
-
"baseUrl": ".",
|
12
|
-
"emitDecoratorMetadata": true,
|
13
|
-
"experimentalDecorators": true,
|
14
|
-
"paths": {
|
15
|
-
"@src/*": ["./src/*"],
|
16
|
-
"@/*": ["./*"],
|
17
|
-
"@": ["./src/index"]
|
18
|
-
}
|
19
|
-
},
|
20
|
-
"include": ["./src/**/*.ts", "./src/**/*.js", "./jest/**/*.ts"],
|
21
|
-
"exclude": ["./node_modules/**/*"]
|
22
|
-
}
|
package/dist/Command/Init.d.ts
DELETED
package/dist/Command/Init.js
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
-
}) : function(o, v) {
|
16
|
-
o["default"] = v;
|
17
|
-
});
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
-
if (mod && mod.__esModule) return mod;
|
20
|
-
var result = {};
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
-
__setModuleDefault(result, mod);
|
23
|
-
return result;
|
24
|
-
};
|
25
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
26
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
27
|
-
};
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
-
exports.CmdInit = void 0;
|
30
|
-
const fs = __importStar(require("fs"));
|
31
|
-
const pathe_1 = __importDefault(require("pathe"));
|
32
|
-
const utils_1 = require("@zwa73/utils");
|
33
|
-
const RouteInterface_1 = require("./RouteInterface");
|
34
|
-
const InitDataPath = pathe_1.default.join(RouteInterface_1.DATA_PATH, 'init');
|
35
|
-
/**复制基础文件 */
|
36
|
-
async function copyData() {
|
37
|
-
const filelist = await fs.promises.readdir(InitDataPath);
|
38
|
-
const plist = filelist.map(async (fileName) => {
|
39
|
-
utils_1.SLogger.info(`正在复制 ${fileName}`);
|
40
|
-
const filePath = pathe_1.default.join(InitDataPath, fileName);
|
41
|
-
const targetPath = pathe_1.default.join(RouteInterface_1.PROJECT_PATH, fileName);
|
42
|
-
if (!await utils_1.UtilFT.pathExists(targetPath))
|
43
|
-
await fs.promises.cp(filePath, targetPath, { recursive: true });
|
44
|
-
else
|
45
|
-
utils_1.SLogger.info(`${fileName} 已存在 跳过`);
|
46
|
-
return null;
|
47
|
-
});
|
48
|
-
await Promise.all(plist);
|
49
|
-
}
|
50
|
-
/**安装npm包 */
|
51
|
-
async function installPackage() {
|
52
|
-
const install = async (name) => await utils_1.UtilFunc.exec(`npm i --registry ${RouteInterface_1.MIRROR_SOURCE} ${name}`);
|
53
|
-
const installdev = async (name) => await utils_1.UtilFunc.exec(`npm i --registry ${RouteInterface_1.MIRROR_SOURCE} --save-dev ${name}`);
|
54
|
-
const packageList = ['@zwa73/utils'];
|
55
|
-
const devPackList = [
|
56
|
-
'@zwa73/dev-utils',
|
57
|
-
'@types/fluent-ffmpeg',
|
58
|
-
'@types/node',
|
59
|
-
];
|
60
|
-
for (const name of packageList) {
|
61
|
-
utils_1.SLogger.info(`正在安装 ${name}`);
|
62
|
-
await install(name);
|
63
|
-
}
|
64
|
-
for (const name of devPackList) {
|
65
|
-
utils_1.SLogger.info(`正在安装 ${name}`);
|
66
|
-
await installdev(name);
|
67
|
-
}
|
68
|
-
}
|
69
|
-
/**对项目进行初始化 */
|
70
|
-
const CmdInit = (program) => program
|
71
|
-
.command('Init')
|
72
|
-
.alias('init')
|
73
|
-
.description('对当前目录进行项目初始化')
|
74
|
-
.action(async (opt) => {
|
75
|
-
(0, RouteInterface_1.checkProject)();
|
76
|
-
utils_1.SLogger.info(`开始初始化设置当前目录 ${RouteInterface_1.PROJECT_PATH}`);
|
77
|
-
await Promise.all([
|
78
|
-
copyData(),
|
79
|
-
installPackage(),
|
80
|
-
]);
|
81
|
-
});
|
82
|
-
exports.CmdInit = CmdInit;
|
@@ -1,64 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
-
}) : function(o, v) {
|
16
|
-
o["default"] = v;
|
17
|
-
});
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
-
if (mod && mod.__esModule) return mod;
|
20
|
-
var result = {};
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
-
__setModuleDefault(result, mod);
|
23
|
-
return result;
|
24
|
-
};
|
25
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
26
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
27
|
-
};
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
29
|
-
exports.CmdInitElectron = void 0;
|
30
|
-
const fs = __importStar(require("fs"));
|
31
|
-
const pathe_1 = __importDefault(require("pathe"));
|
32
|
-
const utils_1 = require("@zwa73/utils");
|
33
|
-
const RouteInterface_1 = require("./RouteInterface");
|
34
|
-
const InitDataPath = pathe_1.default.join(RouteInterface_1.DATA_PATH, 'InitElectron');
|
35
|
-
/**复制基础文件 */
|
36
|
-
async function copyData() {
|
37
|
-
const filelist = await fs.promises.readdir(InitDataPath);
|
38
|
-
const plist = filelist.map(async (fileName) => {
|
39
|
-
utils_1.SLogger.info(`正在复制 ${fileName}`);
|
40
|
-
const filePath = pathe_1.default.join(InitDataPath, fileName);
|
41
|
-
const targetPath = pathe_1.default.join(RouteInterface_1.PROJECT_PATH, fileName);
|
42
|
-
if (!await utils_1.UtilFT.pathExists(targetPath))
|
43
|
-
await fs.promises.cp(filePath, targetPath, { recursive: true });
|
44
|
-
else
|
45
|
-
utils_1.SLogger.info(`${fileName} 已存在 跳过`);
|
46
|
-
return null;
|
47
|
-
});
|
48
|
-
await Promise.all(plist);
|
49
|
-
await fs.promises.rename('./gitignore', './.gitignore');
|
50
|
-
}
|
51
|
-
/**对项目进行初始化 */
|
52
|
-
const CmdInitElectron = (program) => program
|
53
|
-
.command('Init-Electron')
|
54
|
-
.alias('initelectron')
|
55
|
-
.description('对当前目录进行项目初始化,创建Electron基础环境')
|
56
|
-
.action(async (opt) => {
|
57
|
-
//checkProject();
|
58
|
-
utils_1.SLogger.info(`开始初始化设置当前目录 ${RouteInterface_1.PROJECT_PATH}`);
|
59
|
-
await Promise.all([
|
60
|
-
copyData(),
|
61
|
-
utils_1.UtilFunc.exec(`npm ci`, { outlvl: 'info', errlvl: 'warn' })
|
62
|
-
]);
|
63
|
-
});
|
64
|
-
exports.CmdInitElectron = CmdInitElectron;
|
package/dist/test/testRegex.js
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
const utils_1 = require("@zwa73/utils");
|
7
|
-
const pathe_1 = __importDefault(require("pathe"));
|
8
|
-
utils_1.UtilFT.fileSearchRegexSync(__dirname, /.+/.source, { relative: false })
|
9
|
-
.map((filepath) => pathe_1.default.relative(__dirname, filepath)); //?
|
10
|
-
2;
|
package/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dist';
|
package/index.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
module.exports = require("./dist");
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|