summaryrefslogtreecommitdiff
path: root/examples/framework-preact
diff options
context:
space:
mode:
authorGravatar Dan Jutan <danjutan@gmail.com> 2022-08-31 15:18:53 -0400
committerGravatar GitHub <noreply@github.com> 2022-08-31 19:18:53 +0000
commitca2d0728e421a19492dd88aa35c37626c6a2897a (patch)
tree9965eecf06f1eec0099e85441f77860d8e2064c2 /examples/framework-preact
parenta5b659e91c5eb166e32cbe2beb9e3751e7ad99a1 (diff)
downloadastro-ca2d0728e421a19492dd88aa35c37626c6a2897a.tar.gz
astro-ca2d0728e421a19492dd88aa35c37626c6a2897a.tar.zst
astro-ca2d0728e421a19492dd88aa35c37626c6a2897a.zip
Update templates to avoid devDependencies and :global (#4544)
* devDependencies => dependencies * :global -> is:global * update lockfile * remove unneeded markdown dependency
Diffstat (limited to 'examples/framework-preact')
-rw-r--r--examples/framework-preact/package.json8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index b3a57ca3f..4895418e0 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -9,11 +9,9 @@
"preview": "astro preview",
"astro": "astro"
},
- "devDependencies": {
- "@astrojs/preact": "^1.0.2",
- "astro": "^1.1.2"
- },
"dependencies": {
- "preact": "^10.7.3"
+ "astro": "^1.1.1",
+ "preact": "^10.7.3",
+ "@astrojs/preact": "^1.0.2"
}
}