-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
35 lines (29 loc) · 863 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
VERSION=$(shell git describe --tags)
NOMBRE="tortugas-en-el-tiempo"
N=[0m
G=[01;32m
Y=[01;33m
B=[01;34m
comandos:
@echo ""
@echo "${B}Comandos disponibles para ${Y}${NOMBRE}${N} (versión: ${VERSION})"
@echo ""
@echo " ${Y}Generales de la aplicación${N}"
@echo ""
@echo " ${G}iniciar${N} Instala dependencias."
@echo " ${G}ejecutar${N} Ejecuta la aplicación en modo desarrollo."
@echo ""
@echo " ${G}test_e2e${N} Ejecuta test con cypress."
@echo " ${G}test_unidad${N} Ejecuta test de unidad."
@echo ""
iniciar:
$(call task, "Iniciando el proyecto.")
$(call log, "Instalando dependencias.")
@yarn install
ejecutar:
$(call log, "Ejecutando la aplicación en modo desarrollo.")
@yarn serve
test_e2e:
@yarn test:e2e
test_unidad:
@yarn test:unit