1.1.0 • Published 9 years ago

jazzon-import v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

jazzon-import

Plugin for jazzon to import other files

Usage

The plugin requires option from to know where to look for files.

let jazzon = require('jazzon');
let importer = require('jazzon-import');
let json = { foo: '@{ import(foo.json) }' };

jazzon
  .use(importer({ from: __dirname }))
  .compile(json)
  .then((result) => {
    console.log(result); // => { "foo": <CONTENT_OF_FOO.JSON> }
  });

TODO

  • Support importing JavaScript files
  • Explore using relative paths
1.1.0

9 years ago

1.0.0

9 years ago