mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
efb41f22c3
* Initial MVP Debug component * Document the prettifying of the input * Just make `<Debug/>` a wrapper around `<Prism/>` lol * feat: add details/summary debug component * chore: remove Props (unused) * fix: prefer `div` to semantic elements * chore: format * fix: prop-drill `class` into components * fix: ensure `astro/components` are evaluated lazily * feat(debug): export debug component from `astro/debug` * fix: minimal example local snowpack config * docs: add debugging docs * chore: add changeset * docs: update debug docs Co-authored-by: Nate Moore <nate@skypack.dev>
16 lines
272 B
JSON
16 lines
272 B
JSON
{
|
|
"name": "@example/minimal",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro build"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "^0.19.2"
|
|
},
|
|
"snowpack": {
|
|
"workspaceRoot": "../.."
|
|
}
|
|
}
|