0.1.0 • Published 7 years ago

svelte-brunch v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

npm version

Installation

  1. Inside your project, simply run: npm install --save-dev svelte-brunch
  2. Thats it.

This plugin listen for any .svelte file in your project and compiles it with your JavaScript.

Here is an example of how to import a component to your page (using ES6):

// initialize.js
// importing mycomponent.svelte file
import MyComponent from './path/to/mycomponent' // notice how we omit the '.svelte' extension

const mycomp = new MyComponent({
  // Svelte opts, etc...
});