Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
17df14d
Update dependencies in package-lock.json, including upgrades for expr…
sauravraw Jan 11, 2026
f1896b2
Enhance migration functionality by adding Drupal support, including n…
sauravraw Jan 12, 2026
f32e456
Refactor content mapping service to enhance initial reference handlin…
sauravraw Jan 12, 2026
2ac958c
Enhance database connection handling with built-in timeout and improv…
sauravraw Jan 12, 2026
37d835a
Update package dependencies and improve compatibility with Node.js. U…
sauravraw Jan 12, 2026
3cb162a
Remove excessive debug logging across various services and components…
sauravraw Jan 12, 2026
797db17
Upgrade @contentstack/cli-utilities to version 1.16.0 in both package…
sauravraw Jan 12, 2026
6ca8bb4
Upgrade @contentstack/cli-utilities and inquirer to versions 1.16.0 a…
sauravraw Jan 12, 2026
0a6f902
Update package.json and package-lock.json to include new configuratio…
sauravraw Jan 12, 2026
a18edec
Update @contentstack/cli-utilities to version 1.16.0 in package.json …
sauravraw Jan 12, 2026
fa46a35
Merge branch 'dev' into feature/cmg-353
sauravraw Jan 13, 2026
c5f2fc0
Upgrade @contentstack/cli to version 1.54.0 in package.json and packa…
sauravraw Jan 13, 2026
d8ebad0
Update upload-api/migration-sitecore/libs/contenttypes.js
sauravraw Jan 13, 2026
f39e7dc
Update ui/src/components/LogScreen/index.tsx
sauravraw Jan 13, 2026
a636e7e
Update ui/src/components/LogScreen/MigrationLogViewer.tsx
sauravraw Jan 13, 2026
576ac07
Update ui/src/components/LegacyCms/Actions/LoadUploadFile.tsx
sauravraw Jan 13, 2026
d9c369e
Update ui/src/components/ContentMapper/index.tsx
sauravraw Jan 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -366,4 +366,13 @@ app.json
*extracted_files*
*MigrationData*
*.zip
app.json
*extracted_files*
*.tsbuildinfo
*drupalMigrationData*
# Snyk Security Extension - AI Rules (auto-generated)
.cursor/rules/snyk_rules.mdc
/aem_data_structure

*.csv
contentful.json
test-*
36 changes: 36 additions & 0 deletions api/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
const path = require('path');

module.exports = {
root: true,
env: {
browser: true,
es2021: true,
},
extends: [
'prettier',
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2022,
project: [path.resolve(__dirname, 'tsconfig.json')],
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
'operator-linebreak': [
'error',
'after',
{
overrides: {
':': 'before',
},
},
],
'func-names': [0],
'no-console': ['error', { allow: ['warn', 'error', 'info'] }],
'@typescript-eslint/no-explicit-any': 'warn',
},
};

Loading