Skip to content

Commit

Permalink
Merge pull request #135 from iljapostnovs/development
Browse files Browse the repository at this point in the history
update parser
  • Loading branch information
iljapostnovs committed Oct 16, 2023
2 parents 21a941b + e0aa94c commit 9b0904a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.11.1 (16-10-2023)

- [UI5 Parser](https://github.com/iljapostnovs/ui5plugin-parser) updated to v1.6.4

## 1.11.0 (10-10-2023)

- Make XML Formatter preserve newlines
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui5plugin-linter",
"version": "1.11.0",
"version": "1.11.1",
"description": "UI5 Class linter",
"main": "dist/index.js",
"scripts": {
Expand Down Expand Up @@ -60,6 +60,6 @@
"chalk": "^4.1.2",
"minimatch": "^9.0.3",
"rc-config-loader": "^4.1.3",
"ui5plugin-parser": "1.6.3"
"ui5plugin-parser": "1.6.4"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ export default abstract class AMeaningAssumptionGenerator {

return pascalCase;
})
.join("");
.join("")
.replace(/[^a-zA-Z| ]/g, "");

return lastPartPascalCase;
}
Expand Down

0 comments on commit 9b0904a

Please sign in to comment.