neon-loader

1.0.0 • Public • Published

neon-loader for webpack

Build Status npm version npm monthly downloads npm downloads

Neon loader for webpack using David Matějka's neon-js.

Installation

npm install neon-loader

Usage

Configuration

module.exports = {
    module: {
        rules: [
            {
                test: /\.neon$/,
                use: 'neon-loader'
            }
        ]
    }
}
import config from 'config.neon';

CLI

webpack --module-bind 'neon=neon-loader'
import config from 'config.neon';

Inline

import config from 'neon-loader!config.neon');

Options

forceObject

By default, neon-js detects if the loaded file contains a list and returns a JS array if so. You can use this option to force 'neon-js' to transform lists into objects:

import listObject from 'neon-loader?forceObject!list.neon';

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Readme

Keywords

Package Sidebar

Install

npm i neon-loader

Weekly Downloads

31

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jiripudil