@adobe/aem-cli 16.3.26 → 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 +7 -0
- package/package.json +1 -1
- package/src/server/HelixImportServer.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [16.3.26](https://github.com/adobe/helix-cli/compare/v16.3.25...v16.3.26) (2024-06-09)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -194,7 +194,10 @@ export class HelixImportServer extends BaseServer {
|
|
|
194
194
|
|
|
195
195
|
async setupApp() {
|
|
196
196
|
await super.setupApp();
|
|
197
|
-
|
|
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);
|