@squiz/dxp-cli-next 1.6.1 → 1.7.0-develop.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/lib/td/deploy.js +1 -1
- package/lib/td/download.js +1 -1
- package/package.json +2 -2
package/lib/td/deploy.js
CHANGED
|
@@ -33,7 +33,7 @@ const deployCommand = new commander_1.Command()
|
|
|
33
33
|
.addOption(new commander_1.Option('--dry-run', 'Optional: Perform validation on the local template and do not upload package').default(false))
|
|
34
34
|
.action((source, destination, options, self) => __awaiter(void 0, void 0, void 0, function* () {
|
|
35
35
|
try {
|
|
36
|
-
return (0, deployment_service_lib_1.CliUpload)(options.matrixApiUrl, options.matrixApiKey, options.templateDeploymentUrl, source, destination, options.watch, options.force, options.dryRun);
|
|
36
|
+
return yield (0, deployment_service_lib_1.CliUpload)(options.matrixApiUrl, options.matrixApiKey, options.templateDeploymentUrl, source, destination, options.watch, options.force, options.dryRun);
|
|
37
37
|
}
|
|
38
38
|
catch (error) {
|
|
39
39
|
if (error.message) {
|
package/lib/td/download.js
CHANGED
|
@@ -30,7 +30,7 @@ const downCommand = new commander_1.Command()
|
|
|
30
30
|
.makeOptionMandatory(true))
|
|
31
31
|
.action((source, destination, options, self) => __awaiter(void 0, void 0, void 0, function* () {
|
|
32
32
|
try {
|
|
33
|
-
return (0, deployment_service_lib_1.cliDownload)(options.matrixApiUrl, options.matrixApiKey, options.templateDeploymentUrl, source, destination);
|
|
33
|
+
return yield (0, deployment_service_lib_1.cliDownload)(options.matrixApiUrl, options.matrixApiKey, options.templateDeploymentUrl, source, destination);
|
|
34
34
|
}
|
|
35
35
|
catch (error) {
|
|
36
36
|
if (error.message) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/dxp-cli-next",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-develop.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://gitlab.squiz.net/developer-experience/dxp-cli-next"
|
|
6
6
|
},
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"codecov"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@squiz/deployment-service-lib": "^1.1.5-alpha.
|
|
42
|
+
"@squiz/deployment-service-lib": "^1.1.5-alpha.30",
|
|
43
43
|
"cli-color": "^2.0.1",
|
|
44
44
|
"commander": "^9.0.0",
|
|
45
45
|
"update-notifier": "^5.1.0"
|