ci: Fix forceConsistentCasingInFileNames for aliased paths (no-changelog) (#10598)

This commit is contained in:
Iván Ovejero 2024-08-29 10:40:50 +02:00 committed by GitHub
parent 04363bf4bc
commit 821ca16a57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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';
/**

View file

@ -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';

View file

@ -1,4 +1,4 @@
import type { INode } from '@/Interfaces';
import type { INode } from '../Interfaces';
import { ExecutionBaseError } from './abstract/execution-base.error';
/**