@meteorjs/reify
Version:
Enable ECMAScript 2015 modules in Node today. No caveats. Full stop.
17 lines (12 loc) • 400 B
JavaScript
;
const FastObject = require("../lib/fast-object.js");
// Map absolute file paths to the package info that governs them.
const pkgInfo = new FastObject;
// Enable in-memory caching when compiling without a file path.
pkgInfo[""] = {
cache: Object.create(null),
cachePath: null,
config: Object.create(null),
range: require("./version.js").version
};
exports.pkgInfo = pkgInfo;