Skip to content

Commit

Permalink
Merge pull request #383 from iljapostnovs/development
Browse files Browse the repository at this point in the history
1.16.4
  • Loading branch information
iljapostnovs authored Nov 9, 2023
2 parents f301e68 + 261b8c6 commit 5dc7179
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 31 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.16.4 (09-11-2023)

- [UI5 Parser](https://github.com/iljapostnovs/ui5plugin-parser) updated to v1.7.0
- [UI5 Linter](https://github.com/iljapostnovs/ui5plugin-linter) updated to v1.13.0

## 1.16.3 (09-11-2023)

- [UI5 Linter](https://github.com/iljapostnovs/ui5plugin-linter) updated to v1.12.0
Expand Down
48 changes: 24 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ui5plugin",
"displayName": "SAPUI5 Extension",
"description": "Extension for working with UI5 projects",
"version": "1.16.3",
"version": "1.16.4",
"publisher": "iljapostnovs",
"license": "Apache-2.0",
"author": "Ilja Postnovs <ilja.postnovs@gmail.com>",
Expand Down Expand Up @@ -540,8 +540,8 @@
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ui5plugin-linter": "^1.12.0",
"ui5plugin-parser": "^1.6.4"
"ui5plugin-linter": "^1.13.0",
"ui5plugin-parser": "^1.7.0"
},
"__metadata": {
"id": "7a9177b5-9a33-478d-bff3-879dc393cb43",
Expand Down
3 changes: 2 additions & 1 deletion src/test/js/project/src/fragmenttest/util/Formatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ sap.ui.define([
unusedFormatValue() {},
formatGlobal() {
this.formatGlobal();
}
},
declarationAboveClass() {}
});
});
8 changes: 6 additions & 2 deletions src/test/js/project/src/util/IfLinterTest.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
sap.ui.define([
"sap/ui/base/ManagedObject"
"sap/ui/base/ManagedObject",
"com/test/fragmenttest/util/Formatter"
], function(
ManagedObject
ManagedObject,
Formatter
) {
"use strict";

const oFormatter = new Formatter();
return ManagedObject.extend("com.test.util.IfLinterTest", {
metadata: {

},
test: function() {
oFormatter.declarationAboveClass();
if (this.dummyField) {

} else if (this.secondDummyField) {
Expand Down
3 changes: 2 additions & 1 deletion src/test/js/suite/data/CodeLensData.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"1 reference",
"1 reference",
"0 references",
"6 references"
"6 references",
"1 reference"
]
},
{
Expand Down

0 comments on commit 5dc7179

Please sign in to comment.