@squiz/dxp-cli-next 1.8.0-develop.2 → 1.8.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/lib/td/download.js +1 -2
- package/package.json +2 -2
package/lib/td/download.js
CHANGED
|
@@ -28,10 +28,9 @@ const downCommand = new commander_1.Command()
|
|
|
28
28
|
.addOption(new commander_1.Option('-url, --template-deployment-url <string>', 'Required: Url for the template deployment api')
|
|
29
29
|
.env('DEPLOYMENT_INFO_API_URL')
|
|
30
30
|
.makeOptionMandatory(true))
|
|
31
|
-
.addOption(new commander_1.Option('-f, --force', 'Optional: Do a force download. This will attempt to bypass whatever validation it can').default(false, 'default is false'))
|
|
32
31
|
.action((source, destination, options, self) => __awaiter(void 0, void 0, void 0, function* () {
|
|
33
32
|
try {
|
|
34
|
-
return yield (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);
|
|
35
34
|
}
|
|
36
35
|
catch (error) {
|
|
37
36
|
if (error.message) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/dxp-cli-next",
|
|
3
|
-
"version": "1.8.0
|
|
3
|
+
"version": "1.8.0",
|
|
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.55",
|
|
43
43
|
"cli-color": "^2.0.1",
|
|
44
44
|
"commander": "^9.0.0",
|
|
45
45
|
"update-notifier": "^5.1.0"
|