mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
chore: Enfore consistent file-name casing on all backend packages (#15755)
This commit is contained in:
committed by
GitHub
parent
66d339c0d8
commit
3a2a70f193
@@ -2,9 +2,9 @@
|
||||
* @jest-environment jsdom
|
||||
*/
|
||||
|
||||
import { arrayExtensions } from '@/Extensions/ArrayExtensions';
|
||||
import { arrayExtensions } from '@/extensions/array-extensions';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('Array Data Transformation Functions', () => {
|
||||
@@ -2,9 +2,9 @@
|
||||
* @jest-environment jsdom
|
||||
*/
|
||||
|
||||
import { booleanExtensions } from '@/Extensions/BooleanExtensions';
|
||||
import { booleanExtensions } from '@/extensions/boolean-extensions';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('Boolean Data Transformation Functions', () => {
|
||||
@@ -4,10 +4,10 @@
|
||||
|
||||
import { DateTime } from 'luxon';
|
||||
|
||||
import { dateExtensions } from '@/Extensions/DateExtensions';
|
||||
import { getGlobalState } from '@/GlobalState';
|
||||
import { dateExtensions } from '@/extensions/date-extensions';
|
||||
import { getGlobalState } from '@/global-state';
|
||||
|
||||
import { evaluate, getLocalISOString } from './Helpers';
|
||||
import { evaluate, getLocalISOString } from './helpers';
|
||||
|
||||
const { defaultTimezone } = getGlobalState();
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
/* eslint-disable n8n-local-rules/no-interpolation-in-regular-string */
|
||||
|
||||
import { ExpressionExtensionError } from '@/errors/expression-extension.error';
|
||||
import { extendTransform, extend } from '@/Extensions';
|
||||
import { joinExpression, splitExpression } from '@/Extensions/ExpressionParser';
|
||||
import { extendTransform, extend } from '@/extensions';
|
||||
import { joinExpression, splitExpression } from '@/extensions/expression-parser';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Expression Extension Transforms', () => {
|
||||
describe('extend() transform', () => {
|
||||
@@ -1,4 +1,4 @@
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('Genric Data Transformation Functions', () => {
|
||||
@@ -1,7 +1,7 @@
|
||||
import type { IDataObject } from '@/Interfaces';
|
||||
import { Workflow } from '@/Workflow';
|
||||
import type { IDataObject } from '@/interfaces';
|
||||
import { Workflow } from '@/workflow';
|
||||
|
||||
import * as Helpers from '../Helpers';
|
||||
import * as Helpers from '../helpers';
|
||||
|
||||
export const nodeTypes = Helpers.NodeTypes();
|
||||
export const workflow = new Workflow({
|
||||
@@ -2,9 +2,9 @@
|
||||
* @jest-environment jsdom
|
||||
*/
|
||||
|
||||
import { numberExtensions } from '@/Extensions/NumberExtensions';
|
||||
import { numberExtensions } from '@/extensions/number-extensions';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('Number Data Transformation Functions', () => {
|
||||
@@ -1,7 +1,7 @@
|
||||
import { ApplicationError } from '@/errors';
|
||||
import { objectExtensions } from '@/Extensions/ObjectExtensions';
|
||||
import { objectExtensions } from '@/extensions/object-extensions';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('Object Data Transformation Functions', () => {
|
||||
@@ -5,7 +5,7 @@ import { DateTime } from 'luxon';
|
||||
|
||||
import { ExpressionExtensionError } from '@/errors';
|
||||
|
||||
import { evaluate } from './Helpers';
|
||||
import { evaluate } from './helpers';
|
||||
|
||||
describe('Data Transformation Functions', () => {
|
||||
describe('String Data Transformation Functions', () => {
|
||||
Reference in New Issue
Block a user