Skip to content

Commit 3df79e6

Browse files
authored
Migrate Deep Clone app [MAPS-100] (#10313)
* Add Deep Clone app * Deep Clone: update package.json * Fix eslint issues
1 parent 6cb5fd9 commit 3df79e6

31 files changed

Lines changed: 12695 additions & 0 deletions

apps/deep-clone/.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

apps/deep-clone/.gitignore

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
# Build files
2+
build/
3+
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*
10+
lerna-debug.log*
11+
.pnpm-debug.log*
12+
13+
# Diagnostic reports (https://nodejs.org/api/report.html)
14+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Directory for instrumented libs generated by jscoverage/JSCover
23+
lib-cov
24+
25+
# Coverage directory used by tools like istanbul
26+
coverage
27+
*.lcov
28+
29+
# nyc test coverage
30+
.nyc_output
31+
32+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33+
.grunt
34+
35+
# Bower dependency directory (https://bower.io/)
36+
bower_components
37+
38+
# node-waf configuration
39+
.lock-wscript
40+
41+
# Compiled binary addons (https://nodejs.org/api/addons.html)
42+
build/Release
43+
44+
# Dependency directories
45+
node_modules/
46+
jspm_packages/
47+
48+
# Snowpack dependency directory (https://snowpack.dev/)
49+
web_modules/
50+
51+
# TypeScript cache
52+
*.tsbuildinfo
53+
54+
# Optional npm cache directory
55+
.npm
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Optional stylelint cache
61+
.stylelintcache
62+
63+
# Microbundle cache
64+
.rpt2_cache/
65+
.rts2_cache_cjs/
66+
.rts2_cache_es/
67+
.rts2_cache_umd/
68+
69+
# Optional REPL history
70+
.node_repl_history
71+
72+
# Output of 'npm pack'
73+
*.tgz
74+
75+
# Yarn Integrity file
76+
.yarn-integrity
77+
78+
# dotenv environment variable files
79+
.env
80+
.env.development.local
81+
.env.test.local
82+
.env.production.local
83+
.env.local
84+
85+
# parcel-bundler cache (https://parceljs.org/)
86+
.cache
87+
.parcel-cache
88+
89+
# Next.js build output
90+
.next
91+
out
92+
93+
# Nuxt.js build / generate output
94+
.nuxt
95+
dist
96+
97+
# Gatsby files
98+
.cache/
99+
# Comment in the public line in if your project uses Gatsby and not Next.js
100+
# https://nextjs.org/blog/next-9-1#public-directory-support
101+
# public
102+
103+
# vuepress build output
104+
.vuepress/dist
105+
106+
# vuepress v2.x temp and cache directory
107+
.temp
108+
.cache
109+
110+
# Serverless directories
111+
.serverless/
112+
113+
# FuseBox cache
114+
.fusebox/
115+
116+
# DynamoDB Local files
117+
.dynamodb/
118+
119+
# TernJS port file
120+
.tern-port
121+
122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*

apps/deep-clone/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.11.0

apps/deep-clone/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## [1.2.1](https://github.com/contentful/marketplace-partner-apps/compare/deep-clone-v1.2.0...deep-clone-v1.2.1) (2025-11-11)
4+
5+
6+
### Bug Fixes
7+
8+
* Deep clone version mismatch error [MAPS-92] ([#7215](https://github.com/contentful/marketplace-partner-apps/issues/7215)) ([540fb7f](https://github.com/contentful/marketplace-partner-apps/commit/540fb7f80505c8bd3518756a237e8a9a811cd69a))
9+
10+
## [1.2.0](https://github.com/contentful/marketplace-partner-apps/compare/deep-clone-v1.1.0...deep-clone-v1.2.0) (2025-10-17)
11+
12+
13+
### Features
14+
15+
* Deep clone: Add confirmation modal [INTEG-3005] ([#5985](https://github.com/contentful/marketplace-partner-apps/issues/5985)) ([ddb8614](https://github.com/contentful/marketplace-partner-apps/commit/ddb861406f7a970de62dec93e36c2dcd4a8800fd))
16+
17+
18+
### Bug Fixes
19+
20+
* **deep-clone:** fetch cloned entry to avoid version mismatch [ZEND-7061] ([#6909](https://github.com/contentful/marketplace-partner-apps/issues/6909)) ([7b89b92](https://github.com/contentful/marketplace-partner-apps/commit/7b89b926f7329a8d3f40d517525e5e4cb5ea010f))

0 commit comments

Comments
 (0)