@adobe/aem-cli 16.3.16 → 16.3.18
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 +6 -6
- package/src/up.cmd.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [16.3.18](https://github.com/adobe/helix-cli/compare/v16.3.17...v16.3.18) (2024-05-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* improve aem up error handling ([f319855](https://github.com/adobe/helix-cli/commit/f319855d7e1ab0eea189f4fbb207dbb3510ece2f)), closes [#2369](https://github.com/adobe/helix-cli/issues/2369)
|
|
7
|
+
|
|
8
|
+
## [16.3.17](https://github.com/adobe/helix-cli/compare/v16.3.16...v16.3.17) (2024-05-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency @adobe/helix-shared-indexer to v2.0.25 ([2f68cf5](https://github.com/adobe/helix-cli/commit/2f68cf5015ad474755f905152418ef4ba01bdb7e))
|
|
14
|
+
|
|
1
15
|
## [16.3.16](https://github.com/adobe/helix-cli/compare/v16.3.15...v16.3.16) (2024-05-18)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/aem-cli",
|
|
3
|
-
"version": "16.3.
|
|
3
|
+
"version": "16.3.18",
|
|
4
4
|
"description": "AEM CLI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@adobe/helix-log": "6.0.3",
|
|
43
43
|
"@adobe/helix-shared-config": "10.4.4",
|
|
44
44
|
"@adobe/helix-shared-git": "3.0.9",
|
|
45
|
-
"@adobe/helix-shared-indexer": "2.0.
|
|
45
|
+
"@adobe/helix-shared-indexer": "2.0.25",
|
|
46
46
|
"camelcase": "8.0.0",
|
|
47
47
|
"chalk-template": "1.1.0",
|
|
48
48
|
"chokidar": "3.6.0",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"express": "4.19.2",
|
|
54
54
|
"faye-websocket": "0.11.4",
|
|
55
55
|
"fs-extra": "11.2.0",
|
|
56
|
-
"glob": "10.
|
|
56
|
+
"glob": "10.4.1",
|
|
57
57
|
"glob-to-regexp": "0.4.1",
|
|
58
58
|
"hast-util-select": "6.0.2",
|
|
59
59
|
"http-proxy-agent": "7.0.2",
|
|
60
60
|
"https-proxy-agent": "7.0.4",
|
|
61
61
|
"ignore": "5.3.1",
|
|
62
|
-
"ini": "4.1.
|
|
62
|
+
"ini": "4.1.3",
|
|
63
63
|
"isomorphic-git": "1.25.10",
|
|
64
64
|
"livereload-js": "4.0.2",
|
|
65
65
|
"node-fetch": "3.3.2",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
"esmock": "2.6.5",
|
|
86
86
|
"husky": "9.0.11",
|
|
87
87
|
"junit-report-builder": "3.2.1",
|
|
88
|
-
"lint-staged": "15.2.
|
|
88
|
+
"lint-staged": "15.2.5",
|
|
89
89
|
"mocha": "10.4.0",
|
|
90
90
|
"mocha-multi-reporters": "1.5.1",
|
|
91
91
|
"nock": "13.5.4",
|
|
92
92
|
"semantic-release": "23.1.1",
|
|
93
93
|
"semantic-release-discord-bot": "^1.1.0",
|
|
94
|
-
"sinon": "
|
|
94
|
+
"sinon": "18.0.0"
|
|
95
95
|
},
|
|
96
96
|
"lint-staged": {
|
|
97
97
|
"*.js": "eslint"
|
package/src/up.cmd.js
CHANGED
|
@@ -81,6 +81,9 @@ export default class UpCommand extends AbstractServerCommand {
|
|
|
81
81
|
|
|
82
82
|
const ref = await GitUtils.getBranch(this.directory);
|
|
83
83
|
this._gitUrl = await GitUtils.getOriginURL(this.directory, { ref });
|
|
84
|
+
if (!this._gitUrl) {
|
|
85
|
+
throw Error('No git remote found. Make sure you have a remote "origin" configured.');
|
|
86
|
+
}
|
|
84
87
|
if (!this._url) {
|
|
85
88
|
await this.verifyUrl(this._gitUrl, ref);
|
|
86
89
|
}
|