Skip to content

Commit

Permalink
Fix with-nanostore deps (#1675)
Browse files Browse the repository at this point in the history
Adds missing Solid renderer
  • Loading branch information
drwpow authored Oct 27, 2021
1 parent 8c4720d commit a07a598
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions examples/framework-multiple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.20.12",
"@astrojs/renderer-solid": "^0.1.1"
"@astrojs/renderer-solid": "^0.1.1",
"astro": "^0.20.12"
}
}
4 changes: 2 additions & 2 deletions examples/framework-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.20.12",
"@astrojs/renderer-solid": "0.1.1"
"@astrojs/renderer-solid": "^0.1.1",
"astro": "^0.20.12"
}
}
7 changes: 4 additions & 3 deletions examples/with-nanostores/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"build": "astro build",
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.20.12"
},
"dependencies": {
"nanostores": "^0.3.3"
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.1.1",
"astro": "^0.20.12"
}
}

0 comments on commit a07a598

Please sign in to comment.