Skip to content

Commit 3c98dcc

Browse files
committed
Fixing json files and missing .vue files too.
1 parent 5969c38 commit 3c98dcc

File tree

7 files changed

+41
-26
lines changed

7 files changed

+41
-26
lines changed

.github/workflows/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
- name: Install dependencies
2525
run: pnpm install
2626
- name: Run linter
27-
run: pnpm lint
27+
run: pnpm lint

src/icons/DownloadIcon.vue

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
11
<template>
22
<svg
3-
width="1.7em" height="1.7em"
3+
width="1.7em"
4+
height="1.7em"
45
viewBox="0 0 24 24"
56
fill="currentColor"
67
>
78
<g>
89
<rect
9-
x="4" y="18"
10+
x="4"
11+
y="18"
1012
width="16"
11-
height="2" rx="1"
13+
height="2"
14+
rx="1"
1215
ry="1"
1316
/>
1417
<rect
15-
x="3" y="17"
18+
x="3"
19+
y="17"
1620
width="4"
17-
height="2" rx="1"
18-
ry="1" transform="rotate(-90 5 18)"
21+
height="2"
22+
rx="1"
23+
ry="1"
24+
transform="rotate(-90 5 18)"
1925
/>
2026
<rect
21-
x="17" y="17"
27+
x="17"
28+
y="17"
2229
width="4"
23-
height="2" rx="1"
24-
ry="1" transform="rotate(-90 19 18)"
30+
height="2"
31+
rx="1"
32+
ry="1"
33+
transform="rotate(-90 19 18)"
2534
/>
2635
<path
2736
d="M12 15a1 1 0 0 1-.58-.18l-4-2.82a1 1 0 0 1-.24-1.39a1 1 0 0 1 1.4-.24L12 12.76l3.4-2.56a1 1 0 0 1 1.2 1.6l-4 3a1 1 0 0 1-.6.2z"

src/icons/MoonIcon.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
viewBox="0 0 24 24"
5+
>
36
<path
47
fill="currentColor"
58
d="M12.1,22c-0.3,0-0.6,0-0.9,0c-5.5-0.5-9.5-5.4-9-10.9c0.4-4.8,4.2-8.6,9-9c0.4,0,0.8,0.2,1,0.5c0.2,0.3,0.2,0.8-0.1,1.1c-2,2.7-1.4,6.4,1.3,8.4c2.1,1.6,5,1.6,7.1,0c0.3-0.2,0.7-0.3,1.1-0.1c0.3,0.2,0.5,0.6,0.5,1c-0.2,2.7-1.5,5.1-3.6,6.8C16.6,21.2,14.4,22,12.1,22zM9.3,4.4c-2.9,1-5,3.6-5.2,6.8c-0.4,4.4,2.8,8.3,7.2,8.7c2.1,0.2,4.2-0.4,5.8-1.8c1.1-0.9,1.9-2.1,2.4-3.4c-2.5,0.9-5.3,0.5-7.5-1.1C9.2,11.4,8.1,7.7,9.3,4.4z"

src/icons/SunIcon.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<template>
2-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
viewBox="0 0 24 24"
5+
>
36
<path
47
fill="currentColor"
58
d="M12,18c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S15.3,18,12,18zM12,8c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C16,9.8,14.2,8,12,8z"

tsconfig.app.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"extends": "@vue/tsconfig/tsconfig.dom.json",
3-
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
4-
"exclude": ["src/**/__tests__/*"],
53
"compilerOptions": {
64
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
75

86
"paths": {
97
"@/*": ["./src/*"]
108
}
11-
}
9+
},
10+
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
11+
"exclude": ["src/**/__tests__/*"]
1212
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"files": [],
32
"references": [
43
{
54
"path": "./tsconfig.node.json"
65
},
76
{
87
"path": "./tsconfig.app.json"
98
}
10-
]
9+
],
10+
"files": []
1111
}

tsconfig.node.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"extends": "@tsconfig/node22/tsconfig.json",
3+
"compilerOptions": {
4+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
5+
6+
"module": "ESNext",
7+
"moduleResolution": "Bundler",
8+
"types": ["node"],
9+
"noEmit": true
10+
},
311
"include": [
412
"vite.config.*",
513
"vitest.config.*",
614
"cypress.config.*",
715
"nightwatch.conf.*",
816
"playwright.config.*",
917
"eslint.config.*"
10-
],
11-
"compilerOptions": {
12-
"noEmit": true,
13-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
14-
15-
"module": "ESNext",
16-
"moduleResolution": "Bundler",
17-
"types": ["node"]
18-
}
18+
]
1919
}

0 commit comments

Comments
 (0)