Socket
Book a DemoInstallSign in
Socket

fly-svelte

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fly-svelte

Compile Svelte components with Fly

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

fly-svelte

Compile Svelte components with Fly

Install

npm install --save-dev fly-svelte

Usage

exports.views = function * (fly) {
  yield fly.source('src/**/*.html').svelte({
    entry: 'src/App.html',
    sourceMap: 'inline'
  }).target('dist/js');
}

If you wanted, you can chain other JavaScript plugins (eg fly-babel) immediately after Svelte compiles!

exports.scripts = function * (fly) {
  yield fly.source('src/App.html').svelte({
    css: false
  }).babel({
    presets: ['es2015']
  }).target('dist/js');
}

API

By default, every file from fly.source will be treated as an entry file. (This can be changed via options.entry.) All source files will be compiled with .js file extensions.

.svelte(options)

Check out Svelte's CLI documentation to see the available options.

This plugin adds two additional options:

options.entry

Type: String or Array
Default: null

Use to specify entry file(s) from a larger source. Doing so will overwrite the the internal fly.source array. Useful when chaining multiple relevant tasks.

options.sourceMap

Type: String
Options: 'internal' or 'external' Default: false

Create an inline or an external sourcemap for each entry file. A sourceMappingURL comment is appended to each destination file.

If using external maps, a foo.js entry will also generate a foo.js.map file.

License

MIT © Luke Edwards

Keywords

fly

FAQs

Package last updated on 12 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts