mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
refactor: Remove n8n-core dependency in nodes-base (no-changelog) (#5649)
This commit is contained in:
committed by
GitHub
parent
5790e5e719
commit
7a4e9ef5fa
@@ -46,7 +46,7 @@ export async function createCustomTsconfig() {
|
||||
/**
|
||||
* Builds and copies credentials and nodes
|
||||
*
|
||||
* @param {IBuildOptions} [options] Options to overwrite default behaviour
|
||||
* @param {IBuildOptions} [options] Options to overwrite default behavior
|
||||
*/
|
||||
export async function buildFiles({
|
||||
destinationFolder = UserSettings.getUserN8nFolderCustomExtensionPath(),
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
import { IExecuteFunctions } from 'n8n-core';
|
||||
import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
||||
import {
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
INodeType,
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class ClassNameReplace implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { ITriggerFunctions } from 'n8n-core';
|
||||
import { INodeType, INodeTypeDescription, ITriggerResponse } from 'n8n-workflow';
|
||||
import { ITriggerFunctions, INodeType, INodeTypeDescription, ITriggerResponse } from 'n8n-workflow';
|
||||
|
||||
export class ClassNameReplace implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
import { IWebhookFunctions } from 'n8n-core';
|
||||
|
||||
import { IDataObject, INodeTypeDescription, INodeType, IWebhookResponseData } from 'n8n-workflow';
|
||||
import {
|
||||
IDataObject,
|
||||
IWebhookFunctions,
|
||||
INodeTypeDescription,
|
||||
INodeType,
|
||||
IWebhookResponseData,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class ClassNameReplace implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
|
||||
Reference in New Issue
Block a user