Package Exports
- neutrino-middleware-svelte-loader
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neutrino-middleware-svelte-loader) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Neutrino Svelte loader middleware
neutrino-middleware-svelte-loader
is a Neutrino middleware for compiling HTML components with Svelte. It is compatible with .html, .htm and .svelte files.
Requirements
- Node.js v6.9+
- Neutrino v5+
- Svelte v1.44.0+
Installation
neutrino-middleware-svelte-loader
can be installed from NPM.
❯ npm install --save neutrino-middleware-svelte-loader
Usage
neutrino-middleware-svelte-loader
can be consumed from the Neutrino API, middleware, or presets. Require this package and plug it into Neutrino:
const svelteLoader = require('neutrino-middleware-svelte-loader')
neutrino.use(svelteLoader, {
include: [],
exclude: [],
svelte: { emitCss: true }
})
include
: optional array of paths to include in the compilation. Maps to Webpack's rule.include.exclude
: optional array of paths to exclude from the compilation. Maps to Webpack's rule.include.svelte
: optional object to pass tosvelte-loader
options.
It is recommended to call this middleware after the neutrino.config.module.rule('compile')
initialization to avoid unexpected overriding and to support transpilation of Svelte components. More information about usage of Neutrino middlewares can be found in the documentation.
Rules
This is a list of rules that are used by neutrino-middleware-svelte-loader
:
svelte
: Compiles Svelte components to JavaScript modules. Contains a single loader named the samesvelte
.html
: Compiles Svelte components to JavaScript modules. Contains a single loader namedsvelte
. Override this if you want a different loader for HTML files.compile
: Only necessary file extensions added.