Skip to content

Commit

Permalink
only mention official plugins, link to integrations for others. closes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 23, 2019
1 parent 13f7bd9 commit d114628
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion site/content/docs/04-compile-time.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit d114628

Please sign in to comment.