create-packer 1.23.2 → 1.24.0
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/package.json +1 -1
- package/template/web-app/react/package.json +3 -14
- package/template/web-app/react/tailwind.config.cjs +1 -1
- package/template/web-app/react/tsconfig.json +2 -2
- package/template/web-app/react/vite.config.ts +3 -3
- package/template/web-app/vue/index.html +1 -1
- package/template/web-app/vue/package.json +3 -3
- package/template/web-app/vue/tailwind.config.cjs +1 -1
- package/template/web-app/vue/tsconfig.json +2 -2
- package/template/web-app/vue/vite.config.ts +3 -3
- package/template/web-extension/.gitignore +1 -0
- package/template/web-extension/.vscode/extensions.json +7 -7
- package/template/web-extension/defineManifest.ts +2 -2
- package/template/web-extension/package.json +3 -3
- package/template/web-extension/tailwind.config.cjs +1 -1
- package/template/web-extension/tsconfig.json +2 -2
- package/template/web-extension/tsconfig.node.json +8 -7
- package/template/web-app/react/jest.config.cjs +0 -55
- package/template/web-app/react/jest.setup.ts +0 -5
- package/template/web-app/react/src/pages/home/home.spec.tsx +0 -15
- /package/template/web-app/react/{src/assets → assets}/react.svg +0 -0
- /package/template/web-app/react/{src/controllers → controllers}/index.ts +0 -0
- /package/template/web-app/react/{src/controllers → controllers}/useInterval.ts +0 -0
- /package/template/web-app/react/{src/controllers → controllers}/useLoadingAction.ts +0 -0
- /package/template/web-app/react/{src/domain → domain}/app/app.model.ts +0 -0
- /package/template/web-app/react/{src/domain → domain}/app/index.ts +0 -0
- /package/template/web-app/react/{src/index.css → index.css} +0 -0
- /package/template/web-app/react/{src/main.tsx → main.tsx} +0 -0
- /package/template/web-app/react/{src/mockUtils.ts → mockUtils.ts} +0 -0
- /package/template/web-app/react/{src/models → models}/index.ts +0 -0
- /package/template/web-app/react/{src/models → models}/useSyncState.ts +0 -0
- /package/template/web-app/react/{src/models → models}/useVisible.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/home.css +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/home.mock.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/home.tsx +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/index.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/providers/api.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/home/providers/index.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/layout/components/index.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/layout/components/loading.tsx +0 -0
- /package/template/web-app/react/{src/pages → pages}/layout/index.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/layout/layout.tsx +0 -0
- /package/template/web-app/react/{src/pages → pages}/notFound/index.ts +0 -0
- /package/template/web-app/react/{src/pages → pages}/notFound/notFound.tsx +0 -0
- /package/template/web-app/react/{src/providers → providers}/componentInstance.tsx +0 -0
- /package/template/web-app/react/{src/providers → providers}/index.ts +0 -0
- /package/template/web-app/react/{src/providers → providers}/modelUtils.ts +0 -0
- /package/template/web-app/react/{src/providers → providers}/request.ts +0 -0
- /package/template/web-app/react/{src/router → router}/home/ids.ts +0 -0
- /package/template/web-app/react/{src/router → router}/home/index.ts +0 -0
- /package/template/web-app/react/{src/router → router}/home/routes.tsx +0 -0
- /package/template/web-app/react/{src/router → router}/ids.ts +0 -0
- /package/template/web-app/react/{src/router → router}/index.ts +0 -0
- /package/template/web-app/react/{src/router → router}/router.controller.ts +0 -0
- /package/template/web-app/react/{src/router → router}/router.provider.ts +0 -0
- /package/template/web-app/react/{src/router → router}/router.tsx +0 -0
- /package/template/web-app/react/{src/router → router}/router.types.ts +0 -0
- /package/template/web-app/react/{src/types → types}/index.ts +0 -0
- /package/template/web-app/react/{src/types → types}/utils.ts +0 -0
- /package/template/web-app/react/{src/vite-env.d.ts → vite-env.d.ts} +0 -0
- /package/template/web-app/vue/{src/app.vue → app.vue} +0 -0
- /package/template/web-app/vue/{src/assets → assets}/vue.svg +0 -0
- /package/template/web-app/vue/{src/main.ts → main.ts} +0 -0
- /package/template/web-app/vue/{src/mockUtils.ts → mockUtils.ts} +0 -0
- /package/template/web-app/vue/{src/models → models}/index.ts +0 -0
- /package/template/web-app/vue/{src/models → models}/useList.ts +0 -0
- /package/template/web-app/vue/{src/models → models}/useVisible.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/home/home.mock.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/home/home.vue +0 -0
- /package/template/web-app/vue/{src/pages → pages}/home/index.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/home/providers/api.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/home/providers/index.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/layout/index.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/layout/layout.vue +0 -0
- /package/template/web-app/vue/{src/pages → pages}/not-found/index.ts +0 -0
- /package/template/web-app/vue/{src/pages → pages}/not-found/not-found.vue +0 -0
- /package/template/web-app/vue/{src/providers → providers}/app.ts +0 -0
- /package/template/web-app/vue/{src/providers → providers}/createComponentInstance.ts +0 -0
- /package/template/web-app/vue/{src/providers → providers}/index.ts +0 -0
- /package/template/web-app/vue/{src/providers → providers}/request.ts +0 -0
- /package/template/web-app/vue/{src/router → router}/home/index.ts +0 -0
- /package/template/web-app/vue/{src/router → router}/home/names.ts +0 -0
- /package/template/web-app/vue/{src/router → router}/home/routes.ts +0 -0
- /package/template/web-app/vue/{src/router → router}/index.ts +0 -0
- /package/template/web-app/vue/{src/router → router}/names.ts +0 -0
- /package/template/web-app/vue/{src/style.css → style.css} +0 -0
- /package/template/web-app/vue/{src/vite-env.d.ts → vite-env.d.ts} +0 -0
- /package/template/web-extension/{src/assets → assets}/react.svg +0 -0
- /package/template/web-extension/{src/content_script → content_script}/content.css +0 -0
- /package/template/web-extension/{src/content_script → content_script}/content.spec.tsx +0 -0
- /package/template/web-extension/{src/content_script → content_script}/content.tsx +0 -0
- /package/template/web-extension/{src/content_script → content_script}/index.tsx +0 -0
- /package/template/web-extension/{src/models → models}/index.ts +0 -0
- /package/template/web-extension/{src/models → models}/useSyncState.ts +0 -0
- /package/template/web-extension/{src/models → models}/useVisible.ts +0 -0
- /package/template/web-extension/{src/popup → popup}/index.tsx +0 -0
- /package/template/web-extension/{src/popup → popup}/popup.container.tsx +0 -0
- /package/template/web-extension/{src/popup → popup}/popup.css +0 -0
- /package/template/web-extension/{src/popup → popup}/popup.html +0 -0
- /package/template/web-extension/{src/popup → popup}/popup.spec.tsx +0 -0
- /package/template/web-extension/{src/providers → providers}/index.ts +0 -0
- /package/template/web-extension/{src/providers → providers}/modelUtils.ts +0 -0
- /package/template/web-extension/{src/providers → providers}/request.ts +0 -0
- /package/template/web-extension/{src/types → types}/index.ts +0 -0
- /package/template/web-extension/{src/types → types}/utils.ts +0 -0
- /package/template/web-extension/{src/vite-env.d.ts → vite-env.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -9,12 +9,9 @@
|
|
|
9
9
|
"build": "tsc --noEmit && vite build",
|
|
10
10
|
"preview": "vite preview",
|
|
11
11
|
"up:vite": "pnpm up vite @vitejs/* -L",
|
|
12
|
-
"format": "prettier --write \"
|
|
13
|
-
"lint": "tsc --noEmit && eslint
|
|
14
|
-
"lint:fix": "eslint
|
|
15
|
-
"test:watchs": "jest --watch",
|
|
16
|
-
"test": "jest",
|
|
17
|
-
"test:coverage": "jest --silent --watchAll=false --coverage",
|
|
12
|
+
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less}\"",
|
|
13
|
+
"lint": "tsc --noEmit && eslint **/*.{tsx,ts,jsx,js} && stylelint **/*.{css,scss,less}",
|
|
14
|
+
"lint:fix": "eslint **/*.{tsx,ts,jsx,js} --fix && stylelint **/*.{css,scss,less} --fix",
|
|
18
15
|
"cz": "cz",
|
|
19
16
|
"push": "npm run commit && git push",
|
|
20
17
|
"commit": "git add . && npm run cz"
|
|
@@ -34,18 +31,12 @@
|
|
|
34
31
|
"@commitlint/cli": "17.6.1",
|
|
35
32
|
"@commitlint/config-conventional": "17.6.1",
|
|
36
33
|
"@commitlint/cz-commitlint": "17.5.0",
|
|
37
|
-
"@testing-library/dom": "9.2.0",
|
|
38
|
-
"@testing-library/jest-dom": "5.16.5",
|
|
39
|
-
"@testing-library/react": "14.0.0",
|
|
40
|
-
"@testing-library/user-event": "14.4.3",
|
|
41
|
-
"@types/jest": "29.5.1",
|
|
42
34
|
"@types/lodash-es": "4.17.7",
|
|
43
35
|
"@types/mockjs": "1.0.7",
|
|
44
36
|
"@types/node": "18.16.0",
|
|
45
37
|
"@types/qs": "6.9.7",
|
|
46
38
|
"@types/react": "18.0.38",
|
|
47
39
|
"@types/react-dom": "18.0.11",
|
|
48
|
-
"@types/testing-library__jest-dom": "5.14.5",
|
|
49
40
|
"@typescript-eslint/eslint-plugin": "5.59.0",
|
|
50
41
|
"@typescript-eslint/parser": "5.59.0",
|
|
51
42
|
"@vitejs/plugin-react": "4.0.0",
|
|
@@ -60,8 +51,6 @@
|
|
|
60
51
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
61
52
|
"husky": "8.0.3",
|
|
62
53
|
"inquirer": "8",
|
|
63
|
-
"jest": "29.5.0",
|
|
64
|
-
"jest-environment-jsdom": "29.5.0",
|
|
65
54
|
"mockjs": "1.1.0",
|
|
66
55
|
"postcss": "8.4.23",
|
|
67
56
|
"postcss-import": "15.1.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @type {import('tailwindcss').Config} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
content: ['./index.html', './
|
|
3
|
+
content: ['./index.html', './main.tsx', './pages/**/*.{ts,tsx,js,jsx}', './domain/**/*.{ts,tsx,js,jsx}', './components/**/*.{ts,tsx,js,jsx}'],
|
|
4
4
|
theme: {
|
|
5
5
|
extend: {}
|
|
6
6
|
},
|
|
@@ -14,13 +14,13 @@ export default defineConfig(({ command, mode }) => {
|
|
|
14
14
|
typescript: true,
|
|
15
15
|
eslint: {
|
|
16
16
|
// for example, lint .ts and .tsx
|
|
17
|
-
lintCommand: 'eslint
|
|
17
|
+
lintCommand: 'eslint **/*.{ts,tsx,js,jsx}',
|
|
18
18
|
dev: {
|
|
19
19
|
logLevel: ['error']
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
stylelint: {
|
|
23
|
-
lintCommand: 'stylelint
|
|
23
|
+
lintCommand: 'stylelint **/*.{less,scss,less}',
|
|
24
24
|
dev: {
|
|
25
25
|
logLevel: ['error']
|
|
26
26
|
}
|
|
@@ -28,7 +28,7 @@ export default defineConfig(({ command, mode }) => {
|
|
|
28
28
|
}),
|
|
29
29
|
react(),
|
|
30
30
|
mockDevServer({
|
|
31
|
-
include: ['
|
|
31
|
+
include: ['**/*.mock.{ts,js}']
|
|
32
32
|
})
|
|
33
33
|
]
|
|
34
34
|
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
"dev": "vite",
|
|
9
9
|
"build": "vue-tsc --noEmit && vite build",
|
|
10
10
|
"preview": "vite preview",
|
|
11
|
-
"format": "prettier --write \"
|
|
12
|
-
"lint": "eslint
|
|
13
|
-
"lint:fix": "eslint
|
|
11
|
+
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,vue,css,scss,less}\"",
|
|
12
|
+
"lint": "eslint **/*.{ts,tsx,js,jsx,vue} && stylelint **/*.{css,scss,less}",
|
|
13
|
+
"lint:fix": "eslint **/*.{ts,tsx,js,jsx,vue} --fix && stylelint **/*.{css,scss,less} --fix",
|
|
14
14
|
"cz": "cz",
|
|
15
15
|
"push": "npm run commit && git push",
|
|
16
16
|
"commit": "git add . && npm run cz"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @type {import('tailwindcss').Config} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
content: ['./index.html', './
|
|
3
|
+
content: ['./index.html', './app.vue', './pages/**/*.{vue,ts,tsx,js,jsx}', './domain/**/*.{vue,ts,tsx,js,jsx}', './components/**/*.{vue,ts,tsx,js,jsx}'],
|
|
4
4
|
theme: {
|
|
5
5
|
extend: {}
|
|
6
6
|
},
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"lib": ["ESNext", "DOM"],
|
|
16
16
|
"skipLibCheck": true,
|
|
17
17
|
"paths": {
|
|
18
|
-
"@/*": ["
|
|
18
|
+
"@/*": ["./*"]
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
|
-
"include": ["
|
|
21
|
+
"include": ["**/*.ts", "**/*.tsx", "**/*.vue"],
|
|
22
22
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
23
23
|
}
|
|
@@ -17,13 +17,13 @@ export default defineConfig(({ command, mode }) => {
|
|
|
17
17
|
typescript: true,
|
|
18
18
|
eslint: {
|
|
19
19
|
// for example, lint .ts and .tsx
|
|
20
|
-
lintCommand: 'eslint
|
|
20
|
+
lintCommand: 'eslint **/*.{ts,tsx,js,jsx,vue}',
|
|
21
21
|
dev: {
|
|
22
22
|
logLevel: ['error']
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
stylelint: {
|
|
26
|
-
lintCommand: 'stylelint
|
|
26
|
+
lintCommand: 'stylelint **/*.{less,scss,less}',
|
|
27
27
|
dev: {
|
|
28
28
|
logLevel: ['error']
|
|
29
29
|
}
|
|
@@ -36,7 +36,7 @@ export default defineConfig(({ command, mode }) => {
|
|
|
36
36
|
}),
|
|
37
37
|
svgLoader(),
|
|
38
38
|
mockDevServer({
|
|
39
|
-
include: ['
|
|
39
|
+
include: ['**/*.mock.{ts,js}']
|
|
40
40
|
})
|
|
41
41
|
]
|
|
42
42
|
return {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
{
|
|
2
|
-
"recommendations": [
|
|
3
|
-
"dbaeumer.vscode-eslint",
|
|
4
|
-
"stylelint.vscode-stylelint",
|
|
5
|
-
"esbenp.prettier-vscode"
|
|
6
|
-
]
|
|
7
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"recommendations": [
|
|
3
|
+
"dbaeumer.vscode-eslint",
|
|
4
|
+
"stylelint.vscode-stylelint",
|
|
5
|
+
"esbenp.prettier-vscode"
|
|
6
|
+
]
|
|
7
|
+
}
|
|
@@ -11,12 +11,12 @@ export default function ({ mode }: argType) {
|
|
|
11
11
|
description: 'Base Level Extension',
|
|
12
12
|
version: pkgJson.version,
|
|
13
13
|
action: {
|
|
14
|
-
default_popup: '
|
|
14
|
+
default_popup: 'popup/popup.html',
|
|
15
15
|
default_icon: 'vite.svg'
|
|
16
16
|
},
|
|
17
17
|
content_scripts: [
|
|
18
18
|
{
|
|
19
|
-
js: ['
|
|
19
|
+
js: ['content_script/index.tsx'],
|
|
20
20
|
matches: [
|
|
21
21
|
'https://developer.chrome.com/docs/extensions/*',
|
|
22
22
|
'https://developer.chrome.com/docs/webstore/*'
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"build": "tsc --noEmit && vite build",
|
|
10
10
|
"preview": "vite preview",
|
|
11
11
|
"up:vite": "pnpm up vite @vitejs/* -L",
|
|
12
|
-
"format": "prettier --write \"
|
|
13
|
-
"lint": "tsc --noEmit && eslint
|
|
14
|
-
"lint:fix": "eslint
|
|
12
|
+
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,css,scss,less,json}\"",
|
|
13
|
+
"lint": "tsc --noEmit && eslint **/*.{tsx,ts} && stylelint **/*.{css,scss,less}",
|
|
14
|
+
"lint:fix": "eslint **/*.{tsx,ts} --fix && stylelint **/*.{css,scss,less} --fix",
|
|
15
15
|
"test:watchs": "jest --watch",
|
|
16
16
|
"test": "jest",
|
|
17
17
|
"test:coverage": "jest --silent --watchAll=false --coverage",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @type {import('tailwindcss').Config} */
|
|
2
2
|
module.exports = {
|
|
3
|
-
content: ['./index.html', './
|
|
3
|
+
content: ['./index.html', './popup/**/*.{ts,tsx,js,jsx}', './background/**/*.{ts,tsx,js,jsx}', './content_script/**/*.{ts,tsx,js,jsx}'],
|
|
4
4
|
theme: {
|
|
5
5
|
extend: {}
|
|
6
6
|
},
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"composite": true,
|
|
4
|
+
"module": "ESNext",
|
|
5
|
+
"moduleResolution": "Node",
|
|
6
|
+
"allowSyntheticDefaultImports": true,
|
|
7
|
+
"resolveJsonModule": true
|
|
8
|
+
},
|
|
9
|
+
"include": ["vite.config.ts", "defineManifest.ts", "package.json"]
|
|
9
10
|
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
/** @type {import('@jest/types').Config.InitialOptions} */
|
|
2
|
-
module.exports = {
|
|
3
|
-
// The test environment that will be used for testing, jsdom for browser environment
|
|
4
|
-
// https://jestjs.io/docs/configuration#testenvironment-string
|
|
5
|
-
testEnvironment: 'jsdom',
|
|
6
|
-
|
|
7
|
-
// A list of paths to directories that Jest should use to search for files in
|
|
8
|
-
// https://jestjs.io/docs/configuration#roots-arraystring
|
|
9
|
-
roots: ['<rootDir>/src/'],
|
|
10
|
-
|
|
11
|
-
// The glob patterns Jest uses to detect test files.
|
|
12
|
-
// https://jestjs.io/docs/configuration#testmatch-arraystring
|
|
13
|
-
testMatch: ['**/*.spec.ts?(x)'],
|
|
14
|
-
|
|
15
|
-
// Jest transformations
|
|
16
|
-
// https://jestjs.io/docs/configuration#transform-objectstring-pathtotransformer--pathtotransformer-object
|
|
17
|
-
transform: {
|
|
18
|
-
'^.+\\.tsx?$': 'ts-jest' // Transform TypeScript files using ts-jest
|
|
19
|
-
},
|
|
20
|
-
|
|
21
|
-
// A list of paths to modules that run some code to configure or set up the testing framework before each test file in the suite is executed
|
|
22
|
-
// https://jestjs.io/docs/configuration#setupfilesafterenv-array
|
|
23
|
-
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
|
|
24
|
-
|
|
25
|
-
// Code coverage config
|
|
26
|
-
// https://jestjs.io/docs/configuration#collectcoveragefrom-array
|
|
27
|
-
coverageDirectory: '<rootDir>/coverage/',
|
|
28
|
-
collectCoverageFrom: [
|
|
29
|
-
'<rootDir>/src/**/*.{ts,tsx}',
|
|
30
|
-
'!**/__mocks__/**',
|
|
31
|
-
'!**/node_modules/**',
|
|
32
|
-
'!**/*.d.ts'
|
|
33
|
-
],
|
|
34
|
-
|
|
35
|
-
// Important: order matters, specific rules should be defined first
|
|
36
|
-
// https://jestjs.io/fr/docs/configuration#modulenamemapper-objectstring-string--arraystring
|
|
37
|
-
moduleNameMapper: {
|
|
38
|
-
// Handle CSS imports (with CSS modules)
|
|
39
|
-
// https://jestjs.io/docs/webpack#mocking-css-modules
|
|
40
|
-
'^.+\\.module\\.(css|sass|scss|less)$': 'identity-obj-proxy',
|
|
41
|
-
|
|
42
|
-
// Handle CSS imports (without CSS modules)
|
|
43
|
-
'^.+\\.(css|sass|scss|less)$': '<rootDir>/__mocks__/styleMock.js',
|
|
44
|
-
|
|
45
|
-
// Handle static assets
|
|
46
|
-
// https://jestjs.io/docs/webpack#handling-static-assets
|
|
47
|
-
'^.+\\.(jpg|jpeg|png|gif|webp|avif|svg|ttf|woff|woff2)$': `<rootDir>/__mocks__/fileMock.js`,
|
|
48
|
-
|
|
49
|
-
// Handle TypeScript path aliases
|
|
50
|
-
'^@/(.*)$': '<rootDir>/src/$1'
|
|
51
|
-
},
|
|
52
|
-
|
|
53
|
-
verbose: true,
|
|
54
|
-
testTimeout: 30000
|
|
55
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { render, screen } from '@testing-library/react'
|
|
2
|
-
import Home from './home'
|
|
3
|
-
|
|
4
|
-
describe('HelloWorld', () => {
|
|
5
|
-
it('should renders a msg', () => {
|
|
6
|
-
// arrange
|
|
7
|
-
render(<Home />)
|
|
8
|
-
|
|
9
|
-
// act
|
|
10
|
-
const title = screen.getByTestId('title')
|
|
11
|
-
|
|
12
|
-
// assert
|
|
13
|
-
expect(title).toHaveTextContent(/Hello React!/i)
|
|
14
|
-
})
|
|
15
|
-
})
|
|
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
|
|
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
|