0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00

Fix with-nanostore deps (#1675)

Adds missing Solid renderer
This commit is contained in:
Drew Powers 2021-10-27 10:07:50 -06:00 committed by GitHub
parent 8c4720db3a
commit a07a598122
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View file

@ -9,7 +9,7 @@
"preview": "astro preview" "preview": "astro preview"
}, },
"devDependencies": { "devDependencies": {
"astro": "^0.20.12", "@astrojs/renderer-solid": "^0.1.1",
"@astrojs/renderer-solid": "^0.1.1" "astro": "^0.20.12"
} }
} }

View file

@ -9,7 +9,7 @@
"preview": "astro preview" "preview": "astro preview"
}, },
"devDependencies": { "devDependencies": {
"astro": "^0.20.12", "@astrojs/renderer-solid": "^0.1.1",
"@astrojs/renderer-solid": "0.1.1" "astro": "^0.20.12"
} }
} }

View file

@ -8,10 +8,11 @@
"build": "astro build", "build": "astro build",
"preview": "astro preview" "preview": "astro preview"
}, },
"devDependencies": {
"astro": "^0.20.12"
},
"dependencies": { "dependencies": {
"nanostores": "^0.3.3" "nanostores": "^0.3.3"
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.1.1",
"astro": "^0.20.12"
} }
} }