Skip to content

Commit

Permalink
🐛 Arreglar despliegue
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Jan 31, 2024
1 parent a8c9a32 commit 4b283f2
Show file tree
Hide file tree
Showing 5 changed files with 1,036 additions and 1,115 deletions.
3 changes: 3 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,7 @@ export default defineConfig({
build: {
assets: 'estaticos',
},
vite: {
ssr: { noExternal: ['@enflujo/alquimia'] },
},
});
25 changes: 13 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,32 @@
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"revisar": "astro check",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "prettier --check .",
"lint:fix": "prettier --write --list-different .",
"datos": "nodemon ./procesador/procesador.ts"
},
"dependencies": {
"@astrojs/check": "^0.3.1",
"@astrojs/check": "^0.4.1",
"@enflujo/alquimia": "^2.0.0",
"astro": "^3.6.0",
"mapbox-gl": "^2.15.0",
"astro": "^4.2.8",
"mapbox-gl": "^3.1.2",
"nanostores": "^0.9.5",
"typescript": "^5.3.2"
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/geojson": "^7946.0.13",
"@types/mapbox-gl": "^2.7.19",
"@types/node": "^20.9.5",
"@types/geojson": "^7946.0.14",
"@types/mapbox-gl": "^2.7.20",
"@types/node": "^20.11.13",
"@types/slug": "^5.0.7",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"sass": "^1.69.5",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"slug": "^8.2.3",
"ts-node": "^10.9.1",
"ts-node": "^10.9.2",
"xlstream": "^2.5.3"
},
"nodemonConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/componentes/LineaTiempo.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import type { ElementoLista } from '@/tipos';
import { convertirEscala } from '@enflujo/alquimia';
import { text } from 'stream/consumers';
interface Props {
tiempo: ElementoLista[];
decadas: ElementoLista[];
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import LineaTiempo from '@/componentes/LineaTiempo.astro';
const nodosConectados: HTMLLIElement[] = [];
const conexiones = nodo.dataset.con?.split(',');
const contenedor = nodo.parentElement;
console.log(contenedor);

if (conexiones) {
conexiones.forEach((id) => {
Expand Down
Loading

0 comments on commit 4b283f2

Please sign in to comment.