move rule-transformer.js to /src/utils

This commit is contained in:
Joe Danziger
2025-05-22 15:32:15 -04:00
parent 243a9400c7
commit 1b92d5803a
8 changed files with 12 additions and 12 deletions

View File

@@ -5,7 +5,7 @@ import { dirname } from 'path';
import {
convertRuleToBrandRule,
convertAllRulesToBrandRules
} from '../../scripts/modules/rule-transformer.js';
} from '../../src/utils/rule-transformer.js';
import * as cursorProfile from '../../scripts/profiles/cursor.js';
const __filename = fileURLToPath(import.meta.url);

View File

@@ -5,7 +5,7 @@ import { dirname } from 'path';
import {
convertRuleToBrandRule,
convertAllRulesToBrandRules
} from '../../scripts/modules/rule-transformer.js';
} from '../../src/utils/rule-transformer.js';
import * as rooProfile from '../../scripts/profiles/roo.js';
const __filename = fileURLToPath(import.meta.url);

View File

@@ -2,7 +2,7 @@ import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import { convertRuleToBrandRule } from '../../scripts/modules/rule-transformer.js';
import { convertRuleToBrandRule } from '../../src/utils/rule-transformer.js';
import * as windsurfProfile from '../../scripts/profiles/windsurf.js';
const __filename = fileURLToPath(import.meta.url);