@ui5/builder 4.0.11 → 4.0.12
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/README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
3
|
# ui5-builder
|
|
4
|
+
|
|
5
|
+
> ⚠️ **REPOSITORY MOVED**
|
|
6
|
+
>
|
|
7
|
+
> The `@ui5/builder` package is now maintained in the [UI5 CLI monorepo](https://github.com/UI5/cli). This repository contains the code up to and including CLI version 4, with further development continuing in the monorepo.
|
|
8
|
+
>
|
|
9
|
+
> - **New location**: https://github.com/UI5/cli/tree/main/packages/builder
|
|
10
|
+
> - **Issues & PRs**: Please submit to the [monorepo](https://github.com/UI5/cli/issues)
|
|
11
|
+
> - **Latest releases**: Available from the monorepo
|
|
12
|
+
|
|
4
13
|
> Modules for building UI5 projects
|
|
5
14
|
> Part of the [UI5 CLI](https://github.com/UI5/cli)
|
|
6
15
|
|
|
7
16
|
[](https://api.reuse.software/info/github.com/SAP/ui5-builder)
|
|
8
|
-
[](https://dev.azure.com/sap/opensource/_build/latest?definitionId=26&branchName=v4)
|
|
9
18
|
[](https://www.npmjs.com/package/@ui5/builder)
|
|
10
19
|
[](https://coveralls.io/github/SAP/ui5-builder)
|
|
11
20
|
|
|
@@ -657,7 +657,7 @@ function transformer(sInputFile, sOutputFile, sLibraryFile, vDependencyAPIFiles,
|
|
|
657
657
|
Object.keys(aParams).forEach((sParam) => {
|
|
658
658
|
const sSince = aParams[sParam].since;
|
|
659
659
|
const oDeprecated = aParams[sParam].deprecated;
|
|
660
|
-
const oEvtInSymbol = oSymbol.events
|
|
660
|
+
const oEvtInSymbol = oSymbol.events?.find((e) => e.name === oEvent.name);
|
|
661
661
|
const oParamInSymbol = oEvtInSymbol && oEvtInSymbol.parameters[0] &&
|
|
662
662
|
oEvtInSymbol.parameters[0].parameterProperties &&
|
|
663
663
|
oEvtInSymbol.parameters[0].parameterProperties.getParameters &&
|
|
@@ -2,6 +2,10 @@ import manifestEnhancer from "../processors/manifestEnhancer.js";
|
|
|
2
2
|
import fsInterface from "@ui5/fs/fsInterface";
|
|
3
3
|
|
|
4
4
|
/* eslint "jsdoc/check-param-names": ["error", {"disableExtraPropertyReporting":true}] */
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* @module @ui5/builder/tasks/enhanceManifest
|
|
8
|
+
*/
|
|
5
9
|
/**
|
|
6
10
|
* Task for transforming the manifest.json file.
|
|
7
11
|
* Adds missing information based on the available project resources,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ui5/builder",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.12",
|
|
4
4
|
"description": "UI5 CLI - Builder",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "SAP SE",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
},
|
|
123
123
|
"dependencies": {
|
|
124
124
|
"@jridgewell/sourcemap-codec": "^1.5.5",
|
|
125
|
-
"@ui5/fs": "^4.0.
|
|
125
|
+
"@ui5/fs": "^4.0.3",
|
|
126
126
|
"@ui5/logger": "^4.0.2",
|
|
127
127
|
"cheerio": "1.0.0",
|
|
128
128
|
"escape-unicode": "^0.2.0",
|
|
@@ -141,17 +141,17 @@
|
|
|
141
141
|
"@eslint/js": "^9.14.0",
|
|
142
142
|
"@istanbuljs/esm-loader-hook": "^0.3.0",
|
|
143
143
|
"@jridgewell/trace-mapping": "^0.3.31",
|
|
144
|
-
"@ui5/project": "^4.0.
|
|
144
|
+
"@ui5/project": "^4.0.6",
|
|
145
145
|
"ava": "^6.4.1",
|
|
146
146
|
"chokidar-cli": "^3.0.0",
|
|
147
147
|
"cross-env": "^7.0.3",
|
|
148
148
|
"depcheck": "^1.4.7",
|
|
149
149
|
"docdash": "^2.0.2",
|
|
150
|
-
"eslint": "^9.
|
|
150
|
+
"eslint": "^9.37.0",
|
|
151
151
|
"eslint-config-google": "^0.14.0",
|
|
152
152
|
"eslint-plugin-ava": "^15.1.0",
|
|
153
153
|
"eslint-plugin-jsdoc": "^52.0.4",
|
|
154
|
-
"esmock": "^2.7.
|
|
154
|
+
"esmock": "^2.7.3",
|
|
155
155
|
"globals": "^16.4.0",
|
|
156
156
|
"line-column": "^1.0.2",
|
|
157
157
|
"nyc": "^17.1.0",
|