Skip to content

Commit

Permalink
⬆️ Actualizar dependencias (SASS >1.80.3 ya no se usa @import)
Browse files Browse the repository at this point in the history
  • Loading branch information
1cgonza committed Oct 19, 2024
1 parent ef80a29 commit 8ecdfbf
Show file tree
Hide file tree
Showing 6 changed files with 289 additions and 112 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"spellright.language": ["en", "es"],
"spellright.documentTypes": ["markdown", "latex", "plaintext"]
}
1 change: 1 addition & 0 deletions fuente/env.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
2 changes: 1 addition & 1 deletion fuente/plantillas/Plantilla.astro
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ const altImg = imagen ? imagen.alt : nombreProyecto;
</html>

<style lang="scss" is:global>
@import '@/scss/estilos.scss';
@use '@/scss/estilos.scss';
</style>
2 changes: 1 addition & 1 deletion fuente/scss/estilos.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import './normalizar';
@use 'normalizar';

:root {
--colorFuente: #252424;
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enflujo-plantilla-astro",
"packageManager": "[email protected].0",
"packageManager": "[email protected].1",
"type": "module",
"version": "0.0.1",
"scripts": {
Expand All @@ -14,12 +14,12 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"astro": "^4.15.11",
"typescript": "^5.6.2"
"astro": "4.16.6",
"typescript": "^5.6.3"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.79.4"
"sass": "^1.80.3"
}
}
Loading

0 comments on commit 8ecdfbf

Please sign in to comment.