-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] Builder: Add excludes option (#254)
* Builder: Provide getProjectExcludes callback to resourceFactory * Adapt tests to new behavior of FileSystem._runGlob which now throws for GLOB errors * Add builder integration test for file exclude patterns * Use new resourceFactory API parameter "getVirtualBasePathPrefix" * Instead of deprecated useNamespace flag. Also see SAP/ui5-fs@56b85e9 * Update globby dependency * Bump @ui5/fs from 1.0.2 to 1.1.0 (Changelog of this version: https://github.com/SAP/ui5-fs/blob/v1.1.0/CHANGELOG.md)
- Loading branch information
1 parent
c01d4ed
commit 6a7883e
Showing
8 changed files
with
310 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,14 +96,14 @@ | |
"url": "[email protected]:SAP/ui5-builder.git" | ||
}, | ||
"dependencies": { | ||
"@ui5/fs": "^1.0.2", | ||
"@ui5/fs": "^1.1.0", | ||
"@ui5/logger": "^1.0.1", | ||
"cheerio": "^0.22.0", | ||
"escodegen": "^1.11.1", | ||
"escope": "^3.6.0", | ||
"esprima": "^4.0.1", | ||
"estraverse": "^4.2.0", | ||
"globby": "^7.1.1", | ||
"globby": "^9.2.0", | ||
"graceful-fs": "^4.1.15", | ||
"jsdoc": "3.5.5", | ||
"less-openui5": "^0.6.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"_version": "1.1.0", | ||
"sap.app": { | ||
"_version": "1.1.0", | ||
"id": "application.g", | ||
"type": "application", | ||
"applicationVersion": { | ||
"version": "${version}" | ||
}, | ||
"embeds": ["embedded"], | ||
"title": "{{title}}" | ||
}, | ||
"customCopyrightString": "${copyright}" | ||
} |
Oops, something went wrong.