@ui5/webcomponents-tools 2.14.0 → 2.15.0-rc.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/CHANGELOG.md +8 -0
- package/README.md +7 -7
- package/components-package/nps.js +2 -2
- package/components-package/wdio.js +8 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @ui5/webcomponents-tools
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @ui5/webcomponents-tools
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# UI5 Web Components - Tools
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@ui5/webcomponents)
|
|
4
4
|
|
|
@@ -6,16 +6,16 @@ Provides libraries, configuration files and build artifacts,
|
|
|
6
6
|
used by other UI5 Web Components packages, such as `main` and `fiori`.
|
|
7
7
|
|
|
8
8
|
## Resources
|
|
9
|
-
- [UI5 Web Components - README.md](https://github.com/
|
|
10
|
-
- [UI5 Web Components - Home Page](https://
|
|
11
|
-
- [UI5 Web Components - Playground and API Reference](https://
|
|
9
|
+
- [UI5 Web Components - README.md](https://github.com/UI5/webcomponents/blob/main/README.md)
|
|
10
|
+
- [UI5 Web Components - Home Page](https://ui5.github.io/webcomponents)
|
|
11
|
+
- [UI5 Web Components - Playground and API Reference](https://ui5.github.io/webcomponents/play/)
|
|
12
12
|
|
|
13
13
|
## Support
|
|
14
|
-
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/
|
|
14
|
+
We welcome all comments, suggestions, questions, and bug reports. Please follow our [Support Guidelines](https://github.com/UI5/webcomponents/blob/main/SUPPORT.md#-content) on how to report an issue, or chat with us in the `#webcomponents` channel of the [OpenUI5 Community Slack](https://ui5-slack-invite.cfapps.eu10.hana.ondemand.com/).
|
|
15
15
|
|
|
16
16
|
## Contribute
|
|
17
|
-
Please check our [Contribution Guidelines](https://github.com/
|
|
17
|
+
Please check our [Contribution Guidelines](https://github.com/UI5/webcomponents/blob/main/docs/6-contributing/02-conventions-and-guidelines.md).
|
|
18
18
|
|
|
19
19
|
## License
|
|
20
20
|
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
|
|
21
|
-
This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/
|
|
21
|
+
This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the [LICENSE](https://github.com/UI5/webcomponents/blob/main/LICENSE.txt) file.
|
|
@@ -4,9 +4,9 @@ const LIB = path.join(__dirname, `../lib/`);
|
|
|
4
4
|
let websiteBaseUrl = "/";
|
|
5
5
|
|
|
6
6
|
if (process.env.DEPLOY) {
|
|
7
|
-
websiteBaseUrl = "/
|
|
7
|
+
websiteBaseUrl = "/webcomponents/";
|
|
8
8
|
} else if (process.env.DEPLOY_NIGHTLY) {
|
|
9
|
-
websiteBaseUrl = "/
|
|
9
|
+
websiteBaseUrl = "/webcomponents/nightly/";
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
const cypressEnvVariables = (options, predefinedVars) => {
|
|
@@ -403,8 +403,14 @@ exports.config = {
|
|
|
403
403
|
* @param {Array.<Object>} capabilities list of capabilities details
|
|
404
404
|
* @param {<Object>} results object containing test results
|
|
405
405
|
*/
|
|
406
|
-
|
|
407
|
-
|
|
406
|
+
onComplete: function (exitCode, config, capabilities, results) {
|
|
407
|
+
// The results object looks like: { finished: 0, passed: 0, retries: 0, failed: 0 }.
|
|
408
|
+
// If all values are 0, consider that no tests were found or executed.
|
|
409
|
+
if (exitCode === 1 && Object.values(results).every(result => result === 0)) {
|
|
410
|
+
console.log("✅ No specs were found or executed – treating as success.");
|
|
411
|
+
process.exit(0);
|
|
412
|
+
}
|
|
413
|
+
}
|
|
408
414
|
/**
|
|
409
415
|
* Gets executed when a refresh happens.
|
|
410
416
|
* @param {String} oldSessionId session ID of the old session
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/webcomponents-tools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.0-rc.0",
|
|
4
4
|
"description": "UI5 Web Components: webcomponents.tools",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/UI5/webcomponents.git",
|
|
21
21
|
"directory": "packages/tools"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"esbuild": "^0.25.0",
|
|
84
84
|
"yargs": "^17.5.1"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "033a6d621ee56640dda7dc853bfd29ac88c4ca25"
|
|
87
87
|
}
|