@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. 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.8",
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
- // Minimal exc-runtime shim the package's bootstrap requires it. aio's
373
- // template ships a similar file. We keep this thin so it stays current
374
- // even if Adobe's exc-runtime evolves; the meaningful glue lives in
375
- // index.js (also scaffolded by this script).
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
- // Loaded by index.js when running inside the Adobe Experience Cloud Shell.
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