gecko-dev/devtools/shared/jsbeautify/beautify.js
J. Ryan Stinnett efe328f1b2 Bug 912121 - Rewrite require / import to match source tree. rs=devtools
In a following patch, all DevTools moz.build files will use DevToolsModules to
install JS modules at a path that corresponds directly to their source tree
location.  Here we rewrite all require and import calls to match the new
location that these files are installed to.

--HG--
extra : commitid : F2ItGm8ptRz
extra : rebase_source : b082fe4bf77e22e297e303fc601165ceff1c4cbc
2015-09-21 12:04:18 -05:00

8 lines
316 B
JavaScript

var { cssBeautify } = require("devtools/shared/jsbeautify/src/beautify-css");
var { htmlBeautify } = require("devtools/shared/jsbeautify/src/beautify-html");
var { jsBeautify } = require("devtools/shared/jsbeautify/src/beautify-js");
exports.css = cssBeautify;
exports.html = htmlBeautify;
exports.js = jsBeautify;