From 8e440115ecbe94a0e05fbd334ec9748e261da59b Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Wed, 14 Mar 2018 12:51:53 +0800 Subject: [PATCH] lib: add back lib/module.js redirection The previous commit deleted lib/module.js so that git recognize the file move `lib/module.js` -> `lib/internal/modules/cjs/loader.js`. This commit add the redirection back. Backport-PR-URL: https://github.com/nodejs/node/pull/19374 PR-URL: https://github.com/nodejs/node/pull/19177 Refs: https://github.com/nodejs/node/pull/19112 Reviewed-By: Gus Caplan Reviewed-By: Matteo Collina Reviewed-By: Benjamin Gruenbaum --- lib/module.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/module.js diff --git a/lib/module.js b/lib/module.js new file mode 100644 index 00000000000000..962f18b054cc90 --- /dev/null +++ b/lib/module.js @@ -0,0 +1,3 @@ +'use strict'; + +module.exports = require('internal/modules/cjs/loader');