Skip to content

Commit

Permalink
[BREAKING] Removal of manifestBundler and generateManifestBundle (#838)
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
The manifestBundler processor and generateManifestBundle task has been removed because it is no longer required for the HTML5 repository in Cloud Foundry.
  • Loading branch information
flovogt committed Nov 11, 2022
1 parent 2d63f35 commit 07a5be2
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 1,033 deletions.
181 changes: 0 additions & 181 deletions lib/processors/bundlers/manifestBundler.js

This file was deleted.

58 changes: 0 additions & 58 deletions lib/tasks/bundlers/generateManifestBundle.js

This file was deleted.

3 changes: 1 addition & 2 deletions lib/tasks/taskRepository.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const taskInfos = {
transformBootstrapHtml: {path: "./transformBootstrapHtml.js"},
generateLibraryManifest: {path: "./generateLibraryManifest.js"},
generateVersionInfo: {path: "./generateVersionInfo.js"},
generateManifestBundle: {path: "./bundlers/generateManifestBundle.js"},
generateFlexChangesBundle: {path: "./bundlers/generateFlexChangesBundle.js"},
generateComponentPreload: {path: "./bundlers/generateComponentPreload.js"},
generateResourcesJson: {path: "./generateResourcesJson.js"},
Expand All @@ -26,7 +25,7 @@ export async function getTask(taskName) {
const taskInfo = taskInfos[taskName];

if (!taskInfo) {
if (["createDebugFiles", "uglify"].includes(taskName)) {
if (["createDebugFiles", "uglify", "generateManifestBundle"].includes(taskName)) {
throw new Error(
`Standard task ${taskName} has been removed in UI5 Tooling 3.0. ` +
`Please see the migration guide at https://sap.github.io/ui5-tooling/updates/migrate-v3/`);
Expand Down

0 comments on commit 07a5be2

Please sign in to comment.