@adobe/aem-cli 16.3.25 → 16.4.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [16.4.0](https://github.com/adobe/helix-cli/compare/v16.3.26...v16.4.0) (2024-06-11)
2
+
3
+
4
+ ### Features
5
+
6
+ * **import:** add support for local delivery of UE configuration files ([#2367](https://github.com/adobe/helix-cli/issues/2367)) ([975547d](https://github.com/adobe/helix-cli/commit/975547d62506df5db791818c65acd5198a8675ff))
7
+
8
+ ## [16.3.26](https://github.com/adobe/helix-cli/compare/v16.3.25...v16.3.26) (2024-06-09)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update adobe fixes ([f131bab](https://github.com/adobe/helix-cli/commit/f131bab5409914dad44ede5c88f5093260e22a53))
14
+
1
15
  ## [16.3.25](https://github.com/adobe/helix-cli/compare/v16.3.24...v16.3.25) (2024-06-08)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/aem-cli",
3
- "version": "16.3.25",
3
+ "version": "16.4.0",
4
4
  "description": "AEM CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -40,8 +40,8 @@
40
40
  "dependencies": {
41
41
  "@adobe/fetch": "4.1.8",
42
42
  "@adobe/helix-log": "6.0.3",
43
- "@adobe/helix-shared-config": "10.5.1",
44
- "@adobe/helix-shared-git": "3.0.10",
43
+ "@adobe/helix-shared-config": "10.5.2",
44
+ "@adobe/helix-shared-git": "3.0.11",
45
45
  "@adobe/helix-shared-indexer": "2.0.26",
46
46
  "camelcase": "8.0.0",
47
47
  "chalk-template": "1.1.0",
@@ -194,7 +194,10 @@ export class HelixImportServer extends BaseServer {
194
194
 
195
195
  async setupApp() {
196
196
  await super.setupApp();
197
- this.app.get('/tools/*', asyncHandler(this.handleToolsRequest.bind(this)));
197
+ const localFiles = ['/tools/*', '/component-definition.json', '/component-filters.json', '/component-models.json'];
198
+ localFiles.forEach((file) => {
199
+ this.app.get(file, asyncHandler(this.handleToolsRequest.bind(this)));
200
+ });
198
201
  const handler = asyncHandler(this.handleProxyModeRequest.bind(this));
199
202
  this.app.get('*', handler);
200
203
  this.app.post('*', handler);