Skip to content

Commit

Permalink
🗑️ limpieza
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Mar 19, 2024
1 parent 02353f7 commit 0a047d6
Show file tree
Hide file tree
Showing 4 changed files with 173 additions and 153 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"datos": "nodemon --exec node --loader ts-node/esm ./procesador/procesador.ts"
},
"dependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/check": "^0.5.9",
"@enflujo/alquimia": "^2.0.0",
"astro": "^4.4.15",
"astro": "^4.5.6",
"fuzzysort": "^2.0.4",
"mapbox-gl": "^3.2.0",
"marked": "^12.0.1",
Expand All @@ -27,12 +27,12 @@
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/mapbox-gl": "^3.1.0",
"@types/node": "^20.11.25",
"@types/node": "^20.11.30",
"@types/slug": "^5.0.8",
"image-size": "^1.1.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"sass": "^1.72.0",
"slug": "^9.0.0",
"ts-node": "^10.9.2",
"xlstream": "^2.5.3"
Expand Down
4 changes: 2 additions & 2 deletions procesador/procesador.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async function procesar() {
procesar().catch(console.error);

function agregarDescripciones(): Promise<void> {
return new Promise(async (resolver, rechazar) => {
return new Promise(async (resolver) => {
const flujoDescAreas = await getXlsxStream({
filePath: archivo,
sheet: 'Descripción áreas',
Expand Down Expand Up @@ -116,7 +116,7 @@ function agregarDescripciones(): Promise<void> {
}

function agregarDescripcionesRamas(): Promise<void> {
return new Promise(async (resolver, rechazar) => {
return new Promise(async (resolver) => {
const flujo = await getXlsxStream({
filePath: archivo,
sheet: 'Descripción Ramas',
Expand Down
2 changes: 0 additions & 2 deletions src/plantillas/Plantilla.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
---
import { join } from 'path';
interface Props {
titulo?: string;
descripcion?: string;
Expand Down
Loading

0 comments on commit 0a047d6

Please sign in to comment.