-
Notifications
You must be signed in to change notification settings - Fork 683
/
magento-compatibility.js
71 lines (66 loc) · 1.98 KB
/
magento-compatibility.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* This file describes PWA Studio to Magento version compatibilities.
*/
// PWA Studio version -> Magento version.
module.exports = {
'14.1.0': '2.4.7-p2',
'14.0.1': '2.4.7-beta3',
'14.0.0': '2.4.7-beta3',
'13.3.0': '2.4.7-beta2',
'13.2.0': '2.4.7-beta1',
'13.1.0': '2.4.6',
'13.0.0': '2.4.5',
'12.7.0': '2.4.5',
'12.6.0': '2.4.5',
'12.5.0': '2.4.4',
'12.4.0': '2.4.4',
'12.3.0': '2.4.3',
'12.2.0': '2.4.3',
'12.1.0': '2.4.3',
'12.0.0': '2.4.3',
'11.0.0': '2.4.3',
'10.0.0': '2.4.2',
'9.0.1': '2.4.2',
'9.0.0': '2.4.2',
'8.0.0': '2.4.0 - 2.4.1',
'7.0.0': '2.3.5 - 2.4.0',
'6.0.1': '2.3.4 - 2.3.5',
'6.0.0': '2.3.4 - 2.3.5',
'5.0.1': '2.3.3 - 2.3.4',
'5.0.0': '2.3.3 - 2.3.4',
'4.0.0': '2.3.2 - 2.3.3',
'3.0.0': '2.3.1 - 2.3.2',
'2.1.0': '2.3.1',
'2.0.0': '2.3.0'
};
// Magento version compatibility
var magentoVersion = '2.4.7-p1';
// React version compatibility
var reactVersion = '17.0.2';
// Fornt End dependencies
var forntEndDependencies = {
'@magento/babel-preset-peregrine': '1.3.3',
'@magento/create-pwa': '2.4.6',
'@magento/experience-platform-connector': '1.0.7',
'@magento/upward-security-headers': '1.0.16',
'@magento/venia-sample-backends': '0.0.11',
'@magento/venia-sample-eventing': '0.0.8',
'@magento/venia-sample-language-packs': '0.0.16',
'@magento/venia-sample-payments-checkmo': '0.0.14',
'@magento/pagebuilder': '9.3.1',
'@magento/peregrine': '14.3.1',
'@magento/pwa-buildpack': '11.5.3',
'@magento/pwa-theme-venia': '2.4.0',
'@magento/upward-js': '5.4.2',
'@magento/upward-spec': '5.3.1',
'@magento/venia-concept': '14.0.1',
'@magento/venia-ui': '11.4.0'
};
// Back End dependencies
var backEndDependencies = {
'magento/module-upward-connector': '^2.0.4',
'magento/venia-sample-data': '^0.0.5',
'magento/venia-sample-data-ee': '^0.0.4',
'magento/pwa': '^0.7.2',
'magento/pwa-commerce': '^0.0.4'
};