Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] Versioninfo enrich with manifest infos #554

Merged
merged 41 commits into from
Jan 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
bb1aa26
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Nov 16, 2020
93424fc
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Nov 18, 2020
32b1d3e
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Nov 27, 2020
da9b12c
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Nov 30, 2020
58fea7d
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 1, 2020
475ef28
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
3b20dbd
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
a445bee
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
f4ea6b7
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
6d6af3b
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
b89fff2
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 2, 2020
e2b8c84
[INTERNAL][WIP] VersionInfo: with manifest infos
tobiasso85 Dec 3, 2020
058479f
[FEATURE] manifestCreator: i18n section v22
tobiasso85 Dec 23, 2020
765bc97
[FEATURE] manifestCreator: i18n section v22
tobiasso85 Jan 4, 2021
f41a621
[FEATURE] manifestCreator: i18n section v22
tobiasso85 Jan 4, 2021
fa54efc
[FEATURE] manifestCreator: i18n section v22
tobiasso85 Jan 4, 2021
8dad6ab
[FEATURE] manifestCreator: i18n section v22
tobiasso85 Jan 5, 2021
9748592
give the code a better structure by using explicit classes
tobiasso85 Jan 7, 2021
e885412
add tests for embeddedBy to increase test coverage
tobiasso85 Jan 11, 2021
d2f023a
Use constructor to set values as well as setters
tobiasso85 Jan 11, 2021
cd30ac6
Improve jsdoc
tobiasso85 Jan 11, 2021
31eb6b3
Sort libs object in manifestHints, to have a consistent result created
tobiasso85 Jan 11, 2021
7cccfc0
Add test for invalid dependency
tobiasso85 Jan 11, 2021
4685a71
improve JSDoc and samples
tobiasso85 Jan 12, 2021
bf1980a
improve code structure
tobiasso85 Jan 12, 2021
066b040
rename variable
tobiasso85 Jan 12, 2021
45d8c6b
adjust comments and test message
tobiasso85 Jan 12, 2021
3006895
Removed verbose log
tobiasso85 Jan 12, 2021
2526ebd
Add test to ensure versionInfoGenerator remains backward compatible
tobiasso85 Jan 14, 2021
1fe9c25
fix jsdoc example
tobiasso85 Jan 14, 2021
ea58d08
fix sample in jsdoc
tobiasso85 Jan 15, 2021
874b160
manifestResources parameter contains only embedded
tobiasso85 Jan 15, 2021
57acbcb
when comparing the version info json created
tobiasso85 Jan 15, 2021
a7e1623
add more tests document parent lazy flag better
tobiasso85 Jan 15, 2021
f14cba5
improve error message when dependency was found in manifest
tobiasso85 Jan 15, 2021
666b3cb
remove typedef for DependencyInfoObject
tobiasso85 Jan 18, 2021
b9da72d
improve jsdoc and reuse types
tobiasso85 Jan 19, 2021
fd6a8e9
improve code
tobiasso85 Jan 22, 2021
8eeab50
secure looping by checking libs existence in manifest
tobiasso85 Jan 26, 2021
42ce003
Change logging for missing libraryManifest to verbose
tobiasso85 Jan 26, 2021
daf5610
make LibraryInfo typedef public
tobiasso85 Jan 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/builder/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ function composeTaskList({dev, selfContained, jsdoc, includedTasks, excludedTask
selectedTasks.generateLibraryPreload = false;
}

// TODO 3.0: exclude generateVersionInfo if not --all is used

if (jsdoc) {
// Include JSDoc tasks
selectedTasks.generateJsdoc = true;
Expand Down
Loading