babel-plugin-inline-json-import

0.3.2 • Public • Published

babel-plugin-inline-json-import

NPM

Build Status

A babel pre-processor that inlines all imports of JSON files straight into your JavaScript files.

Example

Given the following JSON file:

{
  "foo": "bar"
}

The plugin will transform the following statement:

import json from './path/to/file.json';

or

to:

const json = { foo: "bar" };

Simple as that! Both require and import are supported.

Installation

Install the plugin through npm, you will also need babel installed for obvious reasons:

$ npm install --save-dev babel-plugin-inline-json-import

Add babel-plugin-inline-json-import to the list of plugins. If you are using a .babelrc file, the file should have an entry that looks like this:

{
  "plugins": [
    ["inline-json-import", {}]
  ]
}

Usage

This should work straight out of the box without any configuration.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request =)

License

This project is licensed under the MIT License - see the LICENSE file for details

Readme

Keywords

none

Package Sidebar

Install

npm i babel-plugin-inline-json-import

Weekly Downloads

23,710

Version

0.3.2

License

MIT

Unpacked Size

17 kB

Total Files

11

Last publish

Collaborators

  • yggie