We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4031395 + 595c93b commit 50c63baCopy full SHA for 50c63ba
.github/workflows/repo-sync.yml
@@ -167,7 +167,7 @@ jobs:
167
npx ts-remove-unused-imports upload-api/
168
169
# Remove missing imports
170
- npx ts-prune | awk '{print $1}' | xargs -I {} sed -i '/import/d' {}
+ npx ts-prune | grep -E '^(api/|ui/|upload-api/)/' | awk '{print $1}' | xargs -I {} sed -i '/import/d' {}
171
172
# Format code
173
npx prettier --write .
api/src/services/sitecore.service.ts
@@ -9,6 +9,7 @@ import { orgService } from './org.service.js';
9
import { getLogMessage } from '../utils/index.js';
10
import customLogger from '../utils/custom-logger.utils.js';
11
12
+
13
const append = "a";
14
const baseDirName = MIGRATION_DATA_CONFIG.DATA
15
const {
0 commit comments