Skip to content
Open
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
465548c
don't merge anything from here
sauravraw Sep 15, 2025
0589587
Merge branch 'dev' of https://github.com/contentstack/migration-v2 in…
sauravraw Sep 18, 2025
0e4ac35
added locale support test cases
sauravraw Sep 19, 2025
3823a2f
locale code update
sauravraw Sep 22, 2025
5ccbeea
locale code update
sauravraw Sep 22, 2025
c48802f
fixed published_detail issue
sauravraw Sep 23, 2025
c785d78
Merge branch 'feature/new-logo-update' of https://github.com/contents…
sauravraw Sep 26, 2025
1f0f590
uidconnector added
sauravraw Sep 26, 2025
41f3b9a
added dyanamic field support for drupal from UI
sauravraw Sep 30, 2025
874f33e
test
sauravraw Oct 3, 2025
73ede1c
Remove drupalMigrationData from Git tracking and update .gitignore
sauravraw Oct 7, 2025
76c5619
Update package dependencies and refactor asset configuration handling…
sauravraw Oct 8, 2025
bb34e90
Implement AEM migration services and enhance asset configuration hand…
sauravraw Oct 10, 2025
c38bb55
Merge remote-tracking branch 'origin/dev' into feature/drupal-migration
sauravraw Oct 13, 2025
2f75331
Refactor content mapper and enhance taxonomy handling
sauravraw Oct 14, 2025
cb0c896
Enhance taxonomy loading and improve UI feedback in AdvancePropertise…
sauravraw Oct 14, 2025
1a1226c
Refactor ContentMapper and LogScreen components for improved performa…
sauravraw Oct 14, 2025
0a1db74
Refactor logging and improve field type handling in contentMapper ser…
sauravraw Oct 14, 2025
fdc5bc3
Enhance field type mapping logic in entries.service.ts
sauravraw Oct 14, 2025
5fe0ac6
Enhance asset configuration handling in project models and services
sauravraw Oct 14, 2025
8ea963a
Enhance logging for reference and taxonomy fields in contentMapper se…
sauravraw Oct 14, 2025
6ce6e16
Merge branch 'dev' of https://github.com/contentstack/migration-v2 in…
sauravraw Oct 27, 2025
1aff4ab
refactor: filter out profile fields in content mapping and improve re…
sauravraw Oct 27, 2025
984c01d
refactor: enhance drupal service and locale mapping logic
sauravraw Oct 27, 2025
e73cc8c
feat: implement asset URL tracking in Drupal asset service
sauravraw Oct 27, 2025
d712968
fix: update file format handling and improve SQL connection detection
sauravraw Oct 27, 2025
f4c95da
refactor: improve validation handling and database connection logic
sauravraw Oct 27, 2025
fda5d2c
refactor: enhance LoadUploadFile component with improved state manage…
sauravraw Oct 27, 2025
1c139b7
feat: enhance locale mapping functionality and improve migration service
sauravraw Oct 27, 2025
761902b
feat: update ProgressBar component with default props and type safety
sauravraw Oct 27, 2025
53f492c
removed unnecessary console
sauravraw Oct 27, 2025
6414cf2
feat: enhance file upload and validation processes
sauravraw Oct 28, 2025
5a40ce3
Merge branch 'dev' of https://github.com/contentstack/migration-v2 in…
sauravraw Nov 3, 2025
5957a78
refactor: update .gitignore patterns, add contentful.json and ESLint …
sauravraw Nov 5, 2025
199b697
refactor: enhance locale handling across services, ensure master loca…
sauravraw Nov 6, 2025
b03256a
Merge branch 'dev' of https://github.com/contentstack/migration-v2 in…
sauravraw Nov 10, 2025
4221ca2
feat: enhance content type conversion validation and improve logging …
sauravraw Nov 10, 2025
2aaaf37
fix: improve locale mapping logic and enhance debugging in LoadLangua…
sauravraw Nov 10, 2025
0f61f22
feat: enhance LoadLanguageMapper with improved locale synchronization…
sauravraw Nov 10, 2025
df20ae9
fix: enhance locale mapping logic and improve handling of unmatched s…
sauravraw Nov 10, 2025
e3b3027
message
sauravraw Nov 16, 2025
e187724
Refactor migration services and enhance Drupal integration
sauravraw Nov 18, 2025
9b527d0
Refactor UID handling and improve error messaging in components
sauravraw Nov 20, 2025
84c66b8
Enhance UI layout and improve file format handling
sauravraw Nov 20, 2025
bd4b15d
Sanitize stackId and validate file paths in contentMapper service
sauravraw Nov 20, 2025
2e69836
Merge branch 'dev' of https://github.com/contentstack/migration-v2 in…
sauravraw Nov 25, 2025
7b20417
Refactor migration and UI components for improved functionality
sauravraw Nov 27, 2025
f83930e
Enhance Legacy CMS component functionality by setting default affix a…
sauravraw Nov 27, 2025
7d9ce70
Refactor searchText validation in migration service and clean up impo…
sauravraw Dec 1, 2025
100668a
Refactor logging and value handling in services for improved clarity
sauravraw Dec 1, 2025
4332d57
Refactor migration and Drupal services for improved clarity and funct…
sauravraw Dec 1, 2025
563ceaf
Merge branch 'main' into feature/stable-drupal
sauravraw Dec 2, 2025
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',
},
};

32 changes: 0 additions & 32 deletions api/.eslintrc.json

This file was deleted.

24 changes: 24 additions & 0 deletions api/nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"watch": ["src"],
"ext": "ts,js,json",
"ignore": [
"database/**/*",
"logs/**/*",
"*.log",
"node_modules/**/*",
"dist/**/*",
"build/**/*",
"cmsMigrationData/**/*",
"test_output.log",
"combine.log",
"sample.log",
"upload-api/**/*",
"ui/**/*"
],
"exec": "tsx ./src/server.ts",
"env": {
"NODE_ENV": "production"
},
"delay": "1000",
"verbose": true
}
Loading
Loading