configuration-management 0.1.1 → 0.1.2
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 +5 -5
- package/web/index.js +8 -0
- package/web/styles.css +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "configuration-management",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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.",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"./crypto": "./src/system-config-crypto.js",
|
|
29
29
|
"./shared": "./src/system-config-shared.js",
|
|
30
30
|
"./oauth1a": "./src/oauth1a.js",
|
|
31
|
-
"./web": "./web/
|
|
32
|
-
"./web/styles.css": "./web/
|
|
31
|
+
"./web": "./web/index.js",
|
|
32
|
+
"./web/styles.css": "./web/styles.css",
|
|
33
33
|
"./actions/utils": "./actions/utils.js",
|
|
34
34
|
"./actions/ext.config.yaml": "./actions/configurations/ext.config.yaml"
|
|
35
35
|
},
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"@adobe/react-spectrum": "^3.30.0",
|
|
53
53
|
"@adobe/uix-guest": "^0.8.3",
|
|
54
54
|
"@spectrum-icons/workflow": "^4.2.4",
|
|
55
|
+
"dotenv": "^16.4.5",
|
|
55
56
|
"react": "^18.2.0",
|
|
56
57
|
"react-dom": "^18.2.0",
|
|
57
58
|
"react-error-boundary": "^3.1.4",
|
|
58
|
-
"react-router-dom": "^6.8.1"
|
|
59
|
-
"dotenv": "^16.4.5"
|
|
59
|
+
"react-router-dom": "^6.8.1"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"got": "^11.8.5",
|
package/web/index.js
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
3
|
+
Licensed under the Apache License, Version 2.0
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Parcel / App Builder resolve `configuration-management/web` as this file
|
|
7
|
+
// (directory index), without relying on package.json "exports" subpaths.
|
|
8
|
+
export * from './src/index.js'
|
package/web/styles.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './src/styles/index.css';
|