0.3.0 • Published 5 years ago

metalsmith-svelte v0.3.0

Weekly downloads
15
License
MIT
Repository
github
Last release
5 years ago

metalsmith-svelte

NPM version Build Status Build status Coverage Status

Svelte plugin for Metalsmith

Installation

Use npm:

npm install metalsmith-svelte

Usage

CLI

Add the metalsmith-svelte field to your metalsmith.json.

{
  "plugins": {
    "metalsmith-svelte": {
      "name": 'MyComponent',
      "sourceMap": "inline"
    }
  }
}

API

const Metalsmith = require('metalsmith');
const svelte = require('metalsmith-svelte');

new Metalsmith('./source')
.use(svelte({
  sourceMap: true
}))
.build((err, files) => {
  if (err) {
    throw err;
  }

  console.log('Completed.');
});

Options

All Svelte compiler options are available except for filename that will be automatically set.

In addition the following option is supported:

options.sourceMap

Value: true, false or 'inline'
Default: false

  • true generates a separate source map file with .map extension, for exmaple index.js.map along with index.js.
  • 'inline' appends an inline source map to the transformed file.

License

ISC License © 2017 Shinnosuke Watanabe