neon-loader
v1.0.0
Published
Neon loader for webpack
Readme
neon-loader for webpack
Neon loader for webpack using David Matějka's neon-js.
Installation
npm install neon-loaderUsage
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)
