@adobedjangir/commerce-admin-management 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scripts/setup.js +6 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobedjangir/commerce-admin-management",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Schema-driven system configuration for Adobe Commerce App Builder sync apps. Magento-style scoped config in Adobe App Builder Database (ABDB) with encryption, Commerce REST helpers, and React Admin UI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Adobe Inc.",
|
package/scripts/setup.js
CHANGED
|
@@ -369,19 +369,17 @@ function indexHtmlContents () {
|
|
|
369
369
|
}
|
|
370
370
|
|
|
371
371
|
function excRuntimeContents () {
|
|
372
|
-
//
|
|
373
|
-
//
|
|
374
|
-
//
|
|
375
|
-
//
|
|
372
|
+
// exc-runtime.js's only job is to side-effect-import the Adobe Experience
|
|
373
|
+
// Cloud Shell runtime so the bootstrap can call init(...) afterwards.
|
|
374
|
+
// The bootstrap wraps `require('./exc-runtime')` in try/catch — if this
|
|
375
|
+
// import fails (e.g. when running outside the shell) bootstrapRaw() takes
|
|
376
|
+
// over. So this file is intentionally minimal.
|
|
376
377
|
return `/*
|
|
377
378
|
Copyright 2025 Adobe. All rights reserved.
|
|
378
379
|
Licensed under the Apache License, Version 2.0
|
|
379
380
|
*/
|
|
380
381
|
|
|
381
|
-
|
|
382
|
-
// Pulls in the @adobe/exc-app runtime which the bootstrap then initialises.
|
|
383
|
-
import '@adobe/exc-app/page'
|
|
384
|
-
import '@adobe/exc-app/page/Page'
|
|
382
|
+
import '@adobe/exc-app'
|
|
385
383
|
`
|
|
386
384
|
}
|
|
387
385
|
|