Merge pull request #4596 from node-red/revert-4352-rfdc

Revert "changed cloning library to rfdc for runtime module"
This commit is contained in:
Nick O'Leary 2024-03-08 11:40:21 +00:00 committed by GitHub
commit 80e60538e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 5 additions and 7 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");

View File

@ -22,7 +22,6 @@
"clone": "2.1.2",
"express": "4.18.2",
"fs-extra": "11.1.1",
"json-stringify-safe": "5.0.1",
"rfdc": "^1.3.0"
"json-stringify-safe": "5.0.1"
}
}