fix failure of RED.require

This commit is contained in:
Hiroyasu Nishiyama 2018-12-21 14:39:51 +09:00
parent 473a2ae275
commit cc7e3b0c26
1 changed files with 3 additions and 0 deletions

View File

@ -14,7 +14,9 @@
* limitations under the License.
**/
var path = require("path");
var i18n = require("@node-red/util").i18n;
var registry;
var runtime;
function copyObjectProperties(src,dst,copyList,blockList) {
@ -105,6 +107,7 @@ function createNodeApi(node) {
module.exports = {
init: function(_runtime) {
runtime = _runtime;
registry = require("@node-red/registry/lib");
},
createNodeApi: createNodeApi
}