@spryker/oryx-for-zed 3.4.2 → 3.4.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.
- package/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- package/CHANGELOG.md +16 -0
- package/lib/settings.js +3 -0
- package/lib/webpack.config.js +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## PR Description
|
|
2
|
+
Add a meaningful description here that will let us know what you want to fix with this PR or what functionality you want to add.
|
|
3
|
+
|
|
4
|
+
## Steps before you submit a PR
|
|
5
|
+
- Please add tests for the code you add if it's possible.
|
|
6
|
+
- Please check out our contribution guide: https://docs.spryker.com/docs/dg/dev/code-contribution-guide.html
|
|
7
|
+
- Add a `contribution-license-agreement.txt` file with the following content:
|
|
8
|
+
`I hereby agree to Spryker\'s Contribution License Agreement in https://github.com/spryker/oryx-for-zed/blob/HASH_OF_COMMIT_YOU_ARE_BASING_YOUR_BRANCH_FROM_MASTER_BRANCH/CONTRIBUTING.md.`
|
|
9
|
+
|
|
10
|
+
This is a mandatory step to make sure you are aware of the license agreement and agree to it. `HASH_OF_COMMIT_YOU_ARE_BASING_YOUR_BRANCH_FROM_MASTER_BRANCH` is a hash of the commit you are basing your branch from the master branch. You can take it from commits list of master branch before you submit a PR.
|
|
11
|
+
|
|
12
|
+
## Checklist
|
|
13
|
+
- [x] I agree with the Code Contribution License Agreement in CONTRIBUTING.md
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 3.4.4
|
|
4
|
+
|
|
5
|
+
Released on 09.01.2025
|
|
6
|
+
|
|
7
|
+
- Adjusted configuration so webpack can search for entrypoints inside feature modules.
|
|
8
|
+
|
|
9
|
+
# Changelog
|
|
10
|
+
|
|
11
|
+
### 3.4.3
|
|
12
|
+
|
|
13
|
+
Released on 13.12.2024
|
|
14
|
+
|
|
15
|
+
- Bump webpack 5.88.2 => 5.94.0.
|
|
16
|
+
|
|
17
|
+
# Changelog
|
|
18
|
+
|
|
3
19
|
### 3.4.2
|
|
4
20
|
|
|
5
21
|
Released on 19.03.2024
|
package/lib/settings.js
CHANGED
|
@@ -13,12 +13,14 @@ const ecoDir = path.resolve('./vendor/spryker-eco');
|
|
|
13
13
|
const sdkDir = path.resolve('./vendor/spryker-sdk');
|
|
14
14
|
|
|
15
15
|
let bundlesPath = './vendor/spryker/';
|
|
16
|
+
let featuresPath = './vendor/spryker/';
|
|
16
17
|
let guiFolder = 'gui';
|
|
17
18
|
|
|
18
19
|
if (!fs.existsSync(path.resolve(bundlesPath, guiFolder))) {
|
|
19
20
|
log.step('spryker core: no-bundle-split layout detected');
|
|
20
21
|
|
|
21
22
|
bundlesPath = './vendor/spryker/spryker/Bundles/';
|
|
23
|
+
featuresPath = './vendor/spryker/spryker/Features/';
|
|
22
24
|
guiFolder = 'Gui';
|
|
23
25
|
}
|
|
24
26
|
|
|
@@ -44,6 +46,7 @@ const settings = {
|
|
|
44
46
|
bundlesDir,
|
|
45
47
|
ecoDir,
|
|
46
48
|
sdkDir,
|
|
49
|
+
featuresPath,
|
|
47
50
|
},
|
|
48
51
|
|
|
49
52
|
runtimeEntryName: 'spryker-zed-gui-commons',
|
package/lib/webpack.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spryker/oryx-for-zed",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "Spryker ZED frontend automation tool",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"sass-loader": "~10.4.1",
|
|
36
36
|
"style-loader": "~0.23.1",
|
|
37
37
|
"terser-webpack-plugin": "~5.3.6",
|
|
38
|
-
"webpack": "~5.
|
|
38
|
+
"webpack": "~5.94.0",
|
|
39
39
|
"yargs": "~13.3.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|