broccoli-json-global

Takes a JSON tree and converts it to a .js file that exposes it globally.


Keywords
broccoli-plugin, json
License
MIT
Install
npm install broccoli-json-global@0.0.3

Documentation

broccoli-json-global

Installation

npm install --save-dev broccoli-json-global

Usage

var jsonGlobal = require('broccoli-json-global');

tree = jsonGlobal('public/data', {

  // The name of your globals object. Default is JSON_DATA.
  globalName: 'GLOBALS',

  // Whether or not to nest data. Keys will be the file name. Default is false.
  nestData: true

});