diff options
author | 2024-10-15 07:43:46 +0100 | |
---|---|---|
committer | 2024-10-15 14:43:46 +0800 | |
commit | ce1f53cd84d4e95122fe06d76a1791e29b5c25b9 (patch) | |
tree | 5271bf1d39405b7ce8f719eff7185a8e207de3bb /examples | |
parent | 9fc86e543a6e4d0c6d4c6acaf7502f00a11da270 (diff) | |
download | astro-ce1f53cd84d4e95122fe06d76a1791e29b5c25b9.tar.gz astro-ce1f53cd84d4e95122fe06d76a1791e29b5c25b9.tar.zst astro-ce1f53cd84d4e95122fe06d76a1791e29b5c25b9.zip |
Remove start comand from templates (next) (#12200)
Diffstat (limited to 'examples')
26 files changed, 0 insertions, 26 deletions
diff --git a/examples/basics/package.json b/examples/basics/package.json index 27d211e97..8783fb4d5 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/blog/package.json b/examples/blog/package.json index 5413f4b39..f6a3ef817 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/container-with-vitest/package.json b/examples/container-with-vitest/package.json index c81900dbb..785a15920 100644 --- a/examples/container-with-vitest/package.json +++ b/examples/container-with-vitest/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro", diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json index ad0a38400..21c71cb8c 100644 --- a/examples/framework-alpine/package.json +++ b/examples/framework-alpine/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index 3e615d8d5..0a9a9c367 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 0a9ff29dc..7edf30c83 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 801a2577f..68e921f4f 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index b3463d85e..f89556d4f 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index 43a6d0b35..72e36c624 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index e86c7aa08..dcb79a2d2 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/hackernews/package.json b/examples/hackernews/package.json index d0658a476..33605bb73 100644 --- a/examples/hackernews/package.json +++ b/examples/hackernews/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/middleware/package.json b/examples/middleware/package.json index efc809518..b1901fa5b 100644 --- a/examples/middleware/package.json +++ b/examples/middleware/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro", diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 570b2c53c..6a237ca74 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json index f5d0094ce..1654db7e7 100644 --- a/examples/non-html-pages/package.json +++ b/examples/non-html-pages/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 5d16b614a..cba276d8c 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/server-islands/package.json b/examples/server-islands/package.json index d139c5ad7..fc51f5b94 100644 --- a/examples/server-islands/package.json +++ b/examples/server-islands/package.json @@ -4,7 +4,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/ssr/package.json b/examples/ssr/package.json index 58d581073..3dc0d8e78 100644 --- a/examples/ssr/package.json +++ b/examples/ssr/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro", diff --git a/examples/starlog/package.json b/examples/starlog/package.json index d75504a5b..167120a78 100644 --- a/examples/starlog/package.json +++ b/examples/starlog/package.json @@ -4,7 +4,6 @@ "version": "0.0.1", "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/view-transitions/package.json b/examples/view-transitions/package.json index 8414460b0..95c7658ad 100644 --- a/examples/view-transitions/package.json +++ b/examples/view-transitions/package.json @@ -4,7 +4,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-markdoc/package.json b/examples/with-markdoc/package.json index d48131561..0fc07f25d 100644 --- a/examples/with-markdoc/package.json +++ b/examples/with-markdoc/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index a3fc9a5f0..4dce94346 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json index f6ce177a2..119934fd6 100644 --- a/examples/with-markdown-shiki/package.json +++ b/examples/with-markdown-shiki/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index 8af8de316..e0514b3d4 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index c54f2ab15..e6a65ade9 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index b85fb5d71..7c80ddfe7 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro" diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index 8aee00807..7735608e2 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -5,7 +5,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview", "astro": "astro", |