When using Neutrino via the CLI, it creates an instance of the Neutrino API which picks up
+any presets and arguments passed on the command line. If you desire, you can also create your own
+instance of the Neutrino API and interact with it programmatically.
+
Instantiation
+
In order to access the Neutrino API, you must require or import it and instantiate it, passing in any
+preset names or paths you wish to load:
+
Using require:
+
const Neutrino =require('neutrino');
+const api =newNeutrino(['neutrino-preset-react']);
+
+
Using ES imports:
+
import Neutrino from'neutrino';
+
+const api =newNeutrino(['neutrino-preset-react']);
+
+
Environment
+
When using the CLI, environment variables are automatically set based on the command you are using.
+When using the API this is not the case, and you must set it prior to calling any build commands or
+loading any presets.
+
process.env.NODE_ENV ='production';
+
+const api =newNeutrino();
+api.build();
+
+
API
+
Constructor
+
When creating a Neutrino instance, you have the option of providing an array of presets for the API to attempt
+to load and merge configurations for. Each preset will attempt to be loaded from the current working directory's
+node_modules, nested within, by name, or relative file path. If it cannot be found, an exception will be thrown.
+
In addition to any provided presets, Neutrino will also attempt to load configuration data from the package.json
+residing in the current working directory. If this package.json contains an object at config.neutrino, this data
+will be merged.
+
.config
+
When constructing a Neutrino instance, a property of .config is set to be a new instance of
+webpack-chain. This property is then available to all presets, which
+subsequently augment it with their specific options. Every preset added uses this single .config to store their data,
+meaning that preset load order has an effect on which config values take precedence. Presets loaded later will override
+values set by earlier presets.
+
start(args)
+
The start() method is responsible for creating a development bundle, and when possible, starting a development
+server or source watcher. Prior to starting this process, Neutrino will trigger and wait for prestart events to
+finish. After it is complete, Neutrino will trigger and wait for start events to finish.
+
If the Neutrino config contains options for devServer, then a webpack-dev-server will be started. If it is
+configured for Node.js, then a build will be created, otherwise a Webpack source watcher will be started.
+
Currently any args passed to start() have no effect and will be passed through to any event handlers.
+
The start method will return a Promise which resolves after the build is done or development watcher has stopped,
+and all start events have finished.
+
api
+ .start()
+ .then(()=> console.log('Exiting!'));
+
+
build(args)
+
The build() method is responsible for creating a bundle typically used for production. Prior to starting this process,
+Neutrino will trigger and wait for prebuild events to finish. After it is complete, Neutrino will trigger and wait for
+build events to finish.
+
Currently any args passed to build() have no effect and will be passed through to any event handlers.
+
The build method will return a Promise which resolves after the build is done and all build events have finished, or
+will reject if there was a failure during building.
+
api
+ .build()
+ .then(()=> console.log('Saved to build/'))
+ .catch(err => console.error(err));
+
+
test(args)
+
The test() method is responsible for gathering args needed for testing and triggering relevant events as a signal to
+test presets that they may run. Using the test method does nothing other than triggering these events; without a
+preset listening for these events, nothing will happen. Prior to starting this process, Neutrino will trigger and wait
+for pretest events to finish. After it is complete, Neutrino will trigger and wait for
+test events to finish, in which test runners will do their work.
+
Any args passed to test() are passed on to the event handles and typically have properties for an array of
+files to test, as well as a property for watching and rerunning tests.
+
The test method will return a Promise which resolves after all test events have finished, or
+will reject if there was a failure during testing.
While tools like webpack-chain provide a convenient API for creating Webpack configurations, this is not a format that
+is understandable by Webpack. With getWebpackOptions(), the webpack-chain instance at .config will be converted to
+an options object readable directly by Webpack. This call is cached, so subsequent calls to getWebpackOptions will
+result in the config being rendered only once, but the cached value returned afterwards.
+
api.getWebpackOptions();// -> { ... }
+
+
emitForAll(eventName, payload)
+
Trigger a Promise-dependent event. For example, calling emitForAll('build') will trigger an event named build, and
+each event handler can return a Promise denoting when it is finished. When all events have finished, this call will
+resolve.
+
This method returns a Promise which resolves when all event handlers have also resolved.
+
api
+ .emitForAll('custom-event')
+ .then(()=> console.log('All custom-events have resolved!'));
+
+
handleErrors(err, stats)
+
This method is used primarily internally to create a consistent console output when errors occur in the build. It will
+log the err property and any errors from stats if applicable, and return true or false depending on if there
+were errors.
This method is used internally to generate an instance of webpack-dev-server during start(). It returns a promise that
+resolves when the process received a SIGINT event to stop.
+
api
+ ._devServer()
+ .then(()=> console.log('Exiting process...'));
+
Using the command-line interface is the preferred way of interacting with Neutrino. Let's take a look at its usage.
+
--help
+
Using neutrino --help will bring up the following help guide:
+
❯ neutrino --help
+Commands:
+ start Build a project in development mode
+ build Compile the source directory to a bundled build
+ test[files..] Run all suites from the test directory or provided files
+
+Options:
+ --presets A list of Neutrino presets used to configure the build [array][default: []]
+ --version Show version number [boolean]
+ --help Show help[boolean]
+
+
--version
+
Using --version will output the current version of the Neutrino CLI to the console and exit.
+
❯ neutrino --version
+4.0.0
+
+
--presets
+
The --presets flag can be used in conjunction with any of the top-level commands to specify a collection of
+presets to load. These can be an npm package or a relative path to a module to load as a preset.
The Neutrino CLI will still attempt to load any presets defined in the project's package.json located at
+config.presets. Presets passed via the CLI --presets will take precedence over presets defined in
+config.presets, meaning that options set by package.json presets can have their values overridden by
+--presets presets.
+
neutrino start
+
Using the command neutrino start builds a project in development mode, also starting a development server or source
+watcher depending on the preset or config options used. This command sets the NODE_ENV environment variable to
+development.
+
neutrino build
+
Using the command neutrino build builds a project in production mode, rendering static assets to the configured build
+output destination. This command sets the NODE_ENV environment variable to production.
+
neutrino test
+
Using the command neutrino test passes execution onto a test runner preset. It is up to the preset being used to
+determine how source files are built or provided to tests. See your particular test preset for details. This
+command sets the NODE_ENV environment variable to test.
+
Looking at the --help for neutrino test:
+
❯ neutrino test --help
+neutrino test[files..]
+
+Options:
+ --presets A list of Neutrino presets used to configure the build [array][default: []]
+ --version Show version number [boolean]
+ --help Show help[boolean]
+ --watch Watch source files for changes and re-run tests [boolean][default: false]
+
+
Using the command neutrino test will execute every test file located in your
+testing directory. You may also provide to this command the specific test files you wish
+to run individually. It is important to note that when combined with the --presets parameter, you should use two
+dashes after the last preset to denote the end of the presets and the beginning of the test files.
+
❯ neutrino test a_test.js b_test.js
+
+
❯ neutrino test --presets neutrino-preset-react neutrino-preset-karma -- a_test.js b_test.js
+
+
You can also pass a flag --watch to watch source files for changes and re-run tests, if your preset supports it.
+
❯ neutrino test --watch
+
+
Exit codes
+
When the CLI creates an instance of Neutrino, it waits for all commands to either resolve or reject their Promise.
+If the command succeeded, the CLI will exit with code 0. If there was an error, the CLI will log the error
+to the console and exit with code 1. This makes it easier to use Neutrino commands for status reasons, such
+as failing a pull request on continuous integration if any tests fail or if there are linter errors.
In the interest of fostering an open and welcoming environment, we as
+contributors and maintainers pledge to making participation in our project and
+our community a harassment-free experience for everyone, regardless of age, body
+size, disability, ethnicity, gender identity and expression, level of experience,
+nationality, personal appearance, race, religion, or sexual identity and
+orientation.
+
Our Standards
+
Examples of behavior that contributes to creating a positive environment
+include:
+
+
Using welcoming and inclusive language
+
Being respectful of differing viewpoints and experiences
+
Gracefully accepting constructive criticism
+
Focusing on what is best for the community
+
Showing empathy towards other community members
+
+
Examples of unacceptable behavior by participants include:
+
+
The use of sexualized language or imagery and unwelcome sexual attention or
+advances
+
Trolling, insulting/derogatory comments, and personal or political attacks
+
Public or private harassment
+
Publishing others' private information, such as a physical or electronic
+address, without explicit permission
+
Other conduct which could reasonably be considered inappropriate in a
+professional setting
+
+
Our Responsibilities
+
Project maintainers are responsible for clarifying the standards of acceptable
+behavior and are expected to take appropriate and fair corrective action in
+response to any instances of unacceptable behavior.
+
Project maintainers have the right and responsibility to remove, edit, or
+reject comments, commits, code, wiki edits, issues, and other contributions
+that are not aligned to this Code of Conduct, or to ban temporarily or
+permanently any contributor for other behaviors that they deem inappropriate,
+threatening, offensive, or harmful.
+
Scope
+
This Code of Conduct applies both within project spaces and in public spaces
+when an individual is representing the project or its community. Examples of
+representing a project or community include using an official project e-mail
+address, posting via an official social media account, or acting as an appointed
+representative at an online or offline event. Representation of a project may be
+further defined and clarified by project maintainers.
+
Enforcement
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported by contacting the project lead at eli@mozilla.com. All
+complaints will be reviewed and investigated and will result in a response that
+is deemed necessary and appropriate to the circumstances. The project team is
+obligated to maintain confidentiality with regard to the reporter of an incident.
+Further details of specific enforcement policies may be posted separately.
+
Project maintainers who do not follow or enforce the Code of Conduct in good
+faith may face temporary or permanent repercussions as determined by other
+members of the project's leadership.
Developing and contributing to Neutrino and its core presets is done through our monorepo located at
+https://github.com/mozilla-neutrino/neutrino-dev. The code is broken up into a couple different sections:
+packages and documentation.
+
Note: In this guide, commands executable from the command line are prepended with ❯. Lines not starting
+with this symbol show sample console output from running the previous command.
+
Getting started
+
The first step to start developing neutrino-dev is forking the repository to your own GitHub account.
Once that is done, you can clone your copy of the repository on your computer, replacing USER with the username
+of the account you forked the repository to:
+
❯ git clone git@github.com:USER/neutrino-dev.git
+❯ cd neutrino-dev
+
+
Making changes
+
When you make changes to neutrino-dev, you should make them in a branch separate from master. Start from the
+master branch and create a new branch for your changes.
+
Example: You want to create a core preset for JavaScript Standard Style. You need a new branch for this work.
+
❯ git checkout -b standard-style
+Switched to a new branch 'standard-style'
+
+
While making changes, be sure to test your code out for expected operation. If possible or applicable, write a
+test that can verify these changes in the future.
+
Submitting a pull request
+
Once you are satisified with your changes, you should commit them and submit a pull request. Use git add
+in order to add files that should be commited. Give your changes a descriptive but not overly verbose message.
+
❯ git add .
+❯ git commit -m "Feature: Adding new core preset for JavaScript Standard Style"
+❯ git push origin standard-style
+
+
Now if you open the GitHub page for your repository, GitHub should display a button to open a pull request for
+the branch and commit you just pushed. When filling out the details of the pull request, try to be as descriptive
+as possible, following our detailed contribution guidelines.
+
Receiving updates
+
If you need to update your local copy of neutrino-dev to be in sync with the main neutrino-dev repository, you
+will want to fetch upstream changes. Add the main neutrino-dev repo as an upstream to your local copy, then fetch
+the latest changes from the master branch.
Thank you for wanting to help out with Neutrino! We are very happy that you want to contribute and have put together
+this guide to help you get started. We want to do our best to help you make successful contribution and be part of our
+team.
+
Participation Conduct
+
In order to ensure everyone has a fair, pleasant, and inclusive experience contributing to Neutrino, we ask that you
+abide by our community participation guidelines, based on the
+Contributor Covenant. Please read and understand it for everyone's benefit.
+
Following these guidelines helps to communicate that you respect the time of the developers managing
+and developing Neutrino. In return, we will show you respect in addressing your issue, assessing changes,
+and helping you finalize your pull requests.
+
What we need
+
There is always room for improvement and expansion in Neutrino. Some things that could always help:
+
+
Triaging and fixing bugs
+
Adding tests to Neutrino which can help ensure it functions properly with new contributions
+
Keeping core presets up to date with the best Webpack and Babel options
+
Expanding documentation, writing tutorials, and creating example projects
+
Something else, of course!
+
+
What we probably don't need
+
While we are happy to review any contribution, there are some things that are best left as an external project:
+
+
Additional presets. While neutrino-dev does contain a number of core presets, we created and maintain these because
+they were core to most of the projects we personally work on. If there are more presets you believe should be maintained
+by the core, then feel free to raise an issue and we can discuss! Most likely though, additional presets can be
+externally maintained and published to npm. It still has the same reach potential as bringing it into the core, without
+raising the maintenance burden for Neutrino unnecessarily.
+
Scaffolding and boilerplates. The goal of Neutrino is to remove over-reliance on boilerplates, instead opting to
+push users into consuming presets. Neutrino itself will not add commands to scaffold out new projects or create
+boilerplate repositories. We do keep a collection of examples-as-documentation for getting started with Neutrino
+presets, but do not wish to govern project structure more than necessary. These types of projects can be maintained
+externally.
+
+
Support
+
Neutrino team members and contributors are here to help you! Should you need assistance or have questions in using
+Neutrino or its core presets, please consider asking on Stack Overflow or other channel rather than filing issues. We
+would prefer to keep our GitHub issues clear for bugs, feature requests, discussions, and relevant information related
+to its development.
+
Guidelines
+
+
Please make a good-faith effort to ensure that code that goes into neutrino-dev follows the existing patterns and
+quality that is already present in the repository.
+
Create issues for any major changes and enhancements that you wish to make. Discuss things transparently and get
+community feedback.
+
Strive for code to be readable. Prefer following functional programming paradigms over object-oriented ones where
+possible.
+
Keep feature versions as small as possible, preferably one new feature per version.
+
+
Getting started
+
Most contributions will involve working with the neutrino-dev codebase. Please refer to the development
+documentation for technical details on getting started.
+
Filing bugs and issues
+
When filing an issue, try to answer these questions:
+
+
What version of Neutrino are you using?
+
Are you trying to use any presets? If so, which ones, and what versions?
+
Are you using the Yarn client or the npm client? What version?
+
What version of Node.js are you using?
+
What operating system are you using?
+
What did you do?
+
What did you expect to happen?
+
What actually happened, contrary to your expectations?
+
+
Feature Requests or Enhancements
+
Please file an issue describing your request in detail:
+
+
What is the goal of the change?
+
What are the pros and cons of the change?
+
Could this dramatically improve the experience of our users?
+
+
Please be open to discussion, and we will respect your time by fairly evaluating your request. In the event that your
+request is deemed to not be acceptable to move forward, please understand that isn't a criticism of you as a person,
+but rather that the idea in its present form may not be right at this time. We respect you and your ideas, and will
+always encourage contributors to continue to make proposals.
+
Code review process
+
Code is reviewed by Neutrino team members for quality, conformance to existing patterns, and functionality.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/creating-presets.md b/creating-presets.md
new file mode 100644
index 0000000..654b40a
--- /dev/null
+++ b/creating-presets.md
@@ -0,0 +1,156 @@
+# Creating Neutrino Presets
+
+Creating Neutrino presets can solve a number of use cases in a manner which captures all the necessary configuration
+and dependencies necessary to accomplish those use cases:
+
+- You find yourself needing to make the same modifications to all the projects you work on.
+- Your team wants to adopt a managed set of linting rules across projects.
+- You want to add functionality to the build pipeline that has not yet been encapsulated by an existing preset.
+- You want to support building for more platforms than existing presets support.
+
+## Getting Started
+
+Neutrino presets are Node.js modules or packages that export a function which accepts a Neutrino instance. You can use
+this instance to modify the configuration, provide your own, expose custom options for your preset, listen for build
+events, and execute functionality.
+
+At a bare minimum, let's start with our package boilerplate for an empty Neutrino preset:
+
+```js
+module.exports = neutrino => {
+ // ...
+};
+```
+
+If you are using Babel or Neutrino to build your preset (so meta) with ES modules:
+
+```js
+export default neutrino => {
+ // ...
+};
+```
+
+## Configuring
+
+The Neutrino instance provided to your custom configurator has a `config` property that is an instance of
+[webpack-chain](https://github.com/mozilla-rpweb/webpack-chain). We won't go in-depth of all the configuration
+possibilities here, but encourage you to check out the documentation for webpack-chain for instruction on your
+particular use case.
+
+This `neutrino.config` is an accumulation of all configuration set up to this moment. Every Neutrino preset interacts
+with and makes changes through this config, which is all available to your preset.
+
+## Events
+
+Neutrino exposes events for various stages of the build process your preset can hook into **if necessary**.
+
+- `prestart`: Triggered prior to creating a development bundle or launching a dev server.
+- `start`: Triggered after the development bundle has finished or the dev server has been stopped.
+- `prebuild`: Triggered prior to creating a production build.
+- `build`: Triggered after the production build has completed.
+- `pretest`: Triggered prior to invoking any test runners.
+- `test`: Triggered when test runners can start, or after they have all completed.
+
+_Example: Log to the console when a build finishes._
+
+```js
+module.exports = neutrino => {
+ neutrino.on('build', () => console.log('whew!'));
+};
+```
+
+## Including and merging other presets
+
+If your preset depends on other Neutrino presets, or you are creating a preset that is a combination of multiple
+presets, you can install them as dependencies and simply call them from your preset, providing them with your Neutrino
+instance. When users install your preset, they will bring along your dependencies defined with your package without
+needing to also include your extended presets in their own commands.
+
+_Example: Define a Neutrino preset which combines Node.js and Mocha presets._
+
+```js
+const node = require('neutrino-preset-node');
+const mocha = require('neutrino-preset-mocha');
+
+module.exports = neutrino => {
+ node(neutrino);
+ mocha(neutrino);
+
+ // neutrino.config now contains the accumulation of configuration from
+ // the Node.js and Mocha presets
+};
+```
+
+## Sample Preset: JavaScript Standard Style
+
+Let's create a preset from scratch which allows users to augment their project with
+[JavaScript Standard Style](http://standardjs.com/). For this sample preset we are using
+[Yarn](https://yarnpkg.com) for managing dependencies, but you may use the npm client if you desire.
+
+```bash
+# Create a new directory for your project and change into it:
+mkdir neutrino-preset-standard-style && cd neutrino-preset-standard-style
+
+# Initialize your project with a package.json:
+yarn init --yes
+
+# Install the dependencies needed by our preset
+yarn add standard-loader standard
+
+# Create the main file to the preset, e.g. index.js
+touch index.js
+```
+
+Let's edit this `index.js` file to add our preset:
+
+```js
+const path = require('path');
+
+module.exports = neutrino => {
+ neutrino.config
+ .rule('lint')
+ .pre()
+ .test(/\.jsx?$/)
+ .include(path.join(process.cwd(), 'src'))
+ .loader('standard', require.resolve('standard-loader'), {
+ snazzy: false
+ });
+};
+```
+
+## Custom Data
+
+If you want to expose custom options for your preset that are not appropriate to be stored in the Neutrino config,
+there is a `neutrino.custom` object namespace you can attach to. This way you can document to others how they can
+go about affecting how your preset works.
+
+_Example:_
+
+```js
+module.exports = neutrino => {
+ neutrino.custom.standardStyle = {
+ quiet: false,
+ logLevel: 'warn'
+ };
+
+ // ...
+};
+```
+
+## Important Points
+
+- When working with paths, remember that your preset will be running in the context of a project. You should take care
+to define application paths by referencing the current working directory with `process.cwd()`. For example if you
+wanted to work with the project's "src" directory, you would merge the path via `path.join(process.cwd(), 'src)`.
+- Because of package conflicts or unknown organization of a project's `node_modules` directory, it is usually safer to
+define loaders, Babel plugins, and Babel presets to Webpack absolutely than by name. In our sample preset above, while
+we could have passed the loader as just `'standard-loader'`, it is safer to resolve its location relative to our preset
+than having Webpack et al to attempt to load it later from a different, potentially incorrect location. Instead we
+passed `require.resolve('standard-loader')`.
+
+## Publishing
+
+When your preset is ready to be used by others, feel free to publish and distribute! By putting your preset on npm,
+GitHub, or another location, you can share the hard work put into abstracting away configuration and save everyone
+in the community time and effort. As long as Neutrino can require your preset, it puts no restrictions on where
+you want to host it.
diff --git a/customization/advanced.html b/customization/advanced.html
new file mode 100644
index 0000000..8dff863
--- /dev/null
+++ b/customization/advanced.html
@@ -0,0 +1,587 @@
+
+
+
+
+
+
+ Advanced · Neutrino
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
No two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications
+to the way your Neutrino preset is building your project. If you need more customization than can be afforded by
+augmenting your project's package.json, consider using this advanced configuration guide to modify your build as
+needed.
+
Creating a project-specific preset
+
Neutrino configurations are backed by webpack-chain, a library for
+making modifications to a Webpack configuration using a fluent or chained API. When your project needs more advanced
+build overrides, you will be interacting with this API in order to perform modifications.
+
First, we need to create a project-specific preset to make these changes. This can either be a JS file or a directory
+with an index.js file. Since Neutrino uses Node.js and Webpack for interacting with presets, it is helpful to
+understand that this is a Node.js module. By exporting a function from your module, you will be provided with a Neutrino
+instance for modifying the build. Let's create a file called neutrino-custom.js in the root of our example project:
At the moment our custom configurator isn't doing anything, but it does get us far enough to be able to tell Neutrino
+to use it for additional configuration. Modify your package.json and add neutrino-custom.js as an additional preset.
+
Note: Neutrino will attempt to load this module relative to the current working directory, which should be the root of
+your project.
Other than actually changing the config, that is all the setup necessary for Neutrino to pick up your custom changes.
+
Configuring
+
The Neutrino instance provided to your custom configurator has a config property that is an instance of
+webpack-chain. We won't go in-depth of all the configuration
+possibilities here, but encourage you to check out the documentation for webpack-chain for instruction on your
+particular use case.
+
This neutrino.config is an accumulation of all configuration set up to this moment. Every Neutrino preset interacts
+with and makes changes through this config, which is all available to you. For example, if you are using the presets
+neutrino-preset-react and neutrino-preset-karma, any options set can be extended, manipulated, or removed.
+
Example: Neutrino's React preset adds .jsx as a module extension. Let's remove it.
Example: Neutrino's Node.js preset uses babel-preset-env to support Node.js v6.9. Let's change it to support back to
+v4.2. This preset has a rule named "compile" and a loader named "babel".
Presets can also have their own custom data in addition to the Neutrino config. See your respective preset for details.
+Again, rather than reiterate the documentation for webpack-chain here,
+please refer to its documentation for all ways you can modify a config instance to solve your use cases.
No two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications
+to the way your Neutrino preset is building your project. Neutrino provides two ways you can augment a preset in the
+context of a project without resorting to creating and publishing an entirely independent preset.
+
Simple Customization
+
By defining a configuration object within your package.json, Neutrino will merge this information with that provided by
+your preset, effectively overriding those options with your custom data.
+
Advanced Customization
+
You can also create a configuration override directly in your project which can extend the presets you are using.
No two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications
+to the way your Neutrino preset is building your project. By defining a configuration object within your package.json,
+Neutrino will merge this information with that provided by your preset, effectively overriding those options with your
+custom data.
+
Prepare package.json
+
First, you will need to define a config section within your package.json. You
+may have already done this if you
+specified your presets through the config as opposed to flags through scripts:
Populate this object with configuration overrides. This is not a Webpack configuration, but rather a Neutrino-compatible
+object based on webpack-chain.
+
Usage
+
Entries
+
Add files to named entry points, or define new entry points. This is a key named entry, with a value being an object.
+This maps to points to enter the application. At this point the application starts executing.
+
Example: Define an entry point named vendor that bundles React packages separately from the application code.
The module object defines how the different types of modules within a project will be treated. Any additional
+properties attached to module not defined below will be set on the final module configuration.
+
Module Rules
+
Using module.rule creates rules that are matched to requests when modules are created. These rules can modify how the
+module is created. They can apply loaders to the module, or modify the parser.
+
Using module.rule.loader allows to you define the Webpack loader and its options for processing a particular rule.
+This loader is usually a dependency or devDependency of your project. Each loader object can specify a property
+for the string loader and an options object.
The output object contains a set of options instructing Webpack on how and where it should output your bundles,
+assets, and anything else you bundle or load with Webpack. This option can be any property/value combination that
+Webpack accepts.
+
Example: Change the public path of the application.
Use resolve to change how modules are resolved. When using resolve.extensions and resolve.modules, these should be
+specified as arrays, and will be merged with their respective definitions used in inherited presets. Any additional
+properties attached to resolve not defined below will be set on the final module configuration.
+
Example: Add .mjs as a resolving extension and specify modules are located in a custom_modules directory.
Use resolveLoader to change how loader packages are resolved. When using resolveLoader.extensions and
+resolveLoader.modules, these should be specified as arrays, and will be merged with their respective definitions used
+in inherited presets. Any additional properties attached to resolveLoader not defined below will be set on the final
+module configuration.
+
Example: Add .loader.js as a loader extension and specify modules are located in a web_loaders directory.
With the options defined above in your package.json, you can perform a variety of build customizations on a per-project
+basis. In the event that you need more customization than what is afforded through JSON, consider either switching to
+advanced configuration, or creating your own preset.
Create and build modern JavaScript applications with zero initial configuration
Think: Webpack, but with presets. That's Neutrino.
-
Neutrino is a companion tool which lets you build web and Node.js applications with shared presets or configurations. It intends to make the process of initializing and building projects much simpler by providing minimal development dependencies.
-
Neutrino uses Webpack to build both web and Node.js projects by providing complete build presets which can be shared across targets and projects. You can use Neutrino base presets to get started building a variety of projects, create your
-own presets by extending the Neutrino core ones to be shared across your own projects or even by the community. Presets can even be manipulated on a project-by-project basis to handle almost any build situation your preset doesn't cover.
+
Neutrino is a companion tool which lets you build web and Node.js applications with shared presets or configurations.
+It intends to make the process of initializing and building projects much simpler by providing minimal development
+dependencies.
+
Neutrino uses Webpack to build both web and Node.js projects by providing complete build presets which can be shared
+across targets and projects. You can use Neutrino base presets to get started building a variety of projects, create
+your own presets by extending the Neutrino core ones to be shared across your own projects or even by the community.
+Presets can even be manipulated on a project-by-project basis to handle almost any build situation your preset doesn't
+cover.
@@ -315,7 +475,7 @@ own presets by extending the Neutrino core ones to be shared across your own pro
diff --git a/installation.html b/installation.html
index 6f52783..a8b8dbc 100644
--- a/installation.html
+++ b/installation.html
@@ -128,7 +128,20 @@
Installing Neutrino requires Node.js v6+, and either Yarn or
npm. At a minimum you will be installing Neutrino and a Neutrino preset, such as neutrino-preset-react.
-
Yarn Installation
+
Yarn Installation
Run the following command inside your project directory. Substitute PRESET_PKG with the name of the preset
you wish to install.
yarn add --dev neutrino PRESET_PKG
@@ -281,7 +437,7 @@ you wish to install.
For example, if you wanted to build your project using Neutrino's React preset:
yarn add --dev neutrino neutrino-preset-react
-
npm Installation
+
npm Installation
Run the following command inside your project directory. Substitute PRESET_PKG with the name of the preset
you wish to install.
npm install --save-dev neutrino PRESET_PKG
@@ -289,7 +445,7 @@ you wish to install.
For example, if you wanted to build your project using Neutrino's React preset:
A preset is a Webpack- or Neutrino-compatible configuration capable of building or modifying
-the build process for a project. Neutrino provides a few core presets to quickly get
-started building some popular project types, but anyone can inherit, extend, and modify these
-presets and tailor them to their project preferences. You can even create your own
-presets from scratch.
+
A preset is a Neutrino-compatible configuration capable of building, modifying
+the build process, or interacting with a project as a result of building.
+Neutrino provides a few core presets to quickly get started building some popular project
+types, but anyone can inherit, extend, and modify these presets and tailor them to their project,
+team, or company preferences. You can even create your own presets from scratch.
If you are familiar with Babel presets, Neutrino presets work similarly. For example,
given the Babel preset babel-preset-react, you can compile React code with JSX
-to vanilla JavaScript calls. Neutrino adopts this same concept. Many more aspects of
+to vanilla JavaScript calls. Neutrino adopts this same concept by adapting Webpack into
+a tool that understands configurations-as-packages, i.e. presets. Many more aspects of
development surround building a complete React project, for which Webpack is commonly used.
By encapsulating the common needs of a project type into a preset, Neutrino allows you to
avoid the upfront cost of configuring and instead focus on project development.
Out of the box Neutrino presets expect a project to have a particular structure in order to make the
+development process for new projects as quick as possible. This is broken up into three directories:
+
+
Source code
+
Build assets
+
Testing
+
+
Each of these directories are set up via convention by a Neutrino preset, but each can be customized as
+desired by overriding the preset's configuration or using a different preset. See
+Custom Configuration for detailed instructions.
+
Source Code
+
By default Neutrino presets expect all project source code to live in a directory named src in the
+root of the project. This includes JavaScript files, CSS stylesheets, images, and any other assets
+that would be available to your compiled project.
+
When running your project or creating a build bundle, a preset will look for this src directory for
+the entry point(s) to your application and use this as the relative location for finding other assets
+necessary for creating your builds.
+
Build Assets
+
When creating a build bundle, a preset will put the compiled assets, including any generated
+JavaScript files, into a directory named build by default. Typically your Neutrino preset will copy
+any non-JavaScript files from the source directory over to the build directory, allowing you to maintain
+the same relative path structure for static assets as is used for the source files.
+
Normally most projects will exclude checking in this build directory to source control.
+Be sure to add this directory to your project's .gitignore, .hgignore, or similar file.
+
Testing
+
Neutrino presets by default expect all tests to be located in a directory named test. In order to make the
+separation between tests and test fixtures or harnesses easier to differentiate, Neutrino presets also
+usually look for test files ending in _test.js or .test.js. See your specific test preset for more
+detailed information about running tests and other conventions.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/search_index.json b/search_index.json
index 472a81a..6bf0fb1 100644
--- a/search_index.json
+++ b/search_index.json
@@ -1 +1 @@
-{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["applic","base","basi","both","build","community.","companion","complet","configur","configurations.","core","cover.","creat","dependencies.","develop","doesn't","even","extend","handl","initi","intend","introduct","javascript","let","make","manipul","minim","modern","much","neutrino","neutrino.","node.j","on","preset","presets.","process","project","projects,","projects.","provid","share","simpler","situat","start","target","that'","think:","tool","us","varieti","web","webpack","webpack,","zero"],"installation.html":["add","build","command","continu","default","dev","directory.","document","example,","follow","get","insid","instal","install.","instruct","layout.","minimum","name","neutrino","neutrino'","node.j","npm","npm.","pleas","preset","preset,","preset:","preset_pkg","project","react","react.","requir","run","save","start","substitut","such","through","us","usag","v6+,","want","wish","yarn"],"usage.html":["\"neutrino","\"scripts\":","\"start\":","#","allow","avail","base","build","bundl","capabilities.","check","choos","code.","command","complet","configur","creat","default","defin","depend","deployment.","details.","develop","development.","differ","dure","e.g.","environ","example:","execut","hot","instal","javascript","know","layout","line","modul","name","names,","necessari","neutrino","node.j","node_env","npm","order","package.json","package.json.","prefer","preset","preset,","preset_modul","presets.","product","project","project'","project,","project.","project:","project;","provid","put","react","react\"","recommend","reload","run","script","scripts.build","scripts.start","scripts.test","server","set","setup","share","simpli","sourc","spin","start","start.","suitabl","support","target","test","tests.","tool","typic","up","us","usag","usage:","using,","variabl","variable,","want","webpack","wish","with,","within","wrap","yarn","{","}"],"presets/":["adopt","allow","alternative?","answer","anyon","app","applic","aspect","avoid","babel","bake","base","best","boilerpl","build","building.","calls.","capabl","caus","chang","changes.","code","common","commonli","compat","compil","complet","concept.","configur","configuration.","core","cost","creat","crop","develop","development.","differ","difficult","directli","discov","distribut","dry.","duplic","duplication.","easili","ecosystem,","effort","encapsul","entir","environ","escap","even","example,","extend","extend,","extens","familiar","fantast","few","focu","forc","fortun","gener","github","given","great","hatch","improv","inherit,","instal","instead","javascript","jsx","keep","lock","lot","made","maintain","make","mani","meet","miss","modifi","more","need","need.","neutrino","new","npm","oftentim","order","other","out","particular","pattern,","popular","practic","preferences.","preset","preset,","presets,","presets.","presets?","process","process,","project","project,","project.","projects,","projects.","provid","publish","quickli","react","react,","resourc","same","same,","scaffold","scratch.","share","similar","similarly.","simpl","small","specif","start","steps,","surround","tailor","tediou","tool","tweak","type","types,","types.","unfortun","up","upfront","us","used.","vanilla","webpack","work"],"presets/neutrino-preset-web/":["head","preset","web"],"presets/neutrino-preset-react/":["head","preset","react"],"presets/neutrino-preset-node/":["back","build","compil","development.","environ","fall","head","import","instead","neutrino","neutrino'","node","node.j","node_env","note:","preset","run","set","start;","support","time","variabl","watch","writing,"],"presets/neutrino-preset-base/":["base","head","preset"]},"length":8},"tokenStore":{"root":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"d":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542},"presets/":{"ref":"presets/","tf":0.014084507042253521}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"?":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":5}}},"i":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.014084507042253521}}}}},"k":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"c":{"docs":{},"k":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.014084507042253521}}}}}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.08641975308641975},"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.04961832061068702},"presets/":{"ref":"presets/","tf":0.046948356807511735},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.015267175572519083}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.026717557251908396}}}}},"o":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"i":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.023474178403755867}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"d":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313}}}}},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"usage.html":{"ref":"usage.html","tf":0.015267175572519083},"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}},"o":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}}},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"u":{"docs":{},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}}}},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.015267175572519083},"presets/":{"ref":"presets/","tf":0.004694835680751174}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01},"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}},"o":{"docs":{},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}}}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"v":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.004694835680751174}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"presets/":{"ref":"presets/","tf":0.004694835680751174}}},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}}},".":{"docs":{},"g":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}},"n":{"docs":{},"v":{"docs":{},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.022900763358778626},"presets/":{"ref":"presets/","tf":0.004694835680751174},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"t":{"docs":{},"i":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"c":{"docs":{},"o":{"docs":{},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"o":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":1},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":1},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":1}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.024691358024691357}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":10.07},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}},"l":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}},"s":{"docs":{},"x":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"m":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.014084507042253521}}}},"n":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"d":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"u":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}}},"s":{"docs":{},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"u":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.014084507042253521}}}}}},"r":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.04938271604938271},"installation.html":{"ref":"installation.html","tf":0.12},"usage.html":{"ref":"usage.html","tf":0.08396946564885496},"presets/":{"ref":"presets/","tf":0.028169014084507043},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}},"e":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.023474178403755867}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"w":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"installation.html":{"ref":"installation.html","tf":0.01},"usage.html":{"ref":"usage.html","tf":0.011450381679389313},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":5}}}},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}}},"t":{"docs":{},"e":{"docs":{},":":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.011450381679389313}},"s":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.03},"usage.html":{"ref":"usage.html","tf":0.007633587786259542},"presets/":{"ref":"presets/","tf":0.004694835680751174}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"u":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.07407407407407407},"installation.html":{"ref":"installation.html","tf":0.05},"usage.html":{"ref":"usage.html","tf":0.05343511450381679},"presets/":{"ref":"presets/","tf":10.046948356807512},"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":5},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":5},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":5.043478260869565},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":5}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}},"?":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}},"_":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.015267175572519083}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.009389671361502348}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.06172839506172839},"installation.html":{"ref":"installation.html","tf":0.05},"usage.html":{"ref":"usage.html","tf":0.026717557251908396},"presets/":{"ref":"presets/","tf":0.046948356807511735}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.004694835680751174}}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"'":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542},"presets/":{"ref":"presets/","tf":0.014084507042253521}}},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}},";":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"usage.html":{"ref":"usage.html","tf":0.011450381679389313},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.019083969465648856}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"u":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"o":{"docs":{},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"installation.html":{"ref":"installation.html","tf":0.01},"usage.html":{"ref":"usage.html","tf":0.026717557251908396},"presets/":{"ref":"presets/","tf":0.004694835680751174}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},";":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"e":{"docs":{},"p":{"docs":{},"s":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}},"m":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}}}}}}},"c":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.015267175572519083}},"s":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}},"u":{"docs":{},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313}}}}}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.019083969465648856}},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"y":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}},"s":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.05343511450381679},"presets/":{"ref":"presets/","tf":0.004694835680751174}},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01},"usage.html":{"ref":"usage.html","tf":10.00381679389313}},"e":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.004694835680751174}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}}}}}}},"v":{"6":{"docs":{},"+":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}},"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}},"e":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.011450381679389313}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":5}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.003816793893129771},"presets/":{"ref":"presets/","tf":0.009389671361502348}},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.011450381679389313}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02}}}}}},"c":{"docs":{},"u":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}},"r":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"l":{"docs":{},"l":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}},"e":{"docs":{},"w":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04},"usage.html":{"ref":"usage.html","tf":0.015267175572519083},"presets/":{"ref":"presets/","tf":0.014084507042253521},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":5}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}},"\"":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.009389671361502348}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.01}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}},"u":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.02},"usage.html":{"ref":"usage.html","tf":0.015267175572519083},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.04},"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}},"\"":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}}}}}}}}},"#":{"docs":{"usage.html":{"ref":"usage.html","tf":0.007633587786259542}}},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"usage.html":{"ref":"usage.html","tf":0.003816793893129771}}}}},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}},"{":{"docs":{"usage.html":{"ref":"usage.html","tf":0.015267175572519083}}},"}":{"docs":{"usage.html":{"ref":"usage.html","tf":0.015267175572519083}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.004694835680751174}}}}}}}}}},"length":377},"corpusTokens":["\"neutrino","\"scripts\":","\"start\":","#","add","adopt","allow","alternative?","answer","anyon","app","applic","aspect","avail","avoid","babel","back","bake","base","basi","best","boilerpl","both","build","building.","bundl","calls.","capabilities.","capabl","caus","chang","changes.","check","choos","code","code.","command","common","commonli","community.","companion","compat","compil","complet","concept.","configur","configuration.","configurations.","continu","core","cost","cover.","creat","crop","default","defin","depend","dependencies.","deployment.","details.","dev","develop","development.","differ","difficult","directli","directory.","discov","distribut","document","doesn't","dry.","duplic","duplication.","dure","e.g.","easili","ecosystem,","effort","encapsul","entir","environ","escap","even","example,","example:","execut","extend","extend,","extens","fall","familiar","fantast","few","focu","follow","forc","fortun","gener","get","github","given","great","handl","hatch","head","hot","import","improv","inherit,","initi","insid","instal","install.","instead","instruct","intend","introduct","javascript","jsx","keep","know","layout","layout.","let","line","lock","lot","made","maintain","make","mani","manipul","meet","minim","minimum","miss","modern","modifi","modul","more","much","name","names,","necessari","need","need.","neutrino","neutrino'","neutrino.","new","node","node.j","node_env","note:","npm","npm.","oftentim","on","order","other","out","package.json","package.json.","particular","pattern,","pleas","popular","practic","prefer","preferences.","preset","preset,","preset:","preset_modul","preset_pkg","presets,","presets.","presets?","process","process,","product","project","project'","project,","project.","project:","project;","projects,","projects.","provid","publish","put","quickli","react","react\"","react,","react.","recommend","reload","requir","resourc","run","same","same,","save","scaffold","scratch.","script","scripts.build","scripts.start","scripts.test","server","set","setup","share","similar","similarly.","simpl","simpler","simpli","situat","small","sourc","specif","spin","start","start.","start;","steps,","substitut","such","suitabl","support","surround","tailor","target","tediou","test","tests.","that'","think:","through","time","tool","tweak","type","types,","types.","typic","unfortun","up","upfront","us","usag","usage:","used.","using,","v6+,","vanilla","variabl","variable,","varieti","want","watch","web","webpack","webpack,","wish","with,","within","work","wrap","writing,","yarn","zero","{","}"],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n\nCreate and build modern JavaScript applications with zero initial configuration\nThink: Webpack, but with presets. That's Neutrino.\n\nNeutrino is a companion tool which lets you build web and Node.js applications with shared presets or configurations. It intends to make the process of initializing and building projects much simpler by providing minimal development dependencies. \nNeutrino uses Webpack to build both web and Node.js projects by providing complete build presets which can be shared across targets and projects. You can use Neutrino base presets to get started building a variety of projects, create your\nown presets by extending the Neutrino core ones to be shared across your own projects or even by the community. Presets can even be manipulated on a project-by-project basis to handle almost any build situation your preset doesn't cover.\n"},"installation.html":{"url":"installation.html","title":"Installation","keywords":"","body":"Installing Neutrino\nInstalling Neutrino requires Node.js v6+, and either Yarn or\nnpm. At a minimum you will be installing Neutrino and a Neutrino preset, such as neutrino-preset-react.\nYarn Installation\nRun the following command inside your project directory. Substitute PRESET_PKG with the name of the preset\nyou wish to install.\nyarn add --dev neutrino PRESET_PKG\n\nFor example, if you wanted to build your project using Neutrino's React preset:\nyarn add --dev neutrino neutrino-preset-react\n\nnpm Installation\nRun the following command inside your project directory. Substitute PRESET_PKG with the name of the preset\nyou wish to install.\nnpm install --save-dev neutrino PRESET_PKG\n\nFor example, if you wanted to build your project using Neutrino's React preset:\nnpm install --save-dev neutrino neutrino-preset-react\n\nGetting started\nPlease continue through the documentation for instructions on Neutrino usage and default project layout.\n"},"usage.html":{"url":"usage.html","title":"Usage","keywords":"","body":"Usage\nNeutrino is a command-line tool that wraps Webpack in order to support building JavaScript projects\nbased on shared configuration presets. You can use Neutrino within your project, preferably using\nscripts defined in your project's package.json.\nSetup\nAfter completing the installation of Neutrino and your Neutrino preset, you will\nwant to define some scripts in your project's package.json in order to simply build your project.\nIn a typical project:\n\nscripts.start would be the command you wish to run during development\nscripts.build would be the command you wish to run to create a production bundle\nscripts.test would be the command you wish to run to execute tests\n\nUsing these script targets may not be suitable for every project; know that they are just\ntypical recommendations for script target names, you may choose a different name if necessary\nfor your project.\nBuilding for development\nNeutrino provides the command neutrino start for creating a bundle during development. Using\nneutrino start sets the Node.js environment to development using the NODE_ENV environment variable,\nwhich is available in your project source code. Depending on the preset you are using, neutrino start\nmay also spin up a development server with hot module reloading capabilities.\nCheck your preset for details.\nUsage:\n# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react\nneutrino start --preset PRESET_MODULE\n\nPutting this into your package.json will allow you to build your project using either\nyarn start or npm start. Using neutrino-preset-react as an example:\n{\n \"scripts\": {\n \"start\": \"neutrino start --preset neutrino-preset-react\"\n }\n}\n\nBuilding for production\nNeutrino provides the command neutrino build for creating a bundle for production deployment.\nUsing neutrino build sets the Node.js environment to production using the NODE_ENV environment variable,\nwhich is available in your project source code.\n# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react\nneutrino build --preset PRESET_MODULE\n\nPutting this into your package.json will allow you to build your project using either\nyarn start or npm start. Using neutrino-preset-react as an example:\n{\n \"scripts\": {\n \"start\": \"neutrino build --preset neutrino-preset-react\"\n }\n}\n\nBuilding and running tests\nNeutrino provides the command neutrino test for creating a production bundle for use in executing tests.\nUsing neutrino test sets the Node.js environment variable to test using the NODE_ENV environment\nvariable, which is available in your project source code.\nDefault project layout\n"},"presets/":{"url":"presets/","title":"Presets","keywords":"","body":"What are presets?\nA preset is a Webpack- or Neutrino-compatible configuration capable of building or modifying\nthe build process for a project. Neutrino provides a few core presets to quickly get\nstarted building some popular project types, but anyone can inherit, extend, and modify these\npresets and tailor them to their project preferences. You can even create your own\npresets from scratch.\nIf you are familiar with Babel presets, Neutrino presets work similarly. For example,\ngiven the Babel preset babel-preset-react, you can compile React code with JSX\nto vanilla JavaScript calls. Neutrino adopts this same concept. Many more aspects of\ndevelopment surround building a complete React project, for which Webpack is commonly used.\nBy encapsulating the common needs of a project type into a preset, Neutrino allows you to\navoid the upfront cost of configuring and instead focus on project development.\nNot every project is the same, and oftentimes small tweaks need to be made to the build\nconfiguration in order to meet this need. Fortunately Neutrino presets can be modified and\nextended directly from the project you are building. No need to be locked in to a particular\npattern, and no escape hatches that force you into maintaining the entire configuration should\nyou need to make changes.\nPresets can be easily distributing by publishing them to npm or GitHub and installing them\nin your project. This also allows others to discover and build projects based on your own\npresets.\nWhy not a boilerplate or alternative?\nBoilerplates are great resources for scaffolding out application-specific code which\nwould be difficult or tedious to generate for every project. Unfortunately many projects\nalso bake in build configuration into this process, causing a lot of duplication. If you\nneed to make a change to your build steps, you are forced to make that change across all\nyour similar projects. Using a preset rather than a boilerplate keeps this process DRY.\nTools like Create React App have\nbeen fantastic improvements to the tooling ecosystem, but unfortunately only works on specific\nenvironments like React, and do not allow simple extensibility of the build configuration. To\nanswer this new and similar projects are cropping up to build different types of projects,\noften duplicating efforts which miss out on the best practices to share with the other project\ntypes.\n"},"presets/neutrino-preset-web/":{"url":"presets/neutrino-preset-web/","title":"Web Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-react/":{"url":"presets/neutrino-preset-react/","title":"React Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-node/":{"url":"presets/neutrino-preset-node/","title":"Node.js Preset","keywords":"","body":"heading\nImportant Note: At the time of writing, Neutrino's Node preset does not support watch\ncompilation with neutrino start; it will instead fall back to running a build with the NODE_ENV\nenvironment variable set to development.\n"},"presets/neutrino-preset-base/":{"url":"presets/neutrino-preset-base/","title":"Base Preset","keywords":"","body":"heading\n"}}}
\ No newline at end of file
+{"index":{"version":"0.5.12","fields":[{"name":"title","boost":10},{"name":"keywords","boost":15},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"./":["applic","base","basi","both","build","community.","companion","complet","configur","configurations.","core","cover.","creat","dependencies.","develop","doesn't","even","extend","handl","initi","intend","introduct","javascript","let","make","manipul","minim","modern","much","neutrino","neutrino.","node.j","on","preset","presets.","process","project","projects,","projects.","provid","share","simpler","situat","start","target","that'","think:","tool","us","varieti","web","webpack","webpack,","zero"],"installation.html":["add","build","command","continu","default","dev","directory.","document","example,","follow","get","insid","instal","install.","instruct","layout.","minimum","name","neutrino","neutrino'","node.j","npm","npm.","pleas","preset","preset,","preset:","preset_pkg","project","react","react.","requir","run","save","start","substitut","such","through","us","usag","v6+,","want","wish","yarn"],"usage.html":["\"build\":","\"config\":","\"neutrino","\"presets\":","\"scripts\":","\"start\":","\"test\":","#","[","]","a_test.j","addit","allow","anoth","array,","avail","b_test.j","base","begin","build","build\",","build.","built","bundl","call","capabilities.","check","choos","code","code.","combin","command","compat","complet","completed.","config.preset","configur","consum","core","creat","cumbersome,","current","dash","defin","denot","depend","deployment.","desir","detail","details.","determin","develop","development.","differ","directory.","document","dure","e.g.","each","encourag","end","environ","especi","example:","execut","field","file","file.","files.","flag","fortun","have","hot","import","includ","individually.","instal","invok","javascript","jest,","karma","karma\"","karma,","know","last","line","locat","look","mani","mocha.","modul","multipl","name","names,","neutrino","node.j","node_env","note","npm","omit","order","package.json","package.json.","parameter,","prefer","preset","preset,","preset.","preset_a","preset_b","preset_modul","presets.","presets:","product","project","project'","project,","project.","project:","project;","provid","put","react","react\"","react\",","recommend","regard","reload","run","same","script","scripts.build","scripts.start","scripts.test","see","server","set","setup","share","simpli","sourc","specif","specifi","spin","start","start\",","start.","step","suit","suitabl","support","target","test","test\"","test.","testing_modul","three","tool","two","typic","up","us","usag","usage:","using,","using.","variabl","variable,","want","webpack","wish","with,","within","wrap","yarn","{","}","},"],"project-layout.html":[".gitignore,",".hgignore,",".test.js.","_test.j","add","allow","applic","asset","assets,","avail","between","box","broken","build","builds.","bundle,","check","code","compil","configur","control.","convent","conventions.","copi","creat","css","custom","default","default.","desir","detail","develop","differ","differentiate,","directori","directories:","directory,","each","easier","end","entri","exclud","expect","file","file.","files,","files.","find","fixtur","gener","har","images,","includ","inform","instructions.","javascript","layout","live","locat","look","maintain","make","more","name","necessari","neutrino","new","non","normal","order","out","over","overrid","particular","path","point(s)","possible.","preset","preset'","preset,","preset.","process","project","project'","project.","put","quick","rel","root","run","same","see","separ","set","similar","sourc","specif","src","static","structur","stylesheets,","sure","test","test.","three","typic","up","us","usual","via"],"presets/":["adapt","adopt","allow","alternative?","answer","anyon","app","applic","aspect","avoid","babel","bake","base","best","boilerpl","build","building,","building.","calls.","capabl","caus","chang","changes.","code","common","commonli","compani","compat","compil","complet","concept","configur","configuration.","core","cost","creat","crop","develop","development.","differ","difficult","directli","discov","distribut","dry.","duplic","duplication.","easili","ecosystem,","effort","encapsul","entir","environ","escap","even","example,","extend","extend,","extens","familiar","fantast","few","focu","forc","fortun","gener","github","given","great","hatch","i.e.","improv","inherit,","instal","instead","interact","javascript","jsx","keep","lock","lot","made","maintain","make","mani","meet","miss","modifi","more","need","need.","neutrino","new","npm","oftentim","order","other","out","packages,","particular","pattern,","popular","practic","preferences.","preset","preset,","presets,","presets.","presets?","process","process,","project","project,","project.","projects,","projects.","provid","publish","quickli","react","react,","resourc","result","same","same,","scaffold","scratch.","share","similar","similarly.","simpl","small","specif","start","steps,","surround","tailor","team,","tediou","tool","tweak","type","types,","types.","understand","unfortun","up","upfront","us","used.","vanilla","webpack","work"],"presets/neutrino-preset-web/":["head","preset","web"],"presets/neutrino-preset-react/":["head","preset","react"],"presets/neutrino-preset-node/":["back","build","compil","development.","environ","fall","head","import","instead","neutrino","neutrino'","node","node.j","node_env","note:","preset","run","set","start;","support","time","variabl","watch","writing,"],"presets/neutrino-preset-karma/":["head","karma","preset"],"presets/neutrino-preset-mocha/":["head","mocha","preset"],"presets/neutrino-preset-jest/":["head","jest","preset"],"presets/neutrino-preset-base/":["base","head","preset"],"customization/":["advanc","augment","build","configur","context","continu","creat","custom","data.","defin","detail","directli","each","effect","entir","extend","independ","inform","javascript","make","merg","modif","need","neutrino","object","option","overrid","package.json,","preset","preset,","preset.","project","project.","provid","publish","resort","same,","simpl","such","technique.","those","time","two","using.","way","within","without"],"customization/simple.html":["\"/\\\\.less$/\",","\"^2.2.3\"","\"^2.7.2\",","\"__dirname\":","\"__filename\":","\"build\":","\"compress\":","\"config\":","\"dependencies\":","\"devserver\":","\"entry\":","\"error\"","\"extensions\":","\"hints\":","\"https://cdn.example.com/assets/\"","\"less","\"less\":","\"loader\":","\"mock\"","\"mock\",","\"module\":","\"modules\":","\"neutrino","\"neutrino\":","\"node\":","\"noiecompat\":","\"options\":","\"output\":","\"performance\":","\"port\":","\"presets\":","\"publicpath\":","\"react","\"react\",","\"resolve\":","\"rule\":","\"scripts\":","\"start\":","\"styles\":","\"test\":","\"vendor\":",".loader.j",".mj","9000","9000.","[","[\".loader.js\"],","[\".mjs\"],","[\"custom_modules\"]","[\"web_loaders\"]","[],","]","__dirnam","__filenam","abov","accepts.","ad","add","addit","advanc","afford","allow","alreadi","anyth","appli","applic","application.","arrays,","assets,","attach","base","basis.","be","behavior","below","budgets.","build","build\"","bundl","bundles,","chain.","chang","code.","combin","compat","config","config.neutrino","configur","configuration,","configuration.","consid","contain","creat","created.","custom","custom_modul","data.","data:","defin","definit","depend","dev","devdepend","devserv","differ","directory.","dom\"","dom\",","done","each","effect","enter","entri","entry,","environ","error","event","example:","exceed","executing.","extens","file","final","first,","flag","globals.","gzip","hot","inform","inherit","instruct","javascript","json,","karma\"","key","less","level","listen","load","loader","loader\",","loader\":","locat","make","map","match","merg","mock","mocks:","modif","modifi","modul","module,","module.rul","module.rule.load","more","name","need","neutrino","neutrino.","new","node","node.j","object","object.","oppos","option","output","overrid","overrides.","packag","package.json","package.json,","package.json.","parser.","particular","path","per","perform","point","points,","points.","polyfil","popul","port","prepar","preset","preset,","preset.","presets.","process","project","project.","properti","property/valu","provid","public","react","react\",","request","resolv","resolve.extens","resolve.modules,","resolved.","resolveload","resolveloader.extens","resolveloader.modules,","respect","router","rule","rule.","same,","scripts:","section","separ","serv","server","set","simpl","specifi","start","start\",","string","such","switch","those","through","time","top","treated.","true","true,","two","type","us","usag","usual","valu","varieti","variou","vendor","way","ways.","web_load","webpack","webpack.","within","{","}","},"],"customization/advanced.html":["\"babel\".","\"build\":","\"compile\"","\"config\":","\"neutrino","\"presets\":","\"scripts\":","({","...",".jsx",".loader('babel',",".rule('compile')","//","4.2;","=","=>","[","]","accumul","actual","add","addit","advanc","afford","again,","anything,","api","api.","attempt","augment","avail","babel","back","build","build\"","build.","call","case.","cases.","chain","chain,","chain.","chang","changes.","check","config","config,","config.","configur","configuration.","consid","creat","current","custom","custom.j","custom.js\"","data","depth","details.","directori","directory,","do","document","encourag","enough","env","exampl","example,","example:","export","extended,","extension.","far","file","file.","first,","fluent","function","go","guid","help","here,","index.j","instanc","instruct","interact","isn't","it.","javascript","js","karma\",","karma,","let'","librari","load","loader","make","manipulated,","modif","modifi","modifications.","modul","module,","module.","module.export","moment","moment.","more","name","necessari","need","needed.","neutrino","neutrino'","neutrino.config","neutrino.config.modul","neutrino.config.resolve.extensions.delete('.jsx');","node.j","note:","option","options.presets[0][1].targets.nod","order","out","overrides,","package.json","package.json,","particular","perform","pick","pleas","possibl","preset","preset.","presets,","project","project'","project.","project:","properti","provid","react","react\",","refer","reiter","rel","remov","removed.","respect","return","root","rule","same,","see","set","setup","solv","specif","such","support","tell","through","time","two","understand","up","us","v4.2.","v6.9.","way","webpack","won't","work","you.","{","}","})","});","},","};"],"api/":["'neutrino';","'production';","(failed)","*/],","...","._devserver()",".build()",".catch(err",".config",".emitforall('custom",".start()",".test()",".test({",".then(()","//","=","=>",">","[/*","_devserv","access","ad","addit","afterwards.","api","api,","api.build();","api.getwebpackoptions();","api.handleerrors(err,","applicable,","arg","argument","array","attempt","augment","automat","avail","base","be","boolean.","build","build()","build(args)","build,","build.","build/'))","building.","bundl","bundle,","cach","cached,","call","case,","chain","chain.","cli,","command","complete,","config","config.neutrino,","configur","configurations,","consist","consol","console.error(err));","console.log('al","console.log('exit","console.log('exiting!'));","console.log('sav","console.log('th","const","construct","constructor","contain","conveni","convert","creat","created,","current","custom","data","data,","denot","depend","desire,","dev","develop","devserver,","directli","directory'","directory.","done","dure","each","earlier","effect","emitforall('build')","emitforall(eventname,","environ","err","error","errors.","es","event","event')","event.","events,","events;","example,","except","fail","failed!');","failur","fals","file","files:","finish,","finish.","finished,","finished.","for.","format","found,","gather","gener","getwebpackopt","getwebpackoptions()","getwebpackoptions(),","handl","handleerrors(err,","handler","handlers.","happen.","import","imports:","instanc","instance,","instanti","interact","intern","it,","later","line.","listen","load","load:","log","mean","merg","merged.","method","name","name,","need","nest","neutrino","neutrino();","neutrino(['neutrino","new","node.js,","node_modules,","noth","object","occur","once,","option","options.","order","otherwis","output","overrid","package.json","pass","passed'))","passed'));","path","path.","payload)","pick","possible,","prebuild","precedence.","preset","presets,","presets.","prestart","pretest","primarili","prior","process","process,","process...'));","process.env.node_env","production.","programmatically.","promis","properti","provid","react']);","readabl","receiv","reject","rel","relev","render","requir","require('neutrino');","require:","rerun","resid","resolv","resolve.","resolved!'));","resolved.","respons","result","return","run.","runner","server","set","sigint","signal","singl","sourc","specif","start","start()","start().","start(args)","started.","stat","stats)","stats);","stop.","stopped,","store","subsequ","take","test","test()","test(args)","test,","testing.","tests.","through","thrown.","tool","trigger","true","typic","understand","up","us","using.","valu","variabl","via","wait","watch","watch:","watcher","watcher.","webpack","webpack.","well","wish","within,","without","work","work.","{","}","})"],"cli/":["0.","1.","4.0.0","[]]","[array]","[boolean]","[default:","[files..]","a_test.j","asset","attempt","b_test.j","be","begin","bring","build","built","bundl","chang","cli","code","collect","combin","command","commands:","compil","config","config.presets,","config.presets.","configur","conjunct","consol","continu","creat","current","dash","defin","denot","depend","destination.","details.","determin","develop","development.","directori","directory.","easier","end","environ","error","error,","errors.","execut","exit","exit.","fail","false]","file","files.","flag","follow","guide:","help","import","individually.","instanc","integr","interact","interfac","it.","karma","last","let'","level","line","linter","list","load","load.","locat","log","look","make","mean","mode","mode,","modul","neutrino","neutrino,","neutrino.","node_env","note","npm","number","onto","option","options:","output","over","overridden","packag","package.json","parameter,","particular","pass","path","preced","prefer","preset","preset.","presets.","product","production.","project","project'","promise.","provid","pull","re","react","reasons,","reject","rel","render","request","resolv","run","runner","see","server","set","show","sourc","specif","specifi","start","static","statu","still","succeeded,","such","suit","support","take","test","test.","test:","tests,","tests.","top","two","up","us","usage.","used.","valu","variabl","version","via","wait","watch","watcher","way","wish","❯"],"contributing/":["abid","accept","actual","ad","add","addit","address","alreadi","alway","answer","ask","assess","assist","babel","base","believ","benefit.","best","boilerpl","boilerplates,","boilerplates.","bring","bug","bugs,","burden","chang","change?","changes,","channel","clear","client","client?","code","codebase.","collect","command","commun","con","conduct","conform","consid","consum","contain","continu","contrari","contribut","contribution,","contributor","core","core,","course!","covenant.","creat","critic","date","deem","describ","detail","detail:","dev","develop","development.","discuss","discuss!","discussion,","discussions,","do?","document","documentation,","don't","dramat","effort","else,","encourag","enhanc","ensur","evalu","event","everyon","everyone'","exampl","exist","expand","expans","expect","expectations?","experi","extern","externally.","fair,","fairli","faith","featur","feedback.","feel","file","final","fix","follow","form","forward,","free","function","functionality.","get","github","goal","goe","good","govern","guid","guidelin","guidelines,","happen?","happened,","happi","help","help:","here","idea","ideas,","improv","inclus","inform","instead","involv","isn't","issu","issue,","issues.","itself","keep","left","maintain","mainten","major","make","make.","manag","member","more","move","necessary.","need","neutrino","neutrino!","neutrino,","neutrino.","neutrino?","new","node.j","npm","npm.","number","object","on","on.","ones,","open","oper","opt","option","order","orient","out","over","overflow","paradigm","part","particip","pattern","patterns,","per","person","person,","pleas","pleasant,","possible,","possible.","potenti","prefer","present","preset","presets,","presets.","presets?","pro","probabl","process","program","project","project:","properli","proposals.","publish","pull","push","put","qualiti","quality,","question","questions:","rais","reach","read","readable.","refer","relat","relev","relianc","remov","repositories.","repository.","request","request.","requests,","requests.","respect","return,","review","right","room","same","scaffold","show","small","so,","someth","stack","start","started.","still","strive","structur","success","support","system","team","team.","technic","test","thank","thing","though,","time","time.","togeth","transpar","tri","triag","tutorials,","type","understand","unnecessarily.","up","us","user","users?","using?","veri","version","version.","version?","versions?","want","webpack","wish","without","work","write","yarn","you!"],"contributing/code-of-conduct.html":["1.4,","abusive,","accept","account,","act","action","adapt","address,","advanc","age,","align","appearance,","appli","appoint","appropri","attack","attent","attribut","avail","ban","be","behavior","behavior.","best","bodi","both","circumstances.","clarifi","code","code,","comments,","commits,","commun","community.","complaint","conduct","conduct,","confidenti","consid","construct","contact","contribut","contributor","correct","coven","covenant,","covenant.org/version/1/4","creat","critic","deem","defin","detail","determin","differ","disability,","e","edit,","edits,","electron","eli@mozilla.com.","empathi","enforc","environ","environment,","ethnicity,","event.","everyone,","exampl","expect","experi","experience,","explicit","expression,","face","fair","faith","focus","follow","foster","free","further","gender","good","gracefulli","harass","harassing,","harmful.","http://contributor","ident","imageri","inappropri","inappropriate,","incident.","includ","include:","inclus","individu","information,","instanc","insulting/derogatori","interest","investig","issues,","languag","lead","leadership.","level","mail","maintain","maintainers.","make","media","member","nationality,","necessari","oblig","offensive,","offici","offlin","onlin","open","orientation.","others'","otherwis","particip","perman","permiss","person","physic","pledg","polici","polit","posit","post","privat","profession","project","project'","public","publish","race,","reason","regard","regardless","reject","religion,","remove,","repercuss","report","repres","represent","respect","respons","result","review","right","scope","separately.","set","sexual","show","size,","social","space","specif","standard","such","take","team","temporari","temporarili","threatening,","toward","trolling,","unaccept","unwelcom","us","version","via","viewpoint","welcom","wiki","within","without"],"contributing/development.html":["\"feature:","'standard",".",":tada:","account","account.","ad","add","applicable,","b","branch","branch.","broken","button","cd","chang","changes,","changes.","checkout","clone","code","command","command.","commit","commited.","computer,","congrats!","consol","contribut","copi","copy,","core","coupl","creat","descript","detail","dev","dev,","dev.","dev.git","develop","differ","display","documentation.","done","done,","example:","execut","expect","fetch","file","fill","first","follow","fork","future.","get","git","git@github.com:user/neutrino","github","give","guide,","guidelines.","happi","help!","https://github.com/mozilla","javascript","latest","line","local","locat","m","made","main","make","master","master.","message.","monorepo","mozilla","need","neutrino","neutrino!","neutrino/neutrino","new","note:","now","onc","open","operation.","order","origin","out","output","overli","packag","page","possibl","possible,","prepend","preset","previou","process","pull","push","pushed.","receiv","remot","replac","repo","repositori","repository,","request","request,","request.","run","sampl","satisifi","sections:","separ","show","standard","start","step","style","style\"","style'","style.","submit","sure","switch","symbol","sync","test","through","to:","tri","up","updat","upstream","us","user","usernam","verbos","verifi","want","work.","write","❯","❯."]},"length":20},"tokenStore":{"root":{"0":{"docs":{},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"1":{"docs":{},".":{"4":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"4":{"docs":{},".":{"0":{"docs":{},".":{"0":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"docs":{}}},"2":{"docs":{},";":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},"docs":{}}},"9":{"0":{"0":{"0":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"l":{"docs":{},"i":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"c":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}}},"i":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":10.028520499108735}},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.00927643784786642},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.019305019305019305}},"i":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":10.009375},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.0053475935828877}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.013333333333333334},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"?":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"t":{"docs":{},"h":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},"s":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}},"g":{"docs":{"api/":{"ref":"api/","tf":0.0071301247771836}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.026455026455026454},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"s":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"s":{"docs":{},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"k":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"u":{"docs":{},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"b":{"docs":{},"o":{"docs":{},"v":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"i":{"docs":{},"d":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"u":{"docs":{},"s":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"s":{"docs":{},"s":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"u":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}}},"k":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"b":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":5},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"i":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.013333333333333334},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"k":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"c":{"docs":{},"k":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}}},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"x":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.013333333333333334},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"d":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.08641975308641975},"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.038461538461538464},"project-layout.html":{"ref":"project-layout.html","tf":0.037037037037037035},"presets/":{"ref":"presets/","tf":0.04},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.0142602495543672},"cli/":{"ref":"cli/","tf":0.026737967914438502}},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}}},"s":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889},"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"/":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"e":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"api/":{"ref":"api/","tf":0.0017825311942959}}},"s":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"d":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"g":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.0053475935828877}}}}}}}}},"e":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"t":{"docs":{},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.019230769230769232}},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}}}},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"n":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.023166023166023165}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.015384615384615385}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.02564102564102564},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.034759358288770054},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"s":{"docs":{},":":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"o":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"i":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}},"s":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0053475935828877}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"i":{"docs":{},"l":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"u":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.02666666666666667},"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.00927643784786642},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.025},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.008021390374331552}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}}}}},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274}},"s":{"docs":{},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"customization/":{"ref":"customization/","tf":0.015873015873015872},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":10.016867469879518},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693},"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"o":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.015384615384615385}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"c":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"i":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"s":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"o":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0053475935828877}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"t":{"docs":{},"h":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}},"t":{"docs":{"api/":{"ref":"api/","tf":0.008912655971479501}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"o":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}},"i":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"r":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":5.019230769230769}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"s":{"docs":{},"!":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"o":{"docs":{},"r":{"docs":{},"g":{"docs":{},"/":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"1":{"docs":{},"/":{"4":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"docs":{}}},"docs":{}}}}}}}}}}}}}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"d":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"presets/":{"ref":"presets/","tf":0.008888888888888889},"cli/":{"ref":"cli/","tf":0.008021390374331552},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":5.019230769230769},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"p":{"docs":{},"i":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}},"y":{"docs":{},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"!":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"p":{"docs":{},"l":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.012477718360071301},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"o":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.008912655971479501}},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"p":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}}}}},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"u":{"docs":{},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"s":{"docs":{},"e":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"s":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"c":{"docs":{},"h":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}}},"o":{"docs":{},"o":{"docs":{},"s":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/simple.html":{"ref":"customization/simple.html","tf":0.00927643784786642},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.019305019305019305}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"i":{"docs":{},"n":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.0035650623885918}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}}},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0071301247771836},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/":{"ref":"customization/","tf":10.063492063492063},"customization/simple.html":{"ref":"customization/simple.html","tf":0.011131725417439703},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.01875},"api/":{"ref":"api/","tf":0.0017825311942959}},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},".":{"docs":{},"j":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375}},"s":{"docs":{},"\"":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}},"l":{"docs":{},"i":{"docs":{"cli/":{"ref":"cli/","tf":10.018716577540108}},",":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}}}},"d":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"y":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}},"v":{"docs":{"installation.html":{"ref":"installation.html","tf":0.039603960396039604},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.023166023166023165}},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.008547008547008548},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.008021390374331552},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":5.011583011583012}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581}},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.01855287569573284},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"i":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"s":{"docs":{},"i":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}},"e":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"p":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/":{"ref":"customization/","tf":0.015873015873015872},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},":":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"e":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}},"o":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}}},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}}}}}},"m":{"docs":{},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"n":{"docs":{},"e":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"'":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"'":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"i":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.042328042328042326},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.0053475935828877}},"e":{"docs":{},"s":{"docs":{},":":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"v":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"!":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"t":{"docs":{},"a":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918}},".":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"api/":{"ref":"api/","tf":0.0053475935828877}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}}}}}},"r":{"docs":{},"y":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"e":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0338680926916221},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"'":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"s":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"r":{"docs":{},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"e":{"docs":{},"'":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}},"r":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539}},"e":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}}},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"customization/simple.html":{"ref":"customization/simple.html","tf":0.014842300556586271},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"p":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"cli/":{"ref":"cli/","tf":0.008021390374331552}},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"s":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}},".":{"docs":{},"g":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918}}}},"s":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"v":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"i":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.01282051282051282},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.008021390374331552},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356}}},"y":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"i":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872}}}},"e":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539}}}}}}},"s":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"c":{"docs":{},"o":{"docs":{},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0053475935828877}}}}}}},"r":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"o":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"s":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"i":{"docs":{},"@":{"docs":{},"m":{"docs":{},"o":{"docs":{},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"s":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}},"r":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}},"s":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}}}},"v":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"m":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"o":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":1},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":1},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"presets/neutrino-preset-karma/":{"ref":"presets/neutrino-preset-karma/","tf":1},"presets/neutrino-preset-mocha/":{"ref":"presets/neutrino-preset-mocha/","tf":1},"presets/neutrino-preset-jest/":{"ref":"presets/neutrino-preset-jest/","tf":1},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":1}}}},"l":{"docs":{},"p":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.026737967914438502},"contributing/":{"ref":"contributing/","tf":0.016867469879518072}},":":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"!":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"r":{"docs":{},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"m":{"docs":{},"o":{"docs":{},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.024691358024691357}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"n":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"g":{"docs":{},"r":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":10}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"installation.html":{"ref":"installation.html","tf":10.069306930693068},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"l":{"docs":{},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802}}}}},"n":{"docs":{},"c":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"api/":{"ref":"api/","tf":0.008912655971479501},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}},"e":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}},"t":{"docs":{},"i":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"e":{"docs":{},":":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}}}}}},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872}}}}}},"x":{"docs":{},".":{"docs":{},"j":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"v":{"docs":{},"o":{"docs":{},"k":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},"l":{"docs":{},"v":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"g":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"s":{"docs":{},":":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"r":{"docs":{},"o":{"docs":{},"v":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}},"r":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},".":{"docs":{},"e":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"s":{"docs":{},"u":{"docs":{"contributing/":{"ref":"contributing/","tf":0.012048192771084338}},"e":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}},"s":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"t":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"d":{"docs":{},"e":{"docs":{},"a":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"presets/neutrino-preset-jest/":{"ref":"presets/neutrino-preset-jest/","tf":5}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}},"s":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"x":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"'":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"s":{"docs":{},"s":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"f":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"a":{"docs":{},"d":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"a":{"docs":{},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":5.005291005291006}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901}}}}}}},"s":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"s":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"v":{"docs":{},"e":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}},"s":{"docs":{},"t":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}},"e":{"docs":{},"n":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},"l":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"o":{"docs":{},"k":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"cli/":{"ref":"cli/","tf":0.0053475935828877}}}},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"a":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0106951871657754},"cli/":{"ref":"cli/","tf":0.0053475935828877}},"e":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.012987012987012988},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"\"":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},":":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"g":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"m":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.013333333333333334},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"n":{"docs":{},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.008888888888888889}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"n":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.019230769230769232}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"e":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"l":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"d":{"docs":{},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"p":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"j":{"docs":{},"o":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}},"u":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901}}}}}}},"s":{"docs":{},"s":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}},"r":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},",":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}}}},"u":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.02411873840445269},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"e":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375}}}}}}}}}}}},"i":{"docs":{},"f":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.013333333333333334},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{"presets/neutrino-preset-mocha/":{"ref":"presets/neutrino-preset-mocha/","tf":5}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"k":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"s":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"r":{"docs":{},"e":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"v":{"docs":{},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"o":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"z":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"r":{"docs":{},"g":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"a":{"docs":{},"n":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"api/":{"ref":"api/","tf":0.0196078431372549}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.04938271604938271},"installation.html":{"ref":"installation.html","tf":0.1188118811881188},"usage.html":{"ref":"usage.html","tf":0.07692307692307693},"project-layout.html":{"ref":"project-layout.html","tf":0.031746031746031744},"presets/":{"ref":"presets/","tf":0.02666666666666667},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/":{"ref":"customization/","tf":0.06349206349206349},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.059375},"api/":{"ref":"api/","tf":0.030303030303030304},"cli/":{"ref":"cli/","tf":0.07219251336898395},"contributing/":{"ref":"contributing/","tf":0.02891566265060241},"contributing/development.html":{"ref":"contributing/development.html","tf":0.03088803088803089}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"x":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}},"(":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"[":{"docs":{},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}}}}}}}},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"!":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"y":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}},"w":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"api/":{"ref":"api/","tf":0.0071301247771836},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}}},"e":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.022222222222222223},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"s":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}},".":{"docs":{},"j":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":5},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"s":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"cli/":{"ref":"cli/","tf":0.008021390374331552}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}},":":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"h":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}},"n":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}},"w":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.010683760683760684},"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0035650623885918}},"s":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}}},"p":{"docs":{},"m":{"docs":{"installation.html":{"ref":"installation.html","tf":0.0297029702970297},"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"o":{"docs":{},"n":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"c":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"e":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"t":{"docs":{},"o":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"r":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"u":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"l":{"docs":{},"i":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"f":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"s":{"docs":{},"'":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.012987012987012988},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"p":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.012987012987012988},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.009375},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"s":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},"[":{"1":{"docs":{},"]":{"docs":{},".":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}}}}}}},"docs":{}}}},"docs":{}}}}}}}}}},":":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"e":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.07407407407407407},"installation.html":{"ref":"installation.html","tf":0.04950495049504951},"usage.html":{"ref":"usage.html","tf":0.07905982905982906},"project-layout.html":{"ref":"project-layout.html","tf":0.042328042328042326},"presets/":{"ref":"presets/","tf":10.044444444444444},"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":5},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":5},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":5.043478260869565},"presets/neutrino-preset-karma/":{"ref":"presets/neutrino-preset-karma/","tf":5},"presets/neutrino-preset-mocha/":{"ref":"presets/neutrino-preset-mocha/","tf":5},"presets/neutrino-preset-jest/":{"ref":"presets/neutrino-preset-jest/","tf":5},"presets/neutrino-preset-base/":{"ref":"presets/neutrino-preset-base/","tf":5},"customization/":{"ref":"customization/","tf":0.047619047619047616},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.046875},"api/":{"ref":"api/","tf":0.0196078431372549},"cli/":{"ref":"cli/","tf":0.06951871657754011},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}},"s":{"docs":{},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.007228915662650603}}},"?":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},":":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802}}},"_":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.039603960396039604}}}}},"a":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},"b":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.01282051282051282}}}}}}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.0053475935828877}}},"'":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}},"n":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.007228915662650603}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"o":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":5}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889},"api/":{"ref":"api/","tf":0.0053475935828877}}},".":{"docs":{},".":{"docs":{},".":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.06172839506172839},"installation.html":{"ref":"installation.html","tf":0.04950495049504951},"usage.html":{"ref":"usage.html","tf":0.014957264957264958},"project-layout.html":{"ref":"project-layout.html","tf":5.031746031746032},"presets/":{"ref":"presets/","tf":0.044444444444444446},"customization/":{"ref":"customization/","tf":0.047619047619047616},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"cli/":{"ref":"cli/","tf":0.008021390374331552},"contributing/":{"ref":"contributing/","tf":0.012048192771084338},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.046153846153846156}},"s":{"docs":{},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},".":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}},"'":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.008888888888888889}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},";":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"usage.html":{"ref":"usage.html","tf":0.010683760683760684},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.008021390374331552}}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.011131725417439703},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.008912655971479501}}},"y":{"docs":{},"/":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}},"l":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"api/":{"ref":"api/","tf":0.012477718360071301}},"e":{"docs":{},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"f":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"o":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0071301247771836}}}},"v":{"docs":{},"a":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.016867469879518072}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"d":{"docs":{},"g":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"e":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.010683760683760684},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.0053475935828877}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},",":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}},"s":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"i":{"docs":{},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"i":{"docs":{},"p":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"t":{"docs":{},"h":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}},"s":{"docs":{},"s":{"docs":{"api/":{"ref":"api/","tf":0.0142602495543672},"cli/":{"ref":"cli/","tf":0.008021390374331552}},"e":{"docs":{},"d":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"g":{"docs":{},"e":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"u":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"c":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}},"l":{"docs":{},"l":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.019305019305019305}}}},"s":{"docs":{},"h":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}},"(":{"docs":{},"s":{"docs":{},")":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}},"s":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"e":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"i":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"l":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"r":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"e":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"h":{"docs":{},"y":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{"./":{"ref":"./","tf":0.037037037037037035},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"o":{"docs":{},"w":{"docs":{"cli/":{"ref":"cli/","tf":0.0106951871657754},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":10.001855287569573}},"e":{"docs":{},"r":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.008888888888888889}},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"z":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"usage.html":{"ref":"usage.html","tf":0.01282051282051282},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.012477718360071301},"cli/":{"ref":"cli/","tf":0.013368983957219251},"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}},"\"":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},";":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}}},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"i":{"docs":{},"c":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"s":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"u":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"c":{"docs":{},"k":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693},"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}}}}}}}},"e":{"docs":{},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"s":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"v":{"docs":{},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"s":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}}},"\"":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},"'":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"o":{"docs":{},"p":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"r":{"docs":{},"e":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802}}}},"m":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},"p":{"docs":{},"l":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802}}}}}}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}},"c":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"c":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"s":{"docs":{},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"i":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"r":{"docs":{},"e":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.010683760683760684}},"s":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"e":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"r":{"docs":{},"v":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"e":{"docs":{},"r":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/simple.html":{"ref":"customization/simple.html","tf":0.00927643784786642},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0071301247771836},"cli/":{"ref":"cli/","tf":0.0106951871657754},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"u":{"docs":{},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"s":{"docs":{},":":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}},"x":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539}}}}}}},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"usage.html":{"ref":"usage.html","tf":0.010683760683760684},"project-layout.html":{"ref":"project-layout.html","tf":0.031746031746031744},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.013368983957219251}}}}},"l":{"docs":{},"v":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"i":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"customization/simple.html":{"ref":"customization/simple.html","tf":0.011131725417439703},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}},"r":{"docs":{},"c":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"n":{"docs":{},"c":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.00641025641025641}}}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"k":{"docs":{},"e":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"'":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"n":{"docs":{},"k":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},":":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}},"g":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"w":{"docs":{},"n":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"e":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.013333333333333334},"api/":{"ref":"api/","tf":0.0017825311942959}}}},"p":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},":":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"usage.html":{"ref":"usage.html","tf":0.03632478632478633},"project-layout.html":{"ref":"project-layout.html","tf":0.042328042328042326},"api/":{"ref":"api/","tf":0.012477718360071301},"cli/":{"ref":"cli/","tf":0.0481283422459893},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},"\"":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274}}}}}}}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"s":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},":":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"a":{"docs":{},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},".":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872}}}}}},"c":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"l":{"docs":{},"l":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"l":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"y":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"api/":{"ref":"api/","tf":0.0035650623885918}}}},"e":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"s":{"docs":{},",":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"u":{"docs":{},"e":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918}},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.017825311942959002}}}}}},"a":{"docs":{},"g":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.042735042735042736},"project-layout.html":{"ref":"project-layout.html","tf":0.015873015873015872},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/simple.html":{"ref":"customization/simple.html","tf":0.02040816326530612},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.025},"api/":{"ref":"api/","tf":0.017825311942959002},"cli/":{"ref":"cli/","tf":0.034759358288770054},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"a":{"docs":{},"g":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"usage.html":{"ref":"usage.html","tf":10.002136752136753},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},"e":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},".":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/":{"ref":"customization/","tf":0.015873015873015872},"api/":{"ref":"api/","tf":0.0017825311942959}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603}}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"s":{"docs":{},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.0053475935828877},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"m":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"l":{"docs":{},"y":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539}}}}}}}},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"v":{"4":{"docs":{},".":{"2":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},"docs":{}}},"6":{"docs":{},"+":{"docs":{},",":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901}}}},".":{"9":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.008021390374331552}},"e":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641}}}}}}},"o":{"docs":{},"u":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"l":{"docs":{},"u":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0053475935828877},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"i":{"docs":{},"a":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"cli/":{"ref":"cli/","tf":0.0213903743315508},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"s":{"docs":{},"?":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"f":{"docs":{},"i":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"b":{"docs":{},"o":{"docs":{},"s":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{"./":{"ref":"./","tf":0.024691358024691357},"presets/neutrino-preset-web/":{"ref":"presets/neutrino-preset-web/","tf":5}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"./":{"ref":"./","tf":0.012345679012345678},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/simple.html":{"ref":"customization/simple.html","tf":0.012987012987012988},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.01875},"api/":{"ref":"api/","tf":0.012477718360071301},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},",":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"l":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.013368983957219251}},":":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"y":{"docs":{"customization/":{"ref":"customization/","tf":0.031746031746031744},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"i":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0106951871657754},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.008547008547008548},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"t":{"docs":{},"h":{"docs":{},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548}}},"i":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/":{"ref":"customization/","tf":0.015873015873015872},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"k":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}}}}},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"./":{"ref":"./","tf":0.012345679012345678}}}}}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"r":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889}}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"k":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}}}},"c":{"docs":{},"u":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"l":{"docs":{},"e":{"docs":{"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.016042780748663103},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"s":{"docs":{},".":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"cli/":{"ref":"cli/","tf":0.00267379679144385}}},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581}}},":":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"l":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},"n":{"docs":{},"d":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}},"a":{"docs":{},"l":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},".":{"docs":{"api/":{"ref":"api/","tf":0.008912655971479501}}},"e":{"docs":{},"d":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0053475935828877}}},".":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}}}},"x":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"l":{"docs":{},"a":{"docs":{},"g":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.0053475935828877}}}},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"r":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}}},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"l":{"docs":{},"l":{"docs":{"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216}}},"s":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"]":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"r":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"i":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.0053475935828877}},"e":{"docs":{},"d":{"docs":{},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"u":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}},"r":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"l":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"t":{"docs":{},"h":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"c":{"docs":{},"e":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"e":{"docs":{},"w":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"contributing/":{"ref":"contributing/","tf":0.00963855421686747}}}}}},"e":{"docs":{},"d":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"l":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"presets/":{"ref":"presets/","tf":0.0044444444444444444},"api/":{"ref":"api/","tf":0.0017825311942959}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"i":{"docs":{},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.03474903474903475}},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.015444015444015444}}}}},"@":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"n":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}},"z":{"docs":{},"i":{"docs":{},"p":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"o":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"a":{"docs":{},"l":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"e":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"o":{"docs":{},"d":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"e":{"docs":{},":":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"r":{"docs":{},"e":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"installation.html":{"ref":"installation.html","tf":0.039603960396039604},"usage.html":{"ref":"usage.html","tf":0.014957264957264958},"presets/":{"ref":"presets/","tf":0.013333333333333334},"presets/neutrino-preset-react/":{"ref":"presets/neutrino-preset-react/","tf":5},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"cli/":{"ref":"cli/","tf":0.0053475935828877}},".":{"docs":{"installation.html":{"ref":"installation.html","tf":0.009900990099009901}}},"\"":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},",":{"docs":{"presets/":{"ref":"presets/","tf":0.008888888888888889}}},"'":{"docs":{},"]":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}},"h":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"d":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"s":{"docs":{},",":{"docs":{"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"'":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}},":":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}},"s":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"g":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}}},"l":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"e":{"docs":{},"v":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"a":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"g":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}},"r":{"docs":{},"t":{"docs":{"customization/":{"ref":"customization/","tf":0.015873015873015872}}}},"l":{"docs":{},"v":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"api/":{"ref":"api/","tf":0.008912655971479501},"cli/":{"ref":"cli/","tf":0.00267379679144385}},"e":{"docs":{},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}},"d":{"docs":{},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"api/":{"ref":"api/","tf":0.0017825311942959}}},"!":{"docs":{},"'":{"docs":{},")":{"docs":{},")":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"api/":{"ref":"api/","tf":0.0017825311942959},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.00963855421686747},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"api/":{"ref":"api/","tf":0.0053475935828877},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.019230769230769232}}}}}},"i":{"docs":{},"d":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"e":{"docs":{},"d":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}},"t":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.016042780748663103}},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918},"cli/":{"ref":"cli/","tf":0.00267379679144385},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}},"p":{"docs":{},"o":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.011583011583011582}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"y":{"docs":{},".":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},",":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.007722007722007722}}}}}}}}},"r":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.007692307692307693}}}}},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.011538461538461539}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"contributing/":{"ref":"contributing/","tf":0.007228915662650603},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"u":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.019801980198019802},"usage.html":{"ref":"usage.html","tf":0.014957264957264958},"project-layout.html":{"ref":"project-layout.html","tf":0.010582010582010581},"presets/neutrino-preset-node/":{"ref":"presets/neutrino-preset-node/","tf":0.043478260869565216},"cli/":{"ref":"cli/","tf":0.0106951871657754},"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},".":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959},"cli/":{"ref":"cli/","tf":0.00267379679144385}}}}}},"l":{"docs":{},"e":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},".":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"o":{"docs":{},"o":{"docs":{},"t":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625}}},"m":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{"contributing/":{"ref":"contributing/","tf":0.004819277108433735}}}},"c":{"docs":{},"e":{"docs":{},",":{"docs":{"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677},"contributing/code-of-conduct.html":{"ref":"contributing/code-of-conduct.html","tf":0.0038461538461538464}}}}}}},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"installation.html":{"ref":"installation.html","tf":0.039603960396039604},"usage.html":{"ref":"usage.html","tf":0.00641025641025641},"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}},"o":{"docs":{},"u":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"!":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}},"\"":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"\"":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.01855287569573284},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}},"m":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{"usage.html":{"ref":"usage.html","tf":0.017094017094017096},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0074211502782931356},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125}},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.016697588126159554}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"/":{"docs":{},"\\":{"docs":{},"\\":{"docs":{},".":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"$":{"docs":{},"/":{"docs":{},"\"":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"^":{"2":{"docs":{},".":{"2":{"docs":{},".":{"3":{"docs":{},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"docs":{}}},"7":{"docs":{},".":{"2":{"docs":{},"\"":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"docs":{}}},"docs":{}}},"docs":{}},"_":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"v":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"c":{"docs":{},"d":{"docs":{},"n":{"docs":{},".":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"\"":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0055658627087198514}},"\"":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"r":{"docs":{},"\"":{"docs":{},":":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},":":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}}},"#":{"docs":{"usage.html":{"ref":"usage.html","tf":0.008547008547008548}}},"[":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}},"\"":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}},"m":{"docs":{},"j":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"]":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"]":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"b":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},"]":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}}}}}}}},"]":{"docs":{},",":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}},"]":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}}}},"/":{"docs":{},"*":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"]":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}}}}}}}},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"]":{"docs":{"cli/":{"ref":"cli/","tf":0.013368983957219251}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},":":{"docs":{"cli/":{"ref":"cli/","tf":0.008021390374331552}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},".":{"docs":{},"]":{"docs":{"cli/":{"ref":"cli/","tf":0.0053475935828877}}}}}}}}}}},"]":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"k":{"docs":{},"a":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"presets/neutrino-preset-karma/":{"ref":"presets/neutrino-preset-karma/","tf":5},"cli/":{"ref":"cli/","tf":0.0053475935828877}},"\"":{"docs":{"usage.html":{"ref":"usage.html","tf":0.004273504273504274},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137}}}}},"e":{"docs":{},"e":{"docs":{},"p":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444},"contributing/":{"ref":"contributing/","tf":0.00963855421686747}}}},"y":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}},"{":{"docs":{"usage.html":{"ref":"usage.html","tf":0.019230769230769232},"customization/simple.html":{"ref":"customization/simple.html","tf":0.08163265306122448},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.025},"api/":{"ref":"api/","tf":0.0035650623885918}}},"}":{"docs":{"usage.html":{"ref":"usage.html","tf":0.017094017094017096},"customization/simple.html":{"ref":"customization/simple.html","tf":0.07792207792207792},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0035650623885918}},",":{"docs":{"usage.html":{"ref":"usage.html","tf":0.002136752136752137},"customization/simple.html":{"ref":"customization/simple.html","tf":0.0037105751391465678},"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},")":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0017825311942959}},";":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}},";":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125}}}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}}}}}},"h":{"docs":{},"g":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{},"s":{"docs":{},".":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"{":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0106951871657754}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"j":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},"(":{"docs":{},"'":{"docs":{},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{},"'":{"docs":{},",":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}}}}}}}},"m":{"docs":{},"j":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}},".":{"docs":{},".":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125},"api/":{"ref":"api/","tf":0.0035650623885918}}}},"j":{"docs":{},"s":{"docs":{},"x":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"'":{"docs":{},")":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}}}}}}}}}}}}}}}},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"api/":{"ref":"api/","tf":0.0035650623885918}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"api/":{"ref":"api/","tf":0.0071301247771836}}}}}}}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"(":{"docs":{},"'":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"_":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},".":{"docs":{},"j":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}}}}}}}},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"customization/simple.html":{"ref":"customization/simple.html","tf":0.0018552875695732839}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"project-layout.html":{"ref":"project-layout.html","tf":0.005291005291005291}},"l":{"docs":{},"i":{"docs":{"presets/":{"ref":"presets/","tf":0.0044444444444444444}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}},"y":{"docs":{},",":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}},"s":{"docs":{},":":{"docs":{"contributing/":{"ref":"contributing/","tf":0.0024096385542168677}}}}}}}}}}}},"(":{"docs":{},"{":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.003125}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}},"/":{"docs":{},"/":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.00625},"api/":{"ref":"api/","tf":0.0017825311942959}}}},"=":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"api/":{"ref":"api/","tf":0.0106951871657754}},">":{"docs":{"customization/advanced.html":{"ref":"customization/advanced.html","tf":0.0125},"api/":{"ref":"api/","tf":0.0142602495543672}}}},"'":{"docs":{},"n":{"docs":{},"e":{"docs":{},"u":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"'":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},";":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}}}},"*":{"docs":{},"/":{"docs":{},"]":{"docs":{},",":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}}}}},">":{"docs":{"api/":{"ref":"api/","tf":0.0017825311942959}}},"❯":{"docs":{"cli/":{"ref":"cli/","tf":0.01871657754010695},"contributing/development.html":{"ref":"contributing/development.html","tf":0.03474903474903475}},".":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}},":":{"docs":{},"t":{"docs":{},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{},":":{"docs":{"contributing/development.html":{"ref":"contributing/development.html","tf":0.003861003861003861}}}}}}}}},"length":2102},"corpusTokens":["\"/\\\\.less$/\",","\"^2.2.3\"","\"^2.7.2\",","\"__dirname\":","\"__filename\":","\"babel\".","\"build\":","\"compile\"","\"compress\":","\"config\":","\"dependencies\":","\"devserver\":","\"entry\":","\"error\"","\"extensions\":","\"feature:","\"hints\":","\"https://cdn.example.com/assets/\"","\"less","\"less\":","\"loader\":","\"mock\"","\"mock\",","\"module\":","\"modules\":","\"neutrino","\"neutrino\":","\"node\":","\"noiecompat\":","\"options\":","\"output\":","\"performance\":","\"port\":","\"presets\":","\"publicpath\":","\"react","\"react\",","\"resolve\":","\"rule\":","\"scripts\":","\"start\":","\"styles\":","\"test\":","\"vendor\":","#","'neutrino';","'production';","'standard","(failed)","({","*/],",".","...","._devserver()",".build()",".catch(err",".config",".emitforall('custom",".gitignore,",".hgignore,",".jsx",".loader('babel',",".loader.j",".mj",".rule('compile')",".start()",".test()",".test({",".test.js.",".then(()","//","0.","1.","1.4,","4.0.0","4.2;","9000","9000.",":tada:","=","=>",">","[","[\".loader.js\"],","[\".mjs\"],","[\"custom_modules\"]","[\"web_loaders\"]","[/*","[],","[]]","[array]","[boolean]","[default:","[files..]","]","__dirnam","__filenam","_devserv","_test.j","a_test.j","abid","abov","abusive,","accept","accepts.","access","account","account,","account.","accumul","act","action","actual","ad","adapt","add","addit","address","address,","adopt","advanc","afford","afterwards.","again,","age,","align","allow","alreadi","alternative?","alway","anoth","answer","anyon","anyth","anything,","api","api,","api.","api.build();","api.getwebpackoptions();","api.handleerrors(err,","app","appearance,","appli","applic","applicable,","application.","appoint","appropri","arg","argument","array","array,","arrays,","ask","aspect","assess","asset","assets,","assist","attach","attack","attempt","attent","attribut","augment","automat","avail","avoid","b","b_test.j","babel","back","bake","ban","base","basi","basis.","be","begin","behavior","behavior.","believ","below","benefit.","best","between","bodi","boilerpl","boilerplates,","boilerplates.","boolean.","both","box","branch","branch.","bring","broken","budgets.","bug","bugs,","build","build\"","build\",","build()","build(args)","build,","build.","build/'))","building,","building.","builds.","built","bundl","bundle,","bundles,","burden","button","cach","cached,","call","calls.","capabilities.","capabl","case,","case.","cases.","caus","cd","chain","chain,","chain.","chang","change?","changes,","changes.","channel","check","checkout","choos","circumstances.","clarifi","clear","cli","cli,","client","client?","clone","code","code,","code.","codebase.","collect","combin","command","command.","commands:","comments,","commit","commited.","commits,","common","commonli","commun","community.","compani","companion","compat","compil","complaint","complet","complete,","completed.","computer,","con","concept","conduct","conduct,","confidenti","config","config,","config.","config.neutrino","config.neutrino,","config.preset","config.presets,","config.presets.","configur","configuration,","configuration.","configurations,","configurations.","conform","congrats!","conjunct","consid","consist","consol","console.error(err));","console.log('al","console.log('exit","console.log('exiting!'));","console.log('sav","console.log('th","const","construct","constructor","consum","contact","contain","context","continu","contrari","contribut","contribution,","contributor","control.","conveni","convent","conventions.","convert","copi","copy,","core","core,","correct","cost","coupl","course!","coven","covenant,","covenant.","covenant.org/version/1/4","cover.","creat","created,","created.","critic","crop","css","cumbersome,","current","custom","custom.j","custom.js\"","custom_modul","dash","data","data,","data.","data:","date","deem","default","default.","defin","definit","denot","depend","dependencies.","deployment.","depth","describ","descript","desir","desire,","destination.","detail","detail:","details.","determin","dev","dev,","dev.","dev.git","devdepend","develop","development.","devserv","devserver,","differ","differentiate,","difficult","directli","directori","directories:","directory'","directory,","directory.","disability,","discov","discuss","discuss!","discussion,","discussions,","display","distribut","do","do?","document","documentation,","documentation.","doesn't","dom\"","dom\",","don't","done","done,","dramat","dry.","duplic","duplication.","dure","e","e.g.","each","earlier","easier","easili","ecosystem,","edit,","edits,","effect","effort","electron","eli@mozilla.com.","else,","emitforall('build')","emitforall(eventname,","empathi","encapsul","encourag","end","enforc","enhanc","enough","ensur","enter","entir","entri","entry,","env","environ","environment,","err","error","error,","errors.","es","escap","especi","ethnicity,","evalu","even","event","event')","event.","events,","events;","everyon","everyone'","everyone,","exampl","example,","example:","exceed","except","exclud","execut","executing.","exist","exit","exit.","expand","expans","expect","expectations?","experi","experience,","explicit","export","expression,","extend","extend,","extended,","extens","extension.","extern","externally.","face","fail","failed!');","failur","fair","fair,","fairli","faith","fall","fals","false]","familiar","fantast","far","featur","feedback.","feel","fetch","few","field","file","file.","files,","files.","files:","fill","final","find","finish,","finish.","finished,","finished.","first","first,","fix","fixtur","flag","fluent","focu","focus","follow","for.","forc","fork","form","format","fortun","forward,","foster","found,","free","function","functionality.","further","future.","gather","gender","gener","get","getwebpackopt","getwebpackoptions()","getwebpackoptions(),","git","git@github.com:user/neutrino","github","give","given","globals.","go","goal","goe","good","govern","gracefulli","great","guid","guide,","guide:","guidelin","guidelines,","guidelines.","gzip","handl","handleerrors(err,","handler","handlers.","happen.","happen?","happened,","happi","har","harass","harassing,","harmful.","hatch","have","head","help","help!","help:","here","here,","hot","http://contributor","https://github.com/mozilla","i.e.","idea","ideas,","ident","imageri","images,","import","imports:","improv","inappropri","inappropriate,","incident.","includ","include:","inclus","independ","index.j","individu","individually.","inform","information,","inherit","inherit,","initi","insid","instal","install.","instanc","instance,","instanti","instead","instruct","instructions.","insulting/derogatori","integr","intend","interact","interest","interfac","intern","introduct","investig","invok","involv","isn't","issu","issue,","issues,","issues.","it,","it.","itself","javascript","jest","jest,","js","json,","jsx","karma","karma\"","karma\",","karma,","keep","key","know","languag","last","later","latest","layout","layout.","lead","leadership.","left","less","let","let'","level","librari","line","line.","linter","list","listen","live","load","load.","load:","loader","loader\",","loader\":","local","locat","lock","log","look","lot","m","made","mail","main","maintain","maintainers.","mainten","major","make","make.","manag","mani","manipul","manipulated,","map","master","master.","match","mean","media","meet","member","merg","merged.","message.","method","minim","minimum","miss","mocha","mocha.","mock","mocks:","mode","mode,","modern","modif","modifi","modifications.","modul","module,","module.","module.export","module.rul","module.rule.load","moment","moment.","monorepo","more","move","mozilla","much","multipl","name","name,","names,","nationality,","necessari","necessary.","need","need.","needed.","nest","neutrino","neutrino!","neutrino'","neutrino();","neutrino(['neutrino","neutrino,","neutrino.","neutrino.config","neutrino.config.modul","neutrino.config.resolve.extensions.delete('.jsx');","neutrino/neutrino","neutrino?","new","node","node.j","node.js,","node_env","node_modules,","non","normal","note","note:","noth","now","npm","npm.","number","object","object.","oblig","occur","offensive,","offici","offlin","oftentim","omit","on","on.","onc","once,","ones,","onlin","onto","open","oper","operation.","oppos","opt","option","options.","options.presets[0][1].targets.nod","options:","order","orient","orientation.","origin","other","others'","otherwis","out","output","over","overflow","overli","overrid","overridden","overrides,","overrides.","packag","package.json","package.json,","package.json.","packages,","page","paradigm","parameter,","parser.","part","particip","particular","pass","passed'))","passed'));","path","path.","pattern","pattern,","patterns,","payload)","per","perform","perman","permiss","person","person,","physic","pick","pleas","pleasant,","pledg","point","point(s)","points,","points.","polici","polit","polyfil","popul","popular","port","posit","possibl","possible,","possible.","post","potenti","practic","prebuild","preced","precedence.","prefer","preferences.","prepar","prepend","present","preset","preset'","preset,","preset.","preset:","preset_a","preset_b","preset_modul","preset_pkg","presets,","presets.","presets:","presets?","prestart","pretest","previou","primarili","prior","privat","pro","probabl","process","process,","process...'));","process.env.node_env","product","production.","profession","program","programmatically.","project","project'","project,","project.","project:","project;","projects,","projects.","promis","promise.","properli","properti","property/valu","proposals.","provid","public","publish","pull","push","pushed.","put","qualiti","quality,","question","questions:","quick","quickli","race,","rais","re","reach","react","react\"","react\",","react']);","react,","react.","read","readabl","readable.","reason","reasons,","receiv","recommend","refer","regard","regardless","reiter","reject","rel","relat","relev","relianc","religion,","reload","remot","remov","remove,","removed.","render","repercuss","replac","repo","report","repositori","repositories.","repository,","repository.","repres","represent","request","request,","request.","requests,","requests.","requir","require('neutrino');","require:","rerun","resid","resolv","resolve.","resolve.extens","resolve.modules,","resolved!'));","resolved.","resolveload","resolveloader.extens","resolveloader.modules,","resort","resourc","respect","respons","result","return","return,","review","right","room","root","router","rule","rule.","run","run.","runner","same","same,","sampl","satisifi","save","scaffold","scope","scratch.","script","scripts.build","scripts.start","scripts.test","scripts:","section","sections:","see","separ","separately.","serv","server","set","setup","sexual","share","show","sigint","signal","similar","similarly.","simpl","simpler","simpli","singl","situat","size,","small","so,","social","solv","someth","sourc","space","specif","specifi","spin","src","stack","standard","start","start\",","start()","start().","start(args)","start.","start;","started.","stat","static","stats)","stats);","statu","step","steps,","still","stop.","stopped,","store","string","strive","structur","style","style\"","style'","style.","stylesheets,","submit","subsequ","substitut","succeeded,","success","such","suit","suitabl","support","sure","surround","switch","symbol","sync","system","tailor","take","target","team","team,","team.","technic","technique.","tediou","tell","temporari","temporarili","test","test\"","test()","test(args)","test,","test.","test:","testing.","testing_modul","tests,","tests.","thank","that'","thing","think:","those","though,","threatening,","three","through","thrown.","time","time.","to:","togeth","tool","top","toward","transpar","treated.","tri","triag","trigger","trolling,","true","true,","tutorials,","tweak","two","type","types,","types.","typic","unaccept","understand","unfortun","unnecessarily.","unwelcom","up","updat","upfront","upstream","us","usag","usage.","usage:","used.","user","usernam","users?","using,","using.","using?","usual","v4.2.","v6+,","v6.9.","valu","vanilla","variabl","variable,","varieti","variou","vendor","verbos","veri","verifi","version","version.","version?","versions?","via","viewpoint","wait","want","watch","watch:","watcher","watcher.","way","ways.","web","web_load","webpack","webpack,","webpack.","welcom","well","wiki","wish","with,","within","within,","without","won't","work","work.","wrap","write","writing,","yarn","you!","you.","zero","{","}","})","});","},","};","❯","❯."],"pipeline":["stopWordFilter","stemmer"]},"store":{"./":{"url":"./","title":"Introduction","keywords":"","body":"\n\nCreate and build modern JavaScript applications with zero initial configuration\nThink: Webpack, but with presets. That's Neutrino.\n\nNeutrino is a companion tool which lets you build web and Node.js applications with shared presets or configurations. \nIt intends to make the process of initializing and building projects much simpler by providing minimal development\ndependencies. \nNeutrino uses Webpack to build both web and Node.js projects by providing complete build presets which can be shared\nacross targets and projects. You can use Neutrino base presets to get started building a variety of projects, create\nyour own presets by extending the Neutrino core ones to be shared across your own projects or even by the community.\nPresets can even be manipulated on a project-by-project basis to handle almost any build situation your preset doesn't\ncover.\n"},"installation.html":{"url":"installation.html","title":"Installation","keywords":"","body":"Installing Neutrino\nRequirements\nInstalling Neutrino requires Node.js v6+, and either Yarn or\nnpm. At a minimum you will be installing Neutrino and a Neutrino preset, such as neutrino-preset-react.\nYarn Installation\nRun the following command inside your project directory. Substitute PRESET_PKG with the name of the preset\nyou wish to install.\nyarn add --dev neutrino PRESET_PKG\n\nFor example, if you wanted to build your project using Neutrino's React preset:\nyarn add --dev neutrino neutrino-preset-react\n\nnpm Installation\nRun the following command inside your project directory. Substitute PRESET_PKG with the name of the preset\nyou wish to install.\nnpm install --save-dev neutrino PRESET_PKG\n\nFor example, if you wanted to build your project using Neutrino's React preset:\nnpm install --save-dev neutrino neutrino-preset-react\n\nGetting started\nPlease continue through the documentation for instructions on Neutrino usage and default project layout.\n"},"usage.html":{"url":"usage.html","title":"Usage","keywords":"","body":"Usage\nNeutrino is a command-line tool that wraps Webpack in order to support building JavaScript projects\nbased on shared configuration presets. You can use Neutrino within your project, preferably using\nscripts defined in your project's package.json.\nSetup\nAfter completing the installation of Neutrino and your Neutrino preset, you will\nwant to define some scripts in your project's package.json in order to simply build your project.\nIn a typical project:\n\nscripts.start would be the command you wish to run during development\nscripts.build would be the command you wish to run to create a production bundle\nscripts.test would be the command you wish to run to execute tests\n\nUsing these script targets may not be suitable for every project; know that they are just\ntypical recommendations for script target names, you may choose a different name if desired\nfor your project.\nBuilding for development\nNeutrino provides the command neutrino start for creating a bundle during development. Using\nneutrino start sets the Node.js environment to development using the NODE_ENV environment variable,\nwhich is available in your project source code. Depending on the presets you are using, neutrino start\nmay also spin up a development server with hot module reloading capabilities.\nCheck the documentation of your preset for details.\nUsage:\n# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react\nneutrino start --presets PRESET_MODULE\n\nPutting this into your package.json will allow you to build your project using either\nyarn start or npm start. Using neutrino-preset-react as an example:\n{\n \"scripts\": {\n \"start\": \"neutrino start --preset neutrino-preset-react\"\n }\n}\n\nBuilding for production\nNeutrino provides the command neutrino build for creating a bundle for production deployment.\nUsing neutrino build sets the Node.js environment to production using the NODE_ENV environment variable,\nwhich is available in your project source code. See the documentation for your preset for details regarding additional\nsteps after your build is completed.\n# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react\nneutrino build --presets PRESET_MODULE\n\nPutting this into your package.json will allow you to build your project using either\nyarn build or npm run build. Using neutrino-preset-react as an example:\n{\n \"scripts\": {\n \"build\": \"neutrino build --presets neutrino-preset-react\"\n }\n}\n\nBuilding and running tests\nNeutrino provides the command neutrino test for invoking a set of tests included in your project.\nUsing neutrino test sets the Node.js environment variable to test using the NODE_ENV environment\nvariable, which is available in your project source code. How your source code is built and consumed from tests\nis determined by the preset your are using. Running suites that are built the same as source files are encouraged\nto use a Neutrino-compatible preset. Neutrino currently provides three core testing presets: Karma, Jest, and Mocha.\n# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react\n# TESTING_MODULE is the name of another preset to build with, e.g. neutrino-preset-karma\nneutrino build --presets PRESET_MODULE TESTING_MODULE\n\nPutting this into your package.json will allow you to test your project using either\nyarn test or npm test. Using neutrino-preset-react and neutrino-preset-karma as an example:\n{\n \"scripts\": {\n \"test\": \"neutrino test --presets neutrino-preset-react neutrino-preset-karma\"\n }\n}\n\nUsing the command neutrino test will execute every test file located in your\ntesting directory. You may also provide to this command the specific test files you wish\nto run individually. It is important to note that when combined with the --presets parameter, you should use two\ndashes after the last preset to denote the end of the presets and the beginning of the test files.\nneutrino test --presets PRESET_A PRESET_B -- a_test.js b_test.js\n\nUsing multiple presets\nAll Neutrino commands support the --presets command line parameter, but having to specify this for each script target\ncan be cumbersome, especially if you have many presets. Fortunately Neutrino also supports specifying presets using the\nconfig.presets field in your project's package.json file. By omitting the --presets flag and specifying a\nconfig.presets array, every call to a Neutrino command will look up which presets are configured in your package.json.\n{\n \"config\": {\n \"presets\": [\n \"neutrino-preset-react\",\n \"neutrino-preset-karma\"\n ]\n },\n \"scripts\": {\n \"start\": \"neutrino start\",\n \"build\": \"neutrino build\",\n \"test\": \"neutrino test\"\n }\n}\n\n"},"project-layout.html":{"url":"project-layout.html","title":"Project Layout","keywords":"","body":"Project Layout\nOut of the box Neutrino presets expect a project to have a particular structure in order to make the\ndevelopment process for new projects as quick as possible. This is broken up into three directories:\n\nSource code\nBuild assets\nTesting\n\nEach of these directories are set up via convention by a Neutrino preset, but each can be customized as\ndesired by overriding the preset's configuration or using a different preset. See\nCustom Configuration for detailed instructions.\nSource Code\nBy default Neutrino presets expect all project source code to live in a directory named src in the\nroot of the project. This includes JavaScript files, CSS stylesheets, images, and any other assets\nthat would be available to your compiled project.\nWhen running your project or creating a build bundle, a preset will look for this src directory for\nthe entry point(s) to your application and use this as the relative location for finding other assets\nnecessary for creating your builds.\nBuild Assets\nWhen creating a build bundle, a preset will put the compiled assets, including any generated\nJavaScript files, into a directory named build by default. Typically your Neutrino preset will copy\nany non-JavaScript files from the source directory over to the build directory, allowing you to maintain\nthe same relative path structure for static assets as is used for the source files.\nNormally most projects will exclude checking in this build directory to source control.\nBe sure to add this directory to your project's .gitignore, .hgignore, or similar file.\nTesting\nNeutrino presets by default expect all tests to be located in a directory named test. In order to make the\nseparation between tests and test fixtures or harnesses easier to differentiate, Neutrino presets also\nusually look for test files ending in _test.js or .test.js. See your specific test preset for more\ndetailed information about running tests and other conventions.\n"},"presets/":{"url":"presets/","title":"Presets","keywords":"","body":"What are presets?\nA preset is a Neutrino-compatible configuration capable of building, modifying\nthe build process, or interacting with a project as a result of building.\nNeutrino provides a few core presets to quickly get started building some popular project\ntypes, but anyone can inherit, extend, and modify these presets and tailor them to their project,\nteam, or company preferences. You can even create your own presets from scratch.\nIf you are familiar with Babel presets, Neutrino presets work similarly. For example,\ngiven the Babel preset babel-preset-react, you can compile React code with JSX\nto vanilla JavaScript calls. Neutrino adopts this same concept by adapting Webpack into\na tool that understands configurations-as-packages, i.e. presets. Many more aspects of\ndevelopment surround building a complete React project, for which Webpack is commonly used.\nBy encapsulating the common needs of a project type into a preset, Neutrino allows you to\navoid the upfront cost of configuring and instead focus on project development.\nNot every project is the same, and oftentimes small tweaks need to be made to the build\nconfiguration in order to meet this need. Fortunately Neutrino presets can be modified and\nextended directly from the project you are building. No need to be locked in to a particular\npattern, and no escape hatches that force you into maintaining the entire configuration should\nyou need to make changes.\nPresets can be easily distributing by publishing them to npm or GitHub and installing them\nin your project. This also allows others to discover and build projects based on your own\npresets.\nWhy not a boilerplate or alternative?\nBoilerplates are great resources for scaffolding out application-specific code which\nwould be difficult or tedious to generate for every project. Unfortunately many projects\nalso bake in build configuration into this process, causing a lot of duplication. If you\nneed to make a change to your build steps, you are forced to make that change across all\nyour similar projects. Using a preset rather than a boilerplate keeps this process DRY.\nTools like Create React App have\nbeen fantastic improvements to the tooling ecosystem, but unfortunately only works on specific\nenvironments like React, and do not allow simple extensibility of the build configuration. To\nanswer this new and similar projects are cropping up to build different types of projects,\noften duplicating efforts which miss out on the best practices to share with the other project\ntypes.\n"},"presets/neutrino-preset-web/":{"url":"presets/neutrino-preset-web/","title":"Web Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-react/":{"url":"presets/neutrino-preset-react/","title":"React Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-node/":{"url":"presets/neutrino-preset-node/","title":"Node.js Preset","keywords":"","body":"heading\nImportant Note: At the time of writing, Neutrino's Node preset does not support watch\ncompilation with neutrino start; it will instead fall back to running a build with the NODE_ENV\nenvironment variable set to development.\n"},"presets/neutrino-preset-karma/":{"url":"presets/neutrino-preset-karma/","title":"Karma Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-mocha/":{"url":"presets/neutrino-preset-mocha/","title":"Mocha Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-jest/":{"url":"presets/neutrino-preset-jest/","title":"Jest Preset","keywords":"","body":"heading\n"},"presets/neutrino-preset-base/":{"url":"presets/neutrino-preset-base/","title":"Base Preset","keywords":"","body":"heading\n"},"customization/":{"url":"customization/","title":"Customization","keywords":"","body":"Neutrino Customization\nNo two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications\nto the way your Neutrino preset is building your project. Neutrino provides two ways you can augment a preset in the\ncontext of a project without resorting to creating and publishing an entirely independent preset.\nSimple Customization\nBy defining a configuration object within your package.json, Neutrino will merge this information with that provided by\nyour preset, effectively overriding those options with your custom data.\nAdvanced Customization\nYou can also create a configuration override directly in your project which can extend the presets you are using.\n\nContinue for details on each technique.\n"},"customization/simple.html":{"url":"customization/simple.html","title":"Simple","keywords":"","body":"Simple Neutrino Customization\nNo two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications\nto the way your Neutrino preset is building your project. By defining a configuration object within your package.json,\nNeutrino will merge this information with that provided by your preset, effectively overriding those options with your\ncustom data.\nPrepare package.json\nFirst, you will need to define a config section within your package.json. You\nmay have already done this if you\nspecified your presets through the config as opposed to flags through scripts:\n{\n \"config\": {\n \"presets\": [\n \"neutrino-preset-react\",\n \"neutrino-preset-karma\"\n ]\n },\n \"scripts\": {\n \"start\": \"neutrino start\",\n \"build\": \"neutrino build\"\n }\n}\n\nAdd a new property to config named neutrino. This will be an object where we can provide configuration data:\n{\n \"config\": {\n \"presets\": [],\n \"neutrino\": {\n\n }\n }\n}\n\nPopulate this object with configuration overrides. This is not a Webpack configuration, but rather a Neutrino-compatible\nobject based on webpack-chain.\nUsage\nEntries\nAdd files to named entry points, or define new entry points. This is a key named entry, with a value being an object.\nThis maps to points to enter the application. At this point the application starts executing.\nExample: Define an entry point named vendor that bundles React packages separately from the application code.\n{\n \"config\": {\n \"neutrino\": {\n \"entry\": {\n \"vendor\": [\n \"react\",\n \"react-dom\",\n \"react-hot-loader\",\n \"react-router-dom\"\n ]\n }\n }\n }\n}\n\nModule\nThe module object defines how the different types of modules within a project will be treated. Any additional\nproperties attached to module not defined below will be set on the final module configuration.\nModule Rules\nUsing module.rule creates rules that are matched to requests when modules are created. These rules can modify how the\nmodule is created. They can apply loaders to the module, or modify the parser. \nUsing module.rule.loader allows to you define the Webpack loader and its options for processing a particular rule.\nThis loader is usually a dependency or devDependency of your project. Each loader object can specify a property\nfor the string loader and an options object.\nExample: Add LESS loading to the project.\n{\n \"dependencies\": {\n \"less\": \"^2.7.2\",\n \"less-loader\": \"^2.2.3\"\n },\n \"config\": {\n \"neutrino\": {\n \"module\": {\n \"rule\": {\n \"styles\": {\n \"test\": \"/\\\\.less$/\",\n \"loader\": {\n \"less\": {\n \"loader\": \"less-loader\",\n \"options\": {\n \"noIeCompat\": true\n }\n }\n }\n }\n }\n }\n }\n }\n}\n\nOutput\nThe output object contains a set of options instructing Webpack on how and where it should output your bundles,\nassets, and anything else you bundle or load with Webpack. This option can be any property/value combination that\nWebpack accepts.\nExample: Change the public path of the application.\n{\n \"config\": {\n \"neutrino\": {\n \"output\": {\n \"publicPath\": \"https://cdn.example.com/assets/\"\n }\n }\n }\n}\n\nNode\nUse node to customize the Node.js environment using polyfills or mocks:\nExample: mock the __filename and __dirname Node.js globals.\n{\n \"config\": {\n \"neutrino\": {\n \"node\": {\n \"__filename\": \"mock\",\n \"__dirname\": \"mock\"\n }\n }\n }\n}\n\nDevServer\nUse devServer to customize webpack-dev-server and change its behavior in various ways.\nExample: gzip the application when serving and listen on port 9000.\n{\n \"config\": {\n \"neutrino\": {\n \"devServer\": {\n \"compress\": true,\n \"port\": 9000\n }\n }\n }\n}\n\nResolve\nUse resolve to change how modules are resolved. When using resolve.extensions and resolve.modules, these should be\nspecified as arrays, and will be merged with their respective definitions used in inherited presets. Any additional\nproperties attached to resolve not defined below will be set on the final module configuration.\nExample: Add .mjs as a resolving extension and specify modules are located in a custom_modules directory.\n{\n \"config\": {\n \"neutrino\": {\n \"resolve\": {\n \"extensions\": [\".mjs\"],\n \"modules\": [\"custom_modules\"]\n }\n }\n }\n}\n\nResolveLoader\nUse resolveLoader to change how loader packages are resolved. When using resolveLoader.extensions and\nresolveLoader.modules, these should be specified as arrays, and will be merged with their respective definitions used\nin inherited presets. Any additional properties attached to resolveLoader not defined below will be set on the final\nmodule configuration.\nExample: Add .loader.js as a loader extension and specify modules are located in a web_loaders directory.\n{\n \"config\": {\n \"neutrino\": {\n \"resolve\": {\n \"extensions\": [\".loader.js\"],\n \"modules\": [\"web_loaders\"]\n }\n }\n }\n}\n\nAdditional configuration\nAny top-level properties you set on config.neutrino will be added to the configuration.\nExample: Change the Webpack performance options to error when exceeding performance budgets.\n{\n \"config\": {\n \"neutrino\": {\n \"performance\": {\n \"hints\": \"error\"\n }\n }\n }\n}\n\nAdvanced Configuration\nWith the options defined above in your package.json, you can perform a variety of build customizations on a per-project\nbasis. In the event that you need more customization than what is afforded through JSON, consider either switching to\nadvanced configuration, or creating your own preset.\n"},"customization/advanced.html":{"url":"customization/advanced.html","title":"Advanced","keywords":"","body":"Advanced Neutrino Customization\nNo two JavaScript projects are ever the same, and as such there may be times when you will need to make modifications\nto the way your Neutrino preset is building your project. If you need more customization than can be afforded by\naugmenting your project's package.json, consider using this advanced configuration guide to modify your build as\nneeded.\nCreating a project-specific preset\nNeutrino configurations are backed by webpack-chain, a library for\nmaking modifications to a Webpack configuration using a fluent or chained API. When your project needs more advanced\nbuild overrides, you will be interacting with this API in order to perform modifications.\nFirst, we need to create a project-specific preset to make these changes. This can either be a JS file or a directory\nwith an index.js file. Since Neutrino uses Node.js and Webpack for interacting with presets, it is helpful to\nunderstand that this is a Node.js module. By exporting a function from your module, you will be provided with a Neutrino\ninstance for modifying the build. Let's create a file called neutrino-custom.js in the root of our example project:\n// neutrino-custom.js\nmodule.exports = neutrino => {\n // ...\n};\n\nAt the moment our custom configurator isn't doing anything, but it does get us far enough to be able to tell Neutrino\nto use it for additional configuration. Modify your package.json and add neutrino-custom.js as an additional preset.\nNote: Neutrino will attempt to load this module relative to the current working directory, which should be the root of\nyour project.\n{\n \"config\": {\n \"presets\": [\n \"neutrino-preset-react\",\n \"neutrino-preset-karma\",\n \"neutrino-custom.js\"\n ] \n },\n \"scripts\": {\n \"build\": \"neutrino build\"\n }\n}\n\nOther than actually changing the config, that is all the setup necessary for Neutrino to pick up your custom changes.\nConfiguring\nThe Neutrino instance provided to your custom configurator has a config property that is an instance of\nwebpack-chain. We won't go in-depth of all the configuration\npossibilities here, but encourage you to check out the documentation for webpack-chain for instruction on your\nparticular use case.\nThis neutrino.config is an accumulation of all configuration set up to this moment. Every Neutrino preset interacts\nwith and makes changes through this config, which is all available to you. For example, if you are using the presets\nneutrino-preset-react and neutrino-preset-karma, any options set can be extended, manipulated, or removed.\nExample: Neutrino's React preset adds .jsx as a module extension. Let's remove it.\nmodule.exports = neutrino => {\n neutrino.config.resolve.extensions.delete('.jsx');\n};\n\nExample: Neutrino's Node.js preset uses babel-preset-env to support Node.js v6.9. Let's change it to support back to\nv4.2. This preset has a rule named \"compile\" and a loader named \"babel\".\nmodule.exports = neutrino => {\n neutrino.config.module\n .rule('compile')\n .loader('babel', ({ options }) => {\n options.presets[0][1].targets.node = 4.2;\n\n return { options };\n });\n};\n\nPresets can also have their own custom data in addition to the Neutrino config. See your respective preset for details.\nAgain, rather than reiterate the documentation for webpack-chain here,\nplease refer to its documentation for all ways you can modify a config instance to solve your use cases.\n"},"api/":{"url":"api/","title":"API","keywords":"","body":"Neutrino API\nWhen using Neutrino via the CLI, it creates an instance of the Neutrino API which picks up\nany presets and arguments passed on the command line. If you desire, you can also create your own\ninstance of the Neutrino API and interact with it programmatically.\nInstantiation\nIn order to access the Neutrino API, you must require or import it and instantiate it, passing in any\npreset names or paths you wish to load:\nUsing require:\nconst Neutrino = require('neutrino');\nconst api = new Neutrino(['neutrino-preset-react']);\n\nUsing ES imports:\nimport Neutrino from 'neutrino';\n\nconst api = new Neutrino(['neutrino-preset-react']);\n\nEnvironment\nWhen using the CLI, environment variables are automatically set based on the command you are using.\nWhen using the API this is not the case, and you must set it prior to calling any build commands or\nloading any presets.\nprocess.env.NODE_ENV = 'production';\n\nconst api = new Neutrino();\napi.build();\n\nAPI\nConstructor\nWhen creating a Neutrino instance, you have the option of providing an array of presets for the API to attempt\nto load and merge configurations for. Each preset will attempt to be loaded from the current working directory's\nnode_modules, nested within, by name, or relative file path. If it cannot be found, an exception will be thrown.\nIn addition to any provided presets, Neutrino will also attempt to load configuration data from the package.json\nresiding in the current working directory. If this package.json contains an object at config.neutrino, this data\nwill be merged.\n.config\nWhen constructing a Neutrino instance, a property of .config is set to be a new instance of\nwebpack-chain. This property is then available to all presets, which\nsubsequently augment it with their specific options. Every preset added uses this single .config to store their data,\nmeaning that preset load order has an effect on which config values take precedence. Presets loaded later will override\nvalues set by earlier presets.\nstart(args)\nThe start() method is responsible for creating a development bundle, and when possible, starting a development\nserver or source watcher. Prior to starting this process, Neutrino will trigger and wait for prestart events to\nfinish. After it is complete, Neutrino will trigger and wait for start events to finish.\nIf the Neutrino config contains options for devServer, then a webpack-dev-server will be started. If it is\nconfigured for Node.js, then a build will be created, otherwise a Webpack source watcher will be started.\nCurrently any args passed to start() have no effect and will be passed through to any event handlers.\nThe start method will return a Promise which resolves after the build is done or development watcher has stopped,\nand all start events have finished.\napi\n .start()\n .then(() => console.log('Exiting!'));\n\nbuild(args)\nThe build() method is responsible for creating a bundle typically used for production. Prior to starting this process,\nNeutrino will trigger and wait for prebuild events to finish. After it is complete, Neutrino will trigger and wait for\nbuild events to finish.\nCurrently any args passed to build() have no effect and will be passed through to any event handlers.\nThe build method will return a Promise which resolves after the build is done and all build events have finished, or\nwill reject if there was a failure during building.\napi\n .build()\n .then(() => console.log('Saved to build/'))\n .catch(err => console.error(err));\n\ntest(args)\nThe test() method is responsible for gathering args needed for testing and triggering relevant events as a signal to\ntest presets that they may run. Using the test method does nothing other than triggering these events; without a\npreset listening for these events, nothing will happen. Prior to starting this process, Neutrino will trigger and wait\nfor pretest events to finish. After it is complete, Neutrino will trigger and wait for\ntest events to finish, in which test runners will do their work.\nAny args passed to test() are passed on to the event handles and typically have properties for an array of\nfiles to test, as well as a property for watching and rerunning tests.\nThe test method will return a Promise which resolves after all test events have finished, or\nwill reject if there was a failure during testing.\napi\n .test()\n .then(() => console.log('all passed'))\n .catch(err => console.error(err));\n\napi\n .test({\n files: [/* ... */],\n watch: true\n })\n .then(() => console.log('all passed'));\n\ngetWebpackOptions()\nWhile tools like webpack-chain provide a convenient API for creating Webpack configurations, this is not a format that\nis understandable by Webpack. With getWebpackOptions(), the webpack-chain instance at .config will be converted to\nan options object readable directly by Webpack. This call is cached, so subsequent calls to getWebpackOptions will\nresult in the config being rendered only once, but the cached value returned afterwards.\napi.getWebpackOptions(); // -> { ... }\n\nemitForAll(eventName, payload)\nTrigger a Promise-dependent event. For example, calling emitForAll('build') will trigger an event named build, and\neach event handler can return a Promise denoting when it is finished. When all events have finished, this call will\nresolve.\nThis method returns a Promise which resolves when all event handlers have also resolved.\napi\n .emitForAll('custom-event')\n .then(() => console.log('All custom-events have resolved!'));\n\nhandleErrors(err, stats)\nThis method is used primarily internally to create a consistent console output when errors occur in the build. It will\nlog the err property and any errors from stats if applicable, and return true or false depending on if there\nwere errors.\nThis method returns a Boolean.\nconst failed = api.handleErrors(err, stats);\n\nif (failed) {\n console.log('The build failed!');\n}\n\n_devServer\nThis method is used internally to generate an instance of webpack-dev-server during start(). It returns a promise that\nresolves when the process received a SIGINT event to stop.\napi\n ._devServer()\n .then(() => console.log('Exiting process...'));\n\n"},"cli/":{"url":"cli/","title":"CLI","keywords":"","body":"Neutrino CLI\nUsing the command-line interface is the preferred way of interacting with Neutrino. Let's take a look at its usage.\n--help\nUsing neutrino --help will bring up the following help guide:\n❯ neutrino --help\nCommands:\n start Build a project in development mode\n build Compile the source directory to a bundled build\n test [files..] Run all suites from the test directory or provided files\n\nOptions:\n --presets A list of Neutrino presets used to configure the build [array] [default: []]\n --version Show version number [boolean]\n --help Show help [boolean]\n\n--version\nUsing --version will output the current version of the Neutrino CLI to the console and exit.\n❯ neutrino --version\n4.0.0\n\n--presets\nThe --presets flag can be used in conjunction with any of the top-level commands to specify a collection of\npresets to load. These can be an npm package or a relative path to a module to load as a preset.\n❯ neutrino start --presets neutrino-preset-react neutrino-preset-karma\n\nThe Neutrino CLI will still attempt to load any presets defined in the project's package.json located at\nconfig.presets. Presets passed via the CLI --presets will take precedence over presets defined in\nconfig.presets, meaning that options set by package.json presets can have their values overridden by\n--presets presets.\nneutrino start\nUsing the command neutrino start builds a project in development mode, also starting a development server or source\nwatcher depending on the preset or config options used. This command sets the NODE_ENV environment variable to\ndevelopment.\nneutrino build\nUsing the command neutrino build builds a project in production mode, rendering static assets to the configured build\noutput destination. This command sets the NODE_ENV environment variable to production.\nneutrino test\nUsing the command neutrino test passes execution onto a test runner preset. It is up to the preset being used to\ndetermine how source files are built or provided to tests. See your particular test preset for details. This\ncommand sets the NODE_ENV environment variable to test.\nLooking at the --help for neutrino test:\n❯ neutrino test --help\nneutrino test [files..]\n\nOptions:\n --presets A list of Neutrino presets used to configure the build [array] [default: []]\n --version Show version number [boolean]\n --help Show help [boolean]\n --watch Watch source files for changes and re-run tests [boolean] [default: false]\n\nUsing the command neutrino test will execute every test file located in your\ntesting directory. You may also provide to this command the specific test files you wish\nto run individually. It is important to note that when combined with the --presets parameter, you should use two\ndashes after the last preset to denote the end of the presets and the beginning of the test files.\n❯ neutrino test a_test.js b_test.js\n\n❯ neutrino test --presets neutrino-preset-react neutrino-preset-karma -- a_test.js b_test.js\n\nYou can also pass a flag --watch to watch source files for changes and re-run tests, if your preset supports it.\n❯ neutrino test --watch\n\nExit codes\nWhen the CLI creates an instance of Neutrino, it waits for all commands to either resolve or reject their Promise.\nIf the command succeeded, the CLI will exit with code 0. If there was an error, the CLI will log the error\nto the console and exit with code 1. This makes it easier to use Neutrino commands for status reasons, such\nas failing a pull request on continuous integration if any tests fail or if there are linter errors.\n"},"contributing/":{"url":"contributing/","title":"Contributing","keywords":"","body":"Contributing\nSo, you want to contribute to Neutrino?\nThank you for wanting to help out with Neutrino! We are very happy that you want to contribute and have put together\nthis guide to help you get started. We want to do our best to help you make successful contribution and be part of our\nteam.\nParticipation Conduct\nIn order to ensure everyone has a fair, pleasant, and inclusive experience contributing to Neutrino, we ask that you\nabide by our community participation guidelines, based on the\nContributor Covenant. Please read and understand it for everyone's benefit.\nFollowing these guidelines helps to communicate that you respect the time of the developers managing\nand developing Neutrino. In return, we will show you respect in addressing your issue, assessing changes,\nand helping you finalize your pull requests.\nWhat we need\nThere is always room for improvement and expansion in Neutrino. Some things that could always help:\n\nTriaging and fixing bugs\nAdding tests to Neutrino which can help ensure it functions properly with new contributions\nKeeping core presets up to date with the best Webpack and Babel options\nExpanding documentation, writing tutorials, and creating example projects\nSomething else, of course!\n\nWhat we probably don't need\nWhile we are happy to review any contribution, there are some things that are best left as an external project:\n\nAdditional presets. While neutrino-dev does contain a number of core presets, we created and maintain these because\nthey were core to most of the projects we personally work on. If there are more presets you believe should be maintained\nby the core, then feel free to raise an issue and we can discuss! Most likely though, additional presets can be\nexternally maintained and published to npm. It still has the same reach potential as bringing it into the core, without\nraising the maintenance burden for Neutrino unnecessarily.\nScaffolding and boilerplates. The goal of Neutrino is to remove over-reliance on boilerplates, instead opting to\npush users into consuming presets. Neutrino itself will not add commands to scaffold out new projects or create\nboilerplate repositories. We do keep a collection of examples-as-documentation for getting started with Neutrino\npresets, but do not wish to govern project structure more than necessary. These types of projects can be maintained\nexternally.\n\nSupport\nNeutrino team members and contributors are here to help you! Should you need assistance or have questions in using\nNeutrino or its core presets, please consider asking on Stack Overflow or other channel rather than filing issues. We\nwould prefer to keep our GitHub issues clear for bugs, feature requests, discussions, and relevant information related\nto its development.\nGuidelines\n\nPlease make a good-faith effort to ensure that code that goes into neutrino-dev follows the existing patterns and\nquality that is already present in the repository.\nCreate issues for any major changes and enhancements that you wish to make. Discuss things transparently and get\ncommunity feedback.\nStrive for code to be readable. Prefer following functional programming paradigms over object-oriented ones where\npossible.\nKeep feature versions as small as possible, preferably one new feature per version.\n\nGetting started\nMost contributions will involve working with the neutrino-dev codebase. Please refer to the development\ndocumentation for technical details on getting started.\nFiling bugs and issues\nWhen filing an issue, try to answer these questions:\n\nWhat version of Neutrino are you using?\nAre you trying to use any presets? If so, which ones, and what versions?\nAre you using the Yarn client or the npm client? What version?\nWhat version of Node.js are you using?\nWhat operating system are you using?\nWhat did you do?\nWhat did you expect to happen?\nWhat actually happened, contrary to your expectations?\n\nFeature Requests or Enhancements\nPlease file an issue describing your request in detail:\n\nWhat is the goal of the change?\nWhat are the pros and cons of the change?\nCould this dramatically improve the experience of our users?\n\nPlease be open to discussion, and we will respect your time by fairly evaluating your request. In the event that your\nrequest is deemed to not be acceptable to move forward, please understand that isn't a criticism of you as a person,\nbut rather that the idea in its present form may not be right at this time. We respect you and your ideas, and will\nalways encourage contributors to continue to make proposals.\nCode review process\nCode is reviewed by Neutrino team members for quality, conformance to existing patterns, and functionality.\n"},"contributing/code-of-conduct.html":{"url":"contributing/code-of-conduct.html","title":"Code of Conduct","keywords":"","body":"Contributor Covenant Code of Conduct\nOur Pledge\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and maintainers pledge to making participation in our project and\nour community a harassment-free experience for everyone, regardless of age, body\nsize, disability, ethnicity, gender identity and expression, level of experience,\nnationality, personal appearance, race, religion, or sexual identity and\norientation.\nOur Standards\nExamples of behavior that contributes to creating a positive environment\ninclude:\n\nUsing welcoming and inclusive language\nBeing respectful of differing viewpoints and experiences\nGracefully accepting constructive criticism\nFocusing on what is best for the community\nShowing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\nThe use of sexualized language or imagery and unwelcome sexual attention or\nadvances\nTrolling, insulting/derogatory comments, and personal or political attacks\nPublic or private harassment\nPublishing others' private information, such as a physical or electronic\naddress, without explicit permission\nOther conduct which could reasonably be considered inappropriate in a\nprofessional setting\n\nOur Responsibilities\nProject maintainers are responsible for clarifying the standards of acceptable\nbehavior and are expected to take appropriate and fair corrective action in\nresponse to any instances of unacceptable behavior.\nProject maintainers have the right and responsibility to remove, edit, or\nreject comments, commits, code, wiki edits, issues, and other contributions\nthat are not aligned to this Code of Conduct, or to ban temporarily or\npermanently any contributor for other behaviors that they deem inappropriate,\nthreatening, offensive, or harmful.\nScope\nThis Code of Conduct applies both within project spaces and in public spaces\nwhen an individual is representing the project or its community. Examples of\nrepresenting a project or community include using an official project e-mail\naddress, posting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event. Representation of a project may be\nfurther defined and clarified by project maintainers.\nEnforcement\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported by contacting the project lead at eli@mozilla.com. All\ncomplaints will be reviewed and investigated and will result in a response that\nis deemed necessary and appropriate to the circumstances. The project team is\nobligated to maintain confidentiality with regard to the reporter of an incident.\nFurther details of specific enforcement policies may be posted separately.\nProject maintainers who do not follow or enforce the Code of Conduct in good\nfaith may face temporary or permanent repercussions as determined by other\nmembers of the project's leadership.\nAttribution\nThis Code of Conduct is adapted from the Contributor Covenant, version 1.4,\navailable at http://contributor-covenant.org/version/1/4\n"},"contributing/development.html":{"url":"contributing/development.html","title":"Development Process","keywords":"","body":"Developing Neutrino\nDeveloping and contributing to Neutrino and its core presets is done through our monorepo located at\nhttps://github.com/mozilla-neutrino/neutrino-dev. The code is broken up into a couple different sections:\npackages and documentation.\nNote: In this guide, commands executable from the command line are prepended with ❯. Lines not starting\nwith this symbol show sample console output from running the previous command.\nGetting started\nThe first step to start developing neutrino-dev is forking the repository to your own GitHub account.\nFork mozilla-neutrino/neutrino-dev on GitHub\nOnce that is done, you can clone your copy of the repository on your computer, replacing USER with the username\nof the account you forked the repository to:\n❯ git clone git@github.com:USER/neutrino-dev.git\n❯ cd neutrino-dev\n\nMaking changes\nWhen you make changes to neutrino-dev, you should make them in a branch separate from master. Start from the\nmaster branch and create a new branch for your changes.\nExample: You want to create a core preset for JavaScript Standard Style. You need a new branch for this work.\n❯ git checkout -b standard-style\nSwitched to a new branch 'standard-style'\n\nWhile making changes, be sure to test your code out for expected operation. If possible or applicable, write a\ntest that can verify these changes in the future.\nSubmitting a pull request\nOnce you are satisified with your changes, you should commit them and submit a pull request. Use git add\nin order to add files that should be commited. Give your changes a descriptive but not overly verbose message.\n❯ git add .\n❯ git commit -m \"Feature: Adding new core preset for JavaScript Standard Style\"\n❯ git push origin standard-style\n\nNow if you open the GitHub page for your repository, GitHub should display a button to open a pull request for\nthe branch and commit you just pushed. When filling out the details of the pull request, try to be as descriptive\nas possible, following our detailed contribution guidelines.\nReceiving updates\nIf you need to update your local copy of neutrino-dev to be in sync with the main neutrino-dev repository, you\nwill want to fetch upstream changes. Add the main neutrino-dev repo as an upstream to your local copy, then fetch\nthe latest changes from the master branch.\n❯ git checkout master\n❯ git remote add upstream https://github.com/mozilla-neutrino/neutrino-dev.git\n❯ git pull upstream master\n\nCongrats!\nYou just made a contribution to Neutrino! We are so happy to have your help! :tada:\n"}}}
\ No newline at end of file
diff --git a/usage.html b/usage.html
index 23f8271..1f21f8c 100644
--- a/usage.html
+++ b/usage.html
@@ -57,7 +57,7 @@
-
+
@@ -128,7 +128,20 @@
scripts.test would be the command you wish to run to execute tests
Using these script targets may not be suitable for every project; know that they are just
-typical recommendations for script target names, you may choose a different name if necessary
+typical recommendations for script target names, you may choose a different name if desired
for your project.
Building for development
Neutrino provides the command neutrino start for creating a bundle during development. Using
neutrino start sets the Node.js environment to development using the NODE_ENV environment variable,
-which is available in your project source code. Depending on the preset you are using, neutrino start
+which is available in your project source code. Depending on the presets you are using, neutrino start
may also spin up a development server with hot module reloading capabilities.
-Check your preset for details.
+Check the documentation of your preset for details.
Usage:
# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react
-neutrino start --preset PRESET_MODULE
+neutrino start --presets PRESET_MODULE
Putting this into your package.json will allow you to build your project using either
yarn start or npm start. Using neutrino-preset-react as an example:
Neutrino provides the command neutrino build for creating a bundle for production deployment.
Using neutrino build sets the Node.js environment to production using the NODE_ENV environment variable,
-which is available in your project source code.
+which is available in your project source code. See the documentation for your preset for details regarding additional
+steps after your build is completed.
# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react
-neutrino build --preset PRESET_MODULE
+neutrino build --presets PRESET_MODULE
Putting this into your package.json will allow you to build your project using either
-yarn start or npm start. Using neutrino-preset-react as an example:
+yarn build or npm run build. Using neutrino-preset-react as an example:
Neutrino provides the command neutrino test for creating a production bundle for use in executing tests.
+
Neutrino provides the command neutrino test for invoking a set of tests included in your project.
Using neutrino test sets the Node.js environment variable to test using the NODE_ENV environment
-variable, which is available in your project source code.
-
Default project layout
+variable, which is available in your project source code. How your source code is built and consumed from tests
+is determined by the preset your are using. Running suites that are built the same as source files are encouraged
+to use a Neutrino-compatible preset. Neutrino currently provides three core testing presets: Karma, Jest, and Mocha.
+
# PRESET_MODULE is the name of the preset to build with, e.g. neutrino-preset-react
+# TESTING_MODULE is the name of another preset to build with, e.g. neutrino-preset-karma
+neutrino build --presets PRESET_MODULE TESTING_MODULE
+
+
Putting this into your package.json will allow you to test your project using either
+yarn test or npm test. Using neutrino-preset-react and neutrino-preset-karma as an example:
Using the command neutrino test will execute every test file located in your
+testing directory. You may also provide to this command the specific test files you wish
+to run individually. It is important to note that when combined with the --presets parameter, you should use two
+dashes after the last preset to denote the end of the presets and the beginning of the test files.
+
neutrino test --presets PRESET_A PRESET_B -- a_test.js b_test.js
+
+
Using multiple presets
+
All Neutrino commands support the --presets command line parameter, but having to specify this for each script target
+can be cumbersome, especially if you have many presets. Fortunately Neutrino also supports specifying presets using the
+config.presets field in your project's package.json file. By omitting the --presets flag and specifying a
+config.presets array, every call to a Neutrino command will look up which presets are configured in your package.json.
@@ -356,7 +550,7 @@ variable, which is available in your project source code.
-
+
@@ -367,7 +561,7 @@ variable, which is available in your project source code.