mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #2010 from node-red-hitachi/fix-require
Fix RED.require
This commit is contained in:
commit
5fa4d227b8
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user