Last active
June 13, 2018 19:09
-
-
Save pixelhandler/51cfcb39a78d35f14bb84debd235ce46 to your computer and use it in GitHub Desktop.
Convert JSON file to a module for importing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Funnel = require('broccoli-funnel'); | |
var jsonToModule = require('broccoli-json-module'); | |
var esTranspiler = require('broccoli-babel-transpiler'); | |
var concat = require('broccoli-concat'); | |
/** | |
* @method buildJsonModules | |
* @param {String} sourceFolder name of folder in root of repo, no nesting, e.g. 'fixtures' | |
* @param {String} destinationFolder name of folder within final dist, e.g. 'assets' | |
* @return {Object} node concatination of .json modules as a single output file destination/source.js | |
*/ | |
module.exports = function buildJsonModules(sourceFolder, destinationFolder) { | |
var jsonNode = new Funnel(sourceFolder, { | |
include: ['**/*.json'], | |
destDir: `/${destinationFolder}` | |
}); | |
var jsonModules = jsonToModule(jsonNode); | |
var transpiled = esTranspiler(jsonModules, { | |
modules: 'amd', | |
moduleIds: true, | |
getModuleId: function (name) { | |
// name the module begining with the source folder instead of destination | |
return name.replace(new RegExp(destinationFolder), sourceFolder); | |
} | |
}); | |
return concat(transpiled, { | |
outputFile: `/${destinationFolder}/${sourceFolder}.js`, | |
sourceMapConfig: { enabled: false } | |
}); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-env node */ | |
'use strict'; | |
const EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
const buildJsonModules = require('./lib/build-json-modules'); | |
module.exports = function(defaults) { | |
let app = new EmberApp(defaults); | |
let trees = []; | |
if (EmberApp.env() === 'test') { | |
const fixtures = buildJsonModules('fixtures', 'assets'); | |
trees.push(fixtures); | |
} | |
return app.toTree(trees); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function stringify(moduleDefaultObject) { | |
return JSON.stringify(moduleDefaultObject, circularReplacer, 1); | |
} | |
function circularReplacer(key, val) { | |
// AMD default import as object has circular reference to `default` | |
return (val === this) ? undefined : val; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working example (not really and addon yet) https://gitlab.com/pixelhandler/ember-cli-json-modules
ember b --environment=test
and see the fixtures as named AMD modules in thedist
directory