@elliemae/pui-cli 9.0.0-next.5 → 9.0.0-next.50
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/app.tsconfig.json +1 -1
- package/dist/cjs/babel.config.cjs +1 -1
- package/dist/cjs/cli.js +2 -2
- package/dist/cjs/commands/build.js +4 -6
- package/dist/cjs/commands/codemod.js +1 -1
- package/dist/cjs/commands/gendoc.js +2 -2
- package/dist/cjs/commands/lint.js +28 -11
- package/dist/cjs/commands/pack.js +3 -4
- package/dist/cjs/commands/start.js +3 -3
- package/dist/cjs/commands/storybook.js +1 -1
- package/dist/cjs/commands/test.js +46 -23
- package/dist/cjs/commands/tscheck.js +3 -3
- package/dist/cjs/commands/utils.js +37 -10
- package/dist/cjs/commands/version.js +1 -1
- package/dist/cjs/commands/vitest.js +6 -11
- package/dist/cjs/index.cjs +0 -2
- package/dist/cjs/index.js +4 -2
- package/dist/cjs/lint-config/eslint/common.cjs +3 -2
- package/dist/cjs/lint-config/eslint/typescript/common.cjs +3 -3
- package/dist/cjs/lint-config/lint-staged.config.js +2 -2
- package/dist/cjs/lint-config/stylelint.config.js +45 -0
- package/dist/cjs/monorepo/delete-merged-tags.js +2 -3
- package/dist/cjs/monorepo/set-registry-version.js +3 -3
- package/dist/cjs/monorepo/set-workspace-version.js +3 -3
- package/dist/cjs/monorepo/utils.js +1 -1
- package/dist/cjs/pui-config.js +5 -6
- package/dist/cjs/release.config.js +46 -0
- package/dist/cjs/server/appRoutes.js +5 -8
- package/dist/cjs/server/csp.js +6 -5
- package/dist/cjs/server/index.js +6 -1
- package/dist/cjs/server/logger.js +2 -2
- package/dist/cjs/server/middlewares.js +5 -5
- package/dist/cjs/server/utils.js +12 -5
- package/dist/cjs/server/wsServer.js +125 -0
- package/dist/cjs/testing/ExtendedJSDomEnv.cjs +27 -0
- package/dist/cjs/testing/extended/axe-core/getMessageAndPass.js +36 -0
- package/dist/cjs/testing/extended/axe-core/index.js +24 -0
- package/dist/cjs/testing/extended/axe-core/reporter.js +50 -0
- package/dist/cjs/testing/extended/axe-core/shouldIgnoreNodeViolation.js +31 -0
- package/dist/cjs/testing/extended/axe-core/toHaveNoViolations.js +42 -0
- package/dist/cjs/testing/jest.config.cjs +6 -2
- package/dist/cjs/testing/jest.polyfills.cjs +30 -0
- package/dist/cjs/testing/mocks/svg.js +1 -1
- package/dist/cjs/testing/setup-react-env.js +1 -1
- package/dist/cjs/testing/setup-test-env.js +0 -2
- package/dist/cjs/testing/setup-tests.js +30 -12
- package/dist/cjs/testing/vitest.config.js +10 -10
- package/dist/cjs/transpile/.swcrc +1 -1
- package/dist/cjs/transpile/esbuild.js +48 -15
- package/dist/cjs/transpile/react-shim.js +1 -1
- package/dist/cjs/update-notifier.js +3 -3
- package/dist/cjs/utils.js +4 -5
- package/dist/cjs/webpack/helpers.js +29 -23
- package/dist/cjs/webpack/webpack.base.babel.js +21 -35
- package/dist/cjs/webpack/webpack.dev.babel.js +20 -10
- package/dist/cjs/webpack/webpack.lib.base.babel.js +22 -13
- package/dist/cjs/webpack/webpack.lib.dev.babel.js +14 -18
- package/dist/cjs/webpack/webpack.lib.prod.babel.js +12 -11
- package/dist/cjs/webpack/webpack.prod.babel.js +8 -8
- package/dist/cjs/webpack/webpack.storybook.js +15 -17
- package/dist/esm/babel.config.cjs +1 -1
- package/dist/esm/commands/build.js +2 -4
- package/dist/esm/commands/lint.js +27 -9
- package/dist/esm/commands/pack.js +1 -2
- package/dist/esm/commands/start.js +1 -1
- package/dist/esm/commands/test.js +45 -22
- package/dist/esm/commands/utils.js +33 -6
- package/dist/esm/commands/vitest.js +5 -10
- package/dist/esm/index.cjs +0 -2
- package/dist/esm/index.js +4 -2
- package/dist/esm/lint-config/eslint/common.cjs +3 -2
- package/dist/esm/lint-config/eslint/typescript/common.cjs +3 -3
- package/dist/esm/lint-config/stylelint.config.js +25 -0
- package/dist/esm/monorepo/delete-merged-tags.js +2 -3
- package/dist/esm/monorepo/set-registry-version.js +1 -1
- package/dist/esm/monorepo/set-workspace-version.js +1 -1
- package/dist/esm/pui-config.js +2 -3
- package/dist/esm/release.config.js +26 -0
- package/dist/esm/server/appRoutes.js +3 -6
- package/dist/esm/server/csp.js +2 -1
- package/dist/esm/server/index.js +6 -1
- package/dist/esm/server/utils.js +11 -4
- package/dist/esm/server/wsServer.js +95 -0
- package/dist/esm/testing/ExtendedJSDomEnv.cjs +27 -0
- package/dist/esm/testing/extended/axe-core/getMessageAndPass.js +16 -0
- package/dist/esm/testing/extended/axe-core/index.js +4 -0
- package/dist/esm/testing/extended/axe-core/reporter.js +30 -0
- package/dist/esm/testing/extended/axe-core/shouldIgnoreNodeViolation.js +11 -0
- package/dist/esm/testing/extended/axe-core/toHaveNoViolations.js +22 -0
- package/dist/esm/testing/jest.config.cjs +6 -2
- package/dist/esm/testing/jest.polyfills.cjs +30 -0
- package/dist/esm/testing/setup-test-env.js +0 -2
- package/dist/esm/testing/setup-tests.js +29 -11
- package/dist/esm/testing/vitest.config.js +8 -8
- package/dist/esm/transpile/.swcrc +1 -1
- package/dist/esm/transpile/esbuild.js +45 -12
- package/dist/esm/update-notifier.js +1 -1
- package/dist/esm/utils.js +2 -3
- package/dist/esm/webpack/helpers.js +25 -19
- package/dist/esm/webpack/webpack.base.babel.js +13 -27
- package/dist/esm/webpack/webpack.dev.babel.js +13 -3
- package/dist/esm/webpack/webpack.lib.base.babel.js +14 -5
- package/dist/esm/webpack/webpack.lib.dev.babel.js +9 -13
- package/dist/esm/webpack/webpack.lib.prod.babel.js +12 -7
- package/dist/esm/webpack/webpack.prod.babel.js +4 -4
- package/dist/esm/webpack/webpack.storybook.js +12 -14
- package/dist/types/docusaurus.config.d.ts +2 -0
- package/dist/types/{babel.config.d.cts → lib/babel.config.d.cts} +7 -7
- package/dist/types/{commands → lib/commands}/build.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/codemod.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/lint.d.ts +3 -2
- package/dist/types/{commands → lib/commands}/pack.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/start.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/storybook.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/test.d.ts +4 -2
- package/dist/types/{commands → lib/commands}/tscheck.d.ts +2 -2
- package/dist/types/lib/commands/utils.d.ts +39 -0
- package/dist/types/{commands → lib/commands}/version.d.ts +2 -2
- package/dist/types/{commands → lib/commands}/vitest.d.ts +2 -2
- package/dist/types/{index.d.cts → lib/index.d.cts} +1 -2
- package/dist/types/{index.d.ts → lib/index.d.ts} +3 -1
- package/dist/types/{lint-config → lib/lint-config}/commitlint.config.d.cts +1 -1
- package/dist/types/{lint-config → lib/lint-config}/eslint/common.d.cts +18 -12
- package/dist/types/{lint-config → lib/lint-config}/eslint/non-react.d.cts +8 -1
- package/dist/types/{lint-config → lib/lint-config}/eslint/react.d.cts +8 -1
- package/dist/types/{lint-config → lib/lint-config}/eslint/typescript/common.d.cts +6 -6
- package/dist/types/{lint-config → lib/lint-config}/eslint/typescript/non-react.d.cts +9 -2
- package/dist/types/{lint-config → lib/lint-config}/eslint/typescript/react.d.cts +9 -2
- package/dist/types/lib/lint-config/lint-staged.config.d.ts +5 -0
- package/dist/types/lib/lint-config/prettier.config.d.cts +8 -0
- package/dist/types/lib/lint-config/stylelint.config.d.ts +13 -0
- package/dist/types/lib/release.config.d.ts +10 -0
- package/dist/types/{server → lib/server}/csp.d.ts +2 -2
- package/dist/types/{server → lib/server}/utils.d.ts +1 -0
- package/dist/types/lib/server/wsServer.d.ts +13 -0
- package/dist/types/lib/testing/ExtendedJSDomEnv.d.cts +5 -0
- package/dist/types/lib/testing/extended/axe-core/getMessageAndPass.d.ts +8 -0
- package/dist/types/lib/testing/extended/axe-core/index.d.ts +1 -0
- package/dist/types/lib/testing/extended/axe-core/reporter.d.ts +2 -0
- package/dist/types/lib/testing/extended/axe-core/shouldIgnoreNodeViolation.d.ts +2 -0
- package/dist/types/lib/testing/extended/axe-core/toHaveNoViolations.d.ts +12 -0
- package/dist/types/lib/testing/jest.config.d.cts +45 -0
- package/dist/types/{testing → lib/testing}/jest.node.config.d.cts +4 -0
- package/dist/types/lib/testing/mocks/axios.d.ts +17 -0
- package/dist/types/{testing → lib/testing}/mocks/pui-diagnostics.d.ts +13 -13
- package/dist/types/lib/testing/setup-tests.d.ts +1 -0
- package/dist/types/lib/testing/vitest.config.d.ts +1 -0
- package/dist/types/lib/tests/basic.test.d.ts +0 -0
- package/dist/types/{transpile → lib/transpile}/esbuild.d.ts +3 -3
- package/dist/types/lib/typedoc.d.cts +3 -0
- package/dist/types/{webpack → lib/webpack}/helpers.d.ts +4 -1
- package/dist/types/{webpack → lib/webpack}/webpack.storybook.d.ts +0 -1
- package/nx.json +97 -0
- package/package.json +209 -193
- package/dist/cjs/lint-config/stylelint.config.cjs +0 -19
- package/dist/cjs/release.config.cjs +0 -24
- package/dist/esm/lint-config/stylelint.config.cjs +0 -19
- package/dist/esm/release.config.cjs +0 -24
- package/dist/types/commands/utils.d.ts +0 -17
- package/dist/types/lint-config/lint-staged.config.d.ts +0 -5
- package/dist/types/lint-config/prettier.config.d.cts +0 -8
- package/dist/types/lint-config/stylelint.config.d.cts +0 -10
- package/dist/types/release.config.d.cts +0 -7
- package/dist/types/testing/jest.config.d.cts +0 -41
- package/dist/types/testing/mocks/axios.d.ts +0 -17
- package/dist/types/testing/vitest.config.d.ts +0 -1
- package/dist/types/typedoc.d.cts +0 -3
- /package/dist/types/{cli.d.ts → lib/cli.d.ts} +0 -0
- /package/dist/types/{commands → lib/commands}/gendoc.d.ts +0 -0
- /package/dist/types/{dummy.d.ts → lib/dummy.d.ts} +0 -0
- /package/dist/types/{monorepo → lib/monorepo}/delete-merged-tags.d.ts +0 -0
- /package/dist/types/{monorepo → lib/monorepo}/set-registry-version.d.ts +0 -0
- /package/dist/types/{monorepo → lib/monorepo}/set-workspace-version.d.ts +0 -0
- /package/dist/types/{monorepo → lib/monorepo}/utils.d.cts +0 -0
- /package/dist/types/{monorepo → lib/monorepo}/utils.d.ts +0 -0
- /package/dist/types/{pui-config.d.ts → lib/pui-config.d.ts} +0 -0
- /package/dist/types/{server → lib/server}/appRoutes.d.ts +0 -0
- /package/dist/types/{server → lib/server}/index.d.ts +0 -0
- /package/dist/types/{server → lib/server}/logger.d.ts +0 -0
- /package/dist/types/{server → lib/server}/middlewares.d.ts +0 -0
- /package/dist/types/{testing/setup-react-env.d.ts → lib/testing/jest.polyfills.d.cts} +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/cssModule.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/html.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/image.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/matchMedia.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/pui-app-loader.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/pui-user-monitoring.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/retry-axios.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/svg.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/mocks/webpack-hmr.d.ts +0 -0
- /package/dist/types/{testing → lib/testing}/resolver.d.cts +0 -0
- /package/dist/types/{testing/setup-test-env.d.ts → lib/testing/setup-react-env.d.ts} +0 -0
- /package/dist/types/{testing/setup-tests.d.ts → lib/testing/setup-test-env.d.ts} +0 -0
- /package/dist/types/{transpile → lib/transpile}/react-shim.d.ts +0 -0
- /package/dist/types/{transpile → lib/transpile}/swcrc.config.d.cts +0 -0
- /package/dist/types/{update-notifier.d.ts → lib/update-notifier.d.ts} +0 -0
- /package/dist/types/{utils.d.cts → lib/utils.d.cts} +0 -0
- /package/dist/types/{utils.d.ts → lib/utils.d.ts} +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.base.babel.d.ts +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.dev.babel.d.ts +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.lib.base.babel.d.ts +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.lib.dev.babel.d.ts +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.lib.prod.babel.d.ts +0 -0
- /package/dist/types/{webpack → lib/webpack}/webpack.prod.babel.d.ts +0 -0
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
branches: [
|
|
3
|
-
'+([0-9])?(.{+([0-9]),x}).x',
|
|
4
|
-
'master',
|
|
5
|
-
'next-major',
|
|
6
|
-
{ name: 'beta', prerelease: true },
|
|
7
|
-
{ name: 'alpha', prerelease: true },
|
|
8
|
-
{ name: 'hotfix', prerelease: true },
|
|
9
|
-
{ name: 'next', prerelease: true },
|
|
10
|
-
],
|
|
11
|
-
plugins: [
|
|
12
|
-
'@semantic-release/commit-analyzer',
|
|
13
|
-
'@semantic-release/release-notes-generator',
|
|
14
|
-
[
|
|
15
|
-
'@semantic-release/changelog',
|
|
16
|
-
{
|
|
17
|
-
changelogTitle:
|
|
18
|
-
'# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines.',
|
|
19
|
-
},
|
|
20
|
-
],
|
|
21
|
-
'@semantic-release/npm',
|
|
22
|
-
'@semantic-release/github',
|
|
23
|
-
],
|
|
24
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
exports.stylelintConfig = {
|
|
2
|
-
ignoreFiles: [
|
|
3
|
-
'/dist/**/*',
|
|
4
|
-
'/coverage/**/*',
|
|
5
|
-
'/build/**/*',
|
|
6
|
-
'/reports/**/*',
|
|
7
|
-
'/temp/**/*',
|
|
8
|
-
'/docs/**/*',
|
|
9
|
-
'/demo/**/*',
|
|
10
|
-
'/node_modules/**/*',
|
|
11
|
-
'/vendor/**/*',
|
|
12
|
-
],
|
|
13
|
-
customSyntax: '@stylelint/postcss-css-in-js',
|
|
14
|
-
extends: [
|
|
15
|
-
'stylelint-config-recommended',
|
|
16
|
-
'stylelint-config-styled-components',
|
|
17
|
-
],
|
|
18
|
-
rules: { 'selector-type-no-unknown': null, 'function-no-unknown': null },
|
|
19
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
branches: [
|
|
3
|
-
'+([0-9])?(.{+([0-9]),x}).x',
|
|
4
|
-
'master',
|
|
5
|
-
'next-major',
|
|
6
|
-
{ name: 'beta', prerelease: true },
|
|
7
|
-
{ name: 'alpha', prerelease: true },
|
|
8
|
-
{ name: 'hotfix', prerelease: true },
|
|
9
|
-
{ name: 'next', prerelease: true },
|
|
10
|
-
],
|
|
11
|
-
plugins: [
|
|
12
|
-
'@semantic-release/commit-analyzer',
|
|
13
|
-
'@semantic-release/release-notes-generator',
|
|
14
|
-
[
|
|
15
|
-
'@semantic-release/changelog',
|
|
16
|
-
{
|
|
17
|
-
changelogTitle:
|
|
18
|
-
'# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines.',
|
|
19
|
-
},
|
|
20
|
-
],
|
|
21
|
-
'@semantic-release/npm',
|
|
22
|
-
'@semantic-release/github',
|
|
23
|
-
],
|
|
24
|
-
};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/// <reference types="node" />
|
|
2
|
-
export declare const exec: (command: string, options?: import("execa").Options<null> | undefined) => Promise<import("execa").ExecaReturnValue<Buffer>>;
|
|
3
|
-
export declare const logInfo: {
|
|
4
|
-
(...data: any[]): void;
|
|
5
|
-
(message?: any, ...optionalParams: any[]): void;
|
|
6
|
-
};
|
|
7
|
-
export declare const logSuccess: (...args: string[]) => void;
|
|
8
|
-
export declare const logError: {
|
|
9
|
-
(...data: any[]): void;
|
|
10
|
-
(message?: any, ...optionalParams: any[]): void;
|
|
11
|
-
};
|
|
12
|
-
export declare const writeAppInfo: () => Promise<void>;
|
|
13
|
-
export declare const copyBuildAssetsToVersionedFolder: () => Promise<void>;
|
|
14
|
-
export declare const isPathExist: (pathToCheck: string) => Promise<boolean>;
|
|
15
|
-
export declare const isApp: () => Promise<boolean>;
|
|
16
|
-
export declare const getCIEnv: () => boolean;
|
|
17
|
-
export declare const isTypeScriptEnabled: () => boolean;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export namespace stylelintConfig {
|
|
2
|
-
export const ignoreFiles: string[];
|
|
3
|
-
export const customSyntax: string;
|
|
4
|
-
const _extends: string[];
|
|
5
|
-
export { _extends as extends };
|
|
6
|
-
export const rules: {
|
|
7
|
-
'selector-type-no-unknown': null;
|
|
8
|
-
'function-no-unknown': null;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
export namespace jestConfig {
|
|
2
|
-
const collectCoverageFrom: string[];
|
|
3
|
-
const coverageThreshold: {};
|
|
4
|
-
const coverageDirectory: string;
|
|
5
|
-
const coverageReporters: string[];
|
|
6
|
-
const moduleDirectories: string[];
|
|
7
|
-
const moduleNameMapper: {
|
|
8
|
-
'.*\\webpack-hmr(.[t|j]s)?$': string;
|
|
9
|
-
'.*\\.(css|scss)$': string;
|
|
10
|
-
'.*\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga|ico)$': string;
|
|
11
|
-
'.*\\.svg(?:\\?[a-zA-Z]+)?$': string;
|
|
12
|
-
'.*\\.html(?:\\?[a-zA-Z]+)?$': string;
|
|
13
|
-
'@elliemae/pui-user-monitoring': string;
|
|
14
|
-
'@elliemae/pui-app-loader': string;
|
|
15
|
-
'@elliemae/pui-diagnostics': string;
|
|
16
|
-
'react-spring/web': string;
|
|
17
|
-
'react-spring/renderprops': string;
|
|
18
|
-
};
|
|
19
|
-
const moduleFileExtensions: string[];
|
|
20
|
-
const setupFilesAfterEnv: string[];
|
|
21
|
-
const setupFiles: string[];
|
|
22
|
-
const testRegex: string;
|
|
23
|
-
const snapshotSerializers: never[];
|
|
24
|
-
const testResultsProcessor: string;
|
|
25
|
-
const resolver: string;
|
|
26
|
-
const transform: {
|
|
27
|
-
'^.+\\.[jt]sx?$': any[];
|
|
28
|
-
};
|
|
29
|
-
const transformIgnorePatterns: string[];
|
|
30
|
-
namespace globals {
|
|
31
|
-
const APP_CONFIG: string | Buffer;
|
|
32
|
-
const __webpack_public_path__: string;
|
|
33
|
-
}
|
|
34
|
-
namespace testEnvironmentOptions {
|
|
35
|
-
const url: string;
|
|
36
|
-
const resources: string;
|
|
37
|
-
}
|
|
38
|
-
const testEnvironment: string;
|
|
39
|
-
const watchPlugins: string[];
|
|
40
|
-
const testTimeout: number;
|
|
41
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
declare namespace _default {
|
|
2
|
-
const defaults: {};
|
|
3
|
-
namespace interceptors {
|
|
4
|
-
namespace request {
|
|
5
|
-
const use: jest.Mock<any, any, any>;
|
|
6
|
-
}
|
|
7
|
-
namespace response {
|
|
8
|
-
const use_1: jest.Mock<any, any, any>;
|
|
9
|
-
export { use_1 as use };
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
const create: jest.Mock<any, any, any>;
|
|
13
|
-
const get: jest.Mock<any, any, any>;
|
|
14
|
-
const post: jest.Mock<any, any, any>;
|
|
15
|
-
const put: jest.Mock<any, any, any>;
|
|
16
|
-
}
|
|
17
|
-
export default _default;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const vitestConfig: import("vitest/dist/config").UserConfigExport;
|
package/dist/types/typedoc.d.cts
DELETED
|
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
|