Skip to content

Commit b2cccaa

Browse files
committed
build: update react version
1 parent 9f19572 commit b2cccaa

36 files changed

+887
-1939
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Aplicación web desarrollada con React que consume la API de [OpenWeather][openw
3030
| [![Vite][vite-badge]][vite-url] | Herramienta de Frontend para construir el proyecto | 5.1.6 |
3131
| [![TypeScript][typescript-badge]][typescript-url] | Lenguaje de programación fuertemente tipado para escribir código | 5.2.2 |
3232
| [![Jest][jest-badge]][jest-url] | Framework de testing para las pruebas unitarias | 29.5.0 |
33-
| [![SonarQube][sonarqube-badge]][sonarqube-url] | Plataforma para evaluar el código fuente | 10.3 |
33+
| [![SonarQube][sonarqube-badge]][sonarqube-url] | Plataforma para evaluar el código fuente | 10.5 |
3434
| [![NPM][npm-badge]][npm-url] | Administrador de paquetes para instalar las dependencias | 9.5.0 |
3535
| [![Visual Studio Code][vsc-badge]][vsc-url] | Editor de código para el proyecto | 1.87.2 |
3636

@@ -111,7 +111,7 @@ Visualize los resultados del reporte de cobertura en la ruta `./coverage/lcov-re
111111
### Requisitos previos
112112

113113
```txt
114-
SonarQube >= 10.3
114+
SonarQube >= 9.X
115115
```
116116

117117
### Configuración
@@ -135,7 +135,7 @@ SonarQube >= 10.3
135135

136136
### Resultados
137137

138-
<img src="https://github.com/misicode/WeatherApp/assets/88341114/65ea7e28-007c-4f9c-9d53-c59011b31235" width=800 />
138+
<img src="https://github.com/misicode/WeatherApp/assets/88341114/b6e1d961-0665-4d10-836a-a065a1650726" width=800 />
139139

140140

141141
<!-- LICENSE -->
@@ -145,10 +145,11 @@ Distribuido bajo la licencia MIT. Consulte [LICENSE.txt][license-url] para obten
145145

146146

147147
<!-- CONTACT -->
148-
## 👩‍💻 Contacto
148+
## 🌸 Contacto
149149

150150
Desarrollado por **Alessandra Mincia**
151151

152+
[![Misicode][misicode-badge]][misicode-url]
152153
[![GitHub][github-badge]][github-url]
153154
[![LinkedIn][linkedin-badge]][linkedin-url]
154155

@@ -176,7 +177,9 @@ La idea de este proyecto surgió como iniciativa del workshop "SheCodes React",
176177
[vsc-badge]: https://img.shields.io/badge/Visual%20Studio%20Code-0078d7.svg?style=for-the-badge&logo=visual-studio-code&logoColor=white
177178
[vsc-url]: https://code.visualstudio.com
178179
[license-url]: ./LICENSE.txt
179-
[github-badge]: https://img.shields.io/badge/github-%23121011.svg?logo=github&logoColor=white&colorB=555
180+
[misicode-badge]: https://img.shields.io/badge/misicode-C020FF?logo=githubsponsors&logoColor=fff
181+
[misicode-url]: https://misicode.netlify.app/
182+
[github-badge]: https://img.shields.io/badge/github-272727?logo=github&logoColor=fff
180183
[github-url]: https://github.com/misicode
181-
[linkedin-badge]: https://img.shields.io/badge/-LinkedIn-black.svg?logo=linkedin&colorB=555
184+
[linkedin-badge]: https://img.shields.io/badge/linkedin-0A66C2?logo=linkedin&logoColor=fff
182185
[linkedin-url]: https://www.linkedin.com/in/misicode

index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/ico" href="/weather.ico" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<meta name="description" content="Weather App using React, Vite and TypeScript"
8-
/>
7+
<meta name="description" content="Weather App using React, Vite and TypeScript" />
98
<title>Weather App</title>
109
</head>
1110
<body>

jest.setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import "@testing-library/jest-dom/extend-expect";
1+
import "@testing-library/jest-dom";
22
import "jest-canvas-mock";
33
import React from "react";
44

0 commit comments

Comments
 (0)