From bc7d7b76de0b3534d66636d49c7a1d1cfcad4e1f Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Sat, 23 Nov 2019 18:34:58 -0500 Subject: [PATCH] only mention official plugins, link to integrations for others. closes #3970 --- site/content/docs/04-compile-time.md | 2 +- .../tutorial/01-introduction/07-making-an-app/text.md | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/site/content/docs/04-compile-time.md b/site/content/docs/04-compile-time.md index 407b1dfc13..f62733a6f5 100644 --- a/site/content/docs/04-compile-time.md +++ b/site/content/docs/04-compile-time.md @@ -6,7 +6,7 @@ Typically, you won't interact with the Svelte compiler directly, but will instea * [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte) for users of [Rollup](https://rollupjs.org) * [svelte-loader](https://github.com/sveltejs/svelte-loader) for users of [webpack](https://webpack.js.org) -* [parcel-plugin-svelte](https://github.com/DeMoorJasper/parcel-plugin-svelte) for users of [Parcel](https://parceljs.org/) +* or one of the [community-maintained plugins](https://github.com/sveltejs/integrations#bundler-plugins) Nonetheless, it's useful to understand how to use the compiler, since bundler plugins generally expose compiler options to you. diff --git a/site/content/tutorial/01-introduction/07-making-an-app/text.md b/site/content/tutorial/01-introduction/07-making-an-app/text.md index f8755ef532..1e8ae637ef 100644 --- a/site/content/tutorial/01-introduction/07-making-an-app/text.md +++ b/site/content/tutorial/01-introduction/07-making-an-app/text.md @@ -4,11 +4,12 @@ title: Making an app This tutorial is designed to get you familiar with the process of writing components. But at some point, you'll want to start writing components in the comfort of your own text editor. -First, you'll need to integrate Svelte with a build tool. Popular choices are: +First, you'll need to integrate Svelte with a build tool. There are officially maintained plugins for [Rollup](https://rollupjs.org) and [webpack](https://webpack.js.org/)... -* [Rollup](https://rollupjs.org) / [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte) -* [webpack](https://webpack.js.org/) / [svelte-loader](https://github.com/sveltejs/svelte-loader) -* [Parcel](https://parceljs.org/) / [parcel-plugin-svelte](https://github.com/DeMoorJasper/parcel-plugin-svelte) +* [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte) +* [svelte-loader](https://github.com/sveltejs/svelte-loader) + +...and a variety of [community-maintained ones](https://github.com/sveltejs/integrations#bundler-plugins). Don't worry if you're relatively new to web development and haven't used these tools before. We've prepared a simple step-by-step guide, [Svelte for new developers](blog/svelte-for-new-developers), which walks you through the process.