Package Exports
- neutrino-middleware-named-modules
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-named-modules) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Neutrino Named Modules Middleware
neutrino-middleware-named-modules
is Neutrino middleware for enabling named modules output via NamedModulesPlugin
.
Requirements
- Node.js v6.9+
- Yarn or npm client
- Neutrino v5
Installation
neutrino-middleware-named-modules
can be installed via the Yarn or npm clients.
Yarn
❯ yarn add neutrino-middleware-named-modules
npm
❯ npm install --save neutrino-middleware-named-modules
Usage
neutrino-middleware-named-modules
can be consumed from the Neutrino API, middleware, or presets. Require this package
and plug it into Neutrino:
const namedModules = require('neutrino-middleware-named-modules');
neutrino.use(namedModules);
Customization
neutrino-middleware-named-modules
creates some conventions to make overriding the configuration easier once you are
ready to make changes.
Plugins
The following is a list of plugins and their identifiers which can be overridden:
named-modules
: Enables named modules for improved debugging and console output.
Contributing
This preset is part of the neutrino-dev repository, a monorepo containing all resources for developing Neutrino and its core presets. Follow the contributing guide for details.