@adobe/aem-cli 16.2.2 → 16.2.4
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 +14 -0
- package/package.json +3 -3
- package/src/up.cmd.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.2.4](https://github.com/adobe/helix-cli/compare/v16.2.3...v16.2.4) (2024-02-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **up:** improve detection of helix5 repos ([a4dc193](https://github.com/adobe/helix-cli/commit/a4dc193607b78bf935d021ae43dfc5067a1f4e3b))
|
|
7
|
+
|
|
8
|
+
## [16.2.3](https://github.com/adobe/helix-cli/compare/v16.2.2...v16.2.3) (2024-01-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-shared-config to v10.3.10 ([a3e9fa6](https://github.com/adobe/helix-cli/commit/a3e9fa6b9fad0a1eb45f7a242f6498559f82564c))
|
|
14
|
+
|
|
1
15
|
## [16.2.2](https://github.com/adobe/helix-cli/compare/v16.2.1...v16.2.2) (2024-01-27)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.2.
|
|
3
|
+
"version": "16.2.4",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@adobe/fetch": "4.1.1",
|
|
42
42
|
"@adobe/helix-log": "6.0.1",
|
|
43
|
-
"@adobe/helix-shared-config": "10.3.
|
|
43
|
+
"@adobe/helix-shared-config": "10.3.10",
|
|
44
44
|
"@adobe/helix-shared-git": "3.0.5",
|
|
45
45
|
"@adobe/helix-shared-indexer": "2.0.19",
|
|
46
46
|
"camelcase": "8.0.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"c8": "9.1.0",
|
|
84
84
|
"eslint": "8.56.0",
|
|
85
85
|
"esmock": "2.6.3",
|
|
86
|
-
"husky": "
|
|
86
|
+
"husky": "9.0.7",
|
|
87
87
|
"junit-report-builder": "3.1.0",
|
|
88
88
|
"lint-staged": "15.2.0",
|
|
89
89
|
"mocha": "10.2.0",
|
package/src/up.cmd.js
CHANGED
|
@@ -116,7 +116,7 @@ export default class UpCommand extends AbstractServerCommand {
|
|
|
116
116
|
// "project": "Helix Website (AEM Live)",
|
|
117
117
|
// "testProperty": "header";
|
|
118
118
|
// }
|
|
119
|
-
const configUrl = `https://admin.hlx.page/sidekick/${gitUrl.
|
|
119
|
+
const configUrl = `https://admin.hlx.page/sidekick/${gitUrl.owner}/${gitUrl.repo}/${inref}/config.json`;
|
|
120
120
|
const configResp = await getFetch()(configUrl);
|
|
121
121
|
let previewHostBase = 'hlx.page';
|
|
122
122
|
if (configResp.ok) {
|