marko/components.js
Michael Rawlings 101c5c6bb8
refactor to better separate compiler/taglib/core-tags/runtime (#1319)
* refactor out taglib loader/finder/lookup

* add comments for taglib apis that we need to deprecate

* move components into runtime/core-tags
2019-04-16 13:34:26 -07:00

8 lines
184 B
JavaScript

var isDebug = require("./env").isDebug;
if (isDebug) {
module.exports = require("./src/runtime/components");
} else {
module.exports = require("./dist/runtime/components");
}