@squiz/dxp-cli-next 5.15.0-develop.3 → 5.15.0-develop.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.
|
@@ -59,8 +59,8 @@ const createGetPortCommand = () => {
|
|
|
59
59
|
console.log(`Download artifacts: ${artifactsLink}`);
|
|
60
60
|
console.log('');
|
|
61
61
|
const excludedStages = [
|
|
62
|
-
dxp_porter_shared_1.Stage
|
|
63
|
-
dxp_porter_shared_1.Stage
|
|
62
|
+
dxp_porter_shared_1.Stage.componentTransform,
|
|
63
|
+
dxp_porter_shared_1.Stage.designDedupe,
|
|
64
64
|
// Hide validation stage from user (PERSONIZE-771)
|
|
65
65
|
dxp_porter_shared_1.Stage.validation,
|
|
66
66
|
];
|
|
@@ -154,7 +154,8 @@ describe('getPort', () => {
|
|
|
154
154
|
'component-transform': { run: false },
|
|
155
155
|
'design-dedupe': { run: false },
|
|
156
156
|
'template-dedupe': { run: false },
|
|
157
|
-
validation
|
|
157
|
+
// Hide validation stage from user (PERSONIZE-771)
|
|
158
|
+
// validation: { run: false },
|
|
158
159
|
report: { run: false },
|
|
159
160
|
},
|
|
160
161
|
stages: {
|
|
@@ -163,7 +164,8 @@ describe('getPort', () => {
|
|
|
163
164
|
'component-transform': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
164
165
|
'design-dedupe': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
165
166
|
'template-dedupe': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
166
|
-
validation
|
|
167
|
+
// Hide validation stage from user (PERSONIZE-771)
|
|
168
|
+
// validation: { status: PortStatus.skipped },
|
|
167
169
|
report: { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
168
170
|
},
|
|
169
171
|
status: mockStatus,
|
|
@@ -219,7 +221,8 @@ describe('getPort', () => {
|
|
|
219
221
|
'component-transform': { run: false },
|
|
220
222
|
'design-dedupe': { run: false },
|
|
221
223
|
'template-dedupe': { run: false },
|
|
222
|
-
validation
|
|
224
|
+
// Hide validation stage from user (PERSONIZE-771)
|
|
225
|
+
// validation: { run: false },
|
|
223
226
|
report: { run: false },
|
|
224
227
|
},
|
|
225
228
|
stages: {
|
|
@@ -228,7 +231,8 @@ describe('getPort', () => {
|
|
|
228
231
|
'component-transform': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
229
232
|
'design-dedupe': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
230
233
|
'template-dedupe': { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
231
|
-
validation
|
|
234
|
+
// Hide validation stage from user (PERSONIZE-771)
|
|
235
|
+
// validation: { status: PortStatus.skipped },
|
|
232
236
|
report: { status: dxp_porter_shared_1.PortStatus.skipped },
|
|
233
237
|
},
|
|
234
238
|
status: mockStatus,
|
|
@@ -24,8 +24,8 @@ const constants_1 = require("../../constants");
|
|
|
24
24
|
const { version: cliVersion } = require('../../../../package.json');
|
|
25
25
|
const allPortStages = Object.values(dxp_porter_shared_1.Stage);
|
|
26
26
|
const stagesToSkip = [
|
|
27
|
-
dxp_porter_shared_1.Stage
|
|
28
|
-
dxp_porter_shared_1.Stage
|
|
27
|
+
dxp_porter_shared_1.Stage.componentTransform,
|
|
28
|
+
dxp_porter_shared_1.Stage.designDedupe,
|
|
29
29
|
dxp_porter_shared_1.Stage.validation,
|
|
30
30
|
];
|
|
31
31
|
const stageDirsToCreate = allPortStages.filter(stage => !stagesToSkip.includes(stage));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squiz/dxp-cli-next",
|
|
3
|
-
"version": "5.15.0-develop.
|
|
3
|
+
"version": "5.15.0-develop.4",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://gitlab.squiz.net/dxp/dxp-cli-next"
|
|
6
6
|
},
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@apidevtools/swagger-parser": "10.1.0",
|
|
43
43
|
"@squiz/component-cli-lib": "1.65.1",
|
|
44
|
-
"@squiz/dxp-porter-shared": "0.
|
|
44
|
+
"@squiz/dxp-porter-shared": "0.4.0",
|
|
45
45
|
"axios": "1.1.3",
|
|
46
46
|
"cli-color": "2.0.3",
|
|
47
47
|
"commander": "9.4.0",
|