From ce1f53cd84d4e95122fe06d76a1791e29b5c25b9 Mon Sep 17 00:00:00 2001 From: Reuben Tier <64310361+TheOtterlord@users.noreply.github.com> Date: Tue, 15 Oct 2024 07:43:46 +0100 Subject: [PATCH] Remove start comand from templates (next) (#12200) --- examples/basics/package.json | 1 - examples/blog/package.json | 1 - examples/container-with-vitest/package.json | 1 - examples/framework-alpine/package.json | 1 - examples/framework-multiple/package.json | 1 - examples/framework-preact/package.json | 1 - examples/framework-react/package.json | 1 - examples/framework-solid/package.json | 1 - examples/framework-svelte/package.json | 1 - examples/framework-vue/package.json | 1 - examples/hackernews/package.json | 1 - examples/middleware/package.json | 1 - examples/minimal/package.json | 1 - examples/non-html-pages/package.json | 1 - examples/portfolio/package.json | 1 - examples/server-islands/package.json | 1 - examples/ssr/package.json | 1 - examples/starlog/package.json | 1 - examples/view-transitions/package.json | 1 - examples/with-markdoc/package.json | 1 - examples/with-markdown-plugins/package.json | 1 - examples/with-markdown-shiki/package.json | 1 - examples/with-mdx/package.json | 1 - examples/with-nanostores/package.json | 1 - examples/with-tailwindcss/package.json | 1 - examples/with-vitest/package.json | 1 - packages/astro/performance/fixtures/md/package.json | 1 - packages/astro/performance/fixtures/mdoc/package.json | 1 - packages/astro/performance/fixtures/mdx/package.json | 1 - .../test/fixtures/content-collection-references/package.json | 1 - packages/astro/test/fixtures/content-mixed-errors/package.json | 1 - .../astro/test/fixtures/data-collections-schema/package.json | 1 - packages/astro/test/fixtures/data-collections/package.json | 1 - packages/astro/test/fixtures/error-bad-js/package.json | 1 - packages/astro/test/fixtures/error-build-location/package.json | 1 - packages/astro/test/fixtures/error-non-error/package.json | 1 - packages/astro/test/fixtures/extension-matching/package.json | 1 - .../astro/test/fixtures/legacy-data-collections/package.json | 1 - packages/db/test/fixtures/ticketing-example/package.json | 1 - 39 files changed, 39 deletions(-) diff --git a/examples/basics/package.json b/examples/basics/package.json index 27d211e970..8783fb4d52 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 5413f4b395..f6a3ef817d 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 c81900dbb2..785a159208 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 ad0a384007..21c71cb8c3 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 3e615d8d54..0a9a9c367a 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 0a9ff29dcd..7edf30c838 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 801a2577f1..68e921f4f4 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 b3463d85e2..f89556d4fd 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 43a6d0b357..72e36c624d 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 e86c7aa088..dcb79a2d27 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 d0658a4763..33605bb73d 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 efc809518d..b1901fa5b2 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 570b2c53c1..6a237ca74d 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 f5d0094cea..1654db7e70 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 5d16b614a3..cba276d8c0 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 d139c5ad77..fc51f5b94c 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 58d581073a..3dc0d8e780 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 d75504a5b4..167120a786 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 8414460b01..95c7658ad2 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 d481315613..0fc07f25d2 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 a3fc9a5f00..4dce94346c 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 f6ce177a28..119934fd64 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 8af8de3162..e0514b3d45 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 c54f2ab15b..e6a65ade93 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 b85fb5d719..7c80ddfe78 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 8aee008076..7735608e23 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", diff --git a/packages/astro/performance/fixtures/md/package.json b/packages/astro/performance/fixtures/md/package.json index 4490f36095..068f0e5319 100644 --- a/packages/astro/performance/fixtures/md/package.json +++ b/packages/astro/performance/fixtures/md/package.json @@ -6,7 +6,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview" }, diff --git a/packages/astro/performance/fixtures/mdoc/package.json b/packages/astro/performance/fixtures/mdoc/package.json index 39d5988242..e5f97cce4c 100644 --- a/packages/astro/performance/fixtures/mdoc/package.json +++ b/packages/astro/performance/fixtures/mdoc/package.json @@ -6,7 +6,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview" }, diff --git a/packages/astro/performance/fixtures/mdx/package.json b/packages/astro/performance/fixtures/mdx/package.json index c74ee62299..207e6345ac 100644 --- a/packages/astro/performance/fixtures/mdx/package.json +++ b/packages/astro/performance/fixtures/mdx/package.json @@ -6,7 +6,6 @@ "private": true, "scripts": { "dev": "astro dev", - "start": "astro dev", "build": "astro build", "preview": "astro preview" }, diff --git a/packages/astro/test/fixtures/content-collection-references/package.json b/packages/astro/test/fixtures/content-collection-references/package.json index 3476c8bdf1..fa05637502 100644 --- a/packages/astro/test/fixtures/content-collection-references/package.json +++ b/packages/astro/test/fixtures/content-collection-references/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/packages/astro/test/fixtures/content-mixed-errors/package.json b/packages/astro/test/fixtures/content-mixed-errors/package.json index d90bfabda5..b7f009e2d9 100644 --- a/packages/astro/test/fixtures/content-mixed-errors/package.json +++ b/packages/astro/test/fixtures/content-mixed-errors/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/packages/astro/test/fixtures/data-collections-schema/package.json b/packages/astro/test/fixtures/data-collections-schema/package.json index 77b2134153..09ccba6102 100644 --- a/packages/astro/test/fixtures/data-collections-schema/package.json +++ b/packages/astro/test/fixtures/data-collections-schema/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/packages/astro/test/fixtures/data-collections/package.json b/packages/astro/test/fixtures/data-collections/package.json index 711eb49566..8eba0355f3 100644 --- a/packages/astro/test/fixtures/data-collections/package.json +++ b/packages/astro/test/fixtures/data-collections/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/packages/astro/test/fixtures/error-bad-js/package.json b/packages/astro/test/fixtures/error-bad-js/package.json index 6b7af585e3..702ef96b9a 100644 --- a/packages/astro/test/fixtures/error-bad-js/package.json +++ b/packages/astro/test/fixtures/error-bad-js/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/packages/astro/test/fixtures/error-build-location/package.json b/packages/astro/test/fixtures/error-build-location/package.json index ca8c1981d6..cf382a2346 100644 --- a/packages/astro/test/fixtures/error-build-location/package.json +++ b/packages/astro/test/fixtures/error-build-location/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/packages/astro/test/fixtures/error-non-error/package.json b/packages/astro/test/fixtures/error-non-error/package.json index 2366e345e7..2d5570ee4b 100644 --- a/packages/astro/test/fixtures/error-non-error/package.json +++ b/packages/astro/test/fixtures/error-non-error/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/packages/astro/test/fixtures/extension-matching/package.json b/packages/astro/test/fixtures/extension-matching/package.json index 41e09a8c1f..c0b4131ae5 100644 --- a/packages/astro/test/fixtures/extension-matching/package.json +++ b/packages/astro/test/fixtures/extension-matching/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/packages/astro/test/fixtures/legacy-data-collections/package.json b/packages/astro/test/fixtures/legacy-data-collections/package.json index 8daa28ad3f..48fdc63bed 100644 --- a/packages/astro/test/fixtures/legacy-data-collections/package.json +++ b/packages/astro/test/fixtures/legacy-data-collections/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/packages/db/test/fixtures/ticketing-example/package.json b/packages/db/test/fixtures/ticketing-example/package.json index 9892dcd763..99a58402ab 100644 --- a/packages/db/test/fixtures/ticketing-example/package.json +++ b/packages/db/test/fixtures/ticketing-example/package.json @@ -4,7 +4,6 @@ "version": "0.0.1", "scripts": { "dev": "pnpm astro dev", - "start": "astro dev", "build": "astro check && astro build", "preview": "astro preview", "astro": "astro"