Revert "changed cloning library to rfdc for runtime module"

This commit is contained in:
Nick O'Leary 2024-03-07 16:40:32 +00:00 committed by GitHub
parent 29e9def314
commit 9444009a9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 4 additions and 5 deletions

View File

@ -73,7 +73,6 @@
"passport-http-bearer": "1.0.1",
"passport-oauth2-client-password": "0.1.2",
"raw-body": "2.5.2",
"rfdc": "^1.3.0",
"semver": "7.5.4",
"tar": "6.1.13",
"tough-cookie": "4.1.3",

View File

@ -14,7 +14,7 @@
* limitations under the License.
**/
const clone = require("rfdc")({proto:true, circles: true});
const clone = require("clone");
const redUtil = require("@node-red/util").util;
const events = require("@node-red/util").events;
const flowUtil = require("./util");

View File

@ -14,7 +14,7 @@
* limitations under the License.
**/
const clone = require("rfdc")({proto:true, circles: true});
const clone = require("clone");
const Flow = require('./Flow').Flow;
const context = require('../nodes/context');
const util = require("util");

View File

@ -14,7 +14,7 @@
* limitations under the License.
**/
var clone = require("rfdc")({proto:true, circles: true});
var clone = require("clone");
var Flow = require('./Flow');

View File

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
**/
const clone = require("rfdc")({proto:true, circles: true});
const clone = require("clone");
const redUtil = require("@node-red/util").util;
const Log = require("@node-red/util").log;
const typeRegistry = require("@node-red/registry");