UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

16 lines (13 loc) 321 B
'use strict'; const babel = require('@babel/core'); const mdx = require("@mdx-js/mdx").sync; const path = require('path'); module.exports = { process: (src, filename) => ( babel.transformSync(mdx(src), { filename, presets: [ 'react-app' ], root: path.join(__dirname, '..', '..'), }) ), };