Skip to content

Commit

Permalink
ci: Fix forceConsistentCasingInFileNames for aliased paths (no-chan…
Browse files Browse the repository at this point in the history
…gelog) (#10598)
  • Loading branch information
ivov authored Aug 29, 2024
1 parent 04363bf commit 821ca16
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/workflow/src/errors/abstract/node.error.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { isTraversableObject, jsonParse } from '../../utils';
import type { IDataObject, INode, JsonObject } from '@/Interfaces';
import type { IDataObject, INode, JsonObject } from '../../Interfaces';
import { ExecutionBaseError } from './execution-base.error';

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/workflow/src/errors/node-operation.error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { INode, JsonObject } from '@/Interfaces';
import type { INode, JsonObject } from '../Interfaces';
import type { NodeOperationErrorOptions } from './node-api.error';
import { NodeError } from './abstract/node.error';
import { ApplicationError } from './application.error';
Expand Down
2 changes: 1 addition & 1 deletion packages/workflow/src/errors/workflow-operation.error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { INode } from '@/Interfaces';
import type { INode } from '../Interfaces';
import { ExecutionBaseError } from './abstract/execution-base.error';

/**
Expand Down

0 comments on commit 821ca16

Please sign in to comment.