Skip to content

Commit

Permalink
rename task
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Jan 16, 2024
1 parent 9a01f67 commit 27efc7c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion lib/build/definitions/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function({project, taskUtil, getTask}) {
}
});

tasks.set("transformManifest", {});
tasks.set("enrichManifest", {});

tasks.set("generateFlexChangesBundle", {});

Expand Down
2 changes: 1 addition & 1 deletion lib/build/definitions/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default function({project, taskUtil, getTask}) {

tasks.set("generateLibraryManifest", {});

tasks.set("transformManifest", {});
tasks.set("enrichManifest", {});

const bundles = project.getBundles();
const existingBundleDefinitionNames =
Expand Down
12 changes: 6 additions & 6 deletions test/lib/build/TaskRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ test("_initTasks: Project of type 'application'", async (t) => {
"replaceCopyright",
"replaceVersion",
"minify",
"transformManifest",
"enrichManifest",
"generateFlexChangesBundle",
"generateComponentPreload",
"generateStandaloneAppBundle",
Expand Down Expand Up @@ -243,7 +243,7 @@ test("_initTasks: Project of type 'library'", async (t) => {
"executeJsdocSdkTransformation",
"minify",
"generateLibraryManifest",
"transformManifest",
"enrichManifest",
"generateComponentPreload",
"generateLibraryPreload",
"generateBundle",
Expand Down Expand Up @@ -273,7 +273,7 @@ test("_initTasks: Project of type 'library' (framework project)", async (t) => {
"executeJsdocSdkTransformation",
"minify",
"generateLibraryManifest",
"transformManifest",
"enrichManifest",
"generateComponentPreload",
"generateLibraryPreload",
"generateBundle",
Expand Down Expand Up @@ -357,7 +357,7 @@ test("_initTasks: Custom tasks", async (t) => {
"replaceVersion",
"minify",
"myTask",
"transformManifest",
"enrichManifest",
"generateFlexChangesBundle",
"generateComponentPreload",
"generateStandaloneAppBundle",
Expand Down Expand Up @@ -497,7 +497,7 @@ test("_initTasks: Multiple custom tasks with same name", async (t) => {
"myTask--3",
"myTask",
"myTask--2",
"transformManifest",
"enrichManifest",
"generateFlexChangesBundle",
"generateComponentPreload",
"generateStandaloneAppBundle",
Expand Down Expand Up @@ -1287,7 +1287,7 @@ test("Custom task attached to a disabled task", async (t) => {
"replaceCopyright",
"replaceVersion",
"minify",
"transformManifest",
"enrichManifest",
"generateFlexChangesBundle",
"generateComponentPreload",
"myTask",
Expand Down
6 changes: 3 additions & 3 deletions test/lib/build/definitions/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ test("Standard build", (t) => {
]
}
},
transformManifest: {},
enrichManifest: {},
generateFlexChangesBundle: {},
generateComponentPreload: {
options: {
Expand Down Expand Up @@ -151,7 +151,7 @@ test("Standard build with legacy spec version", (t) => {
]
}
},
transformManifest: {},
enrichManifest: {},
generateFlexChangesBundle: {},
generateComponentPreload: {
options: {
Expand Down Expand Up @@ -260,7 +260,7 @@ test("Custom bundles", async (t) => {
]
}
},
transformManifest: {},
enrichManifest: {},
generateFlexChangesBundle: {},
generateComponentPreload: {
options: {
Expand Down
8 changes: 4 additions & 4 deletions test/lib/build/definitions/library.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ test("Standard build", async (t) => {
}
},
generateLibraryManifest: {},
transformManifest: {},
enrichManifest: {},
generateLibraryPreload: {
options: {
excludes: [], skipBundles: []
Expand Down Expand Up @@ -236,7 +236,7 @@ test("Standard build with legacy spec version", (t) => {
}
},
generateLibraryManifest: {},
transformManifest: {},
enrichManifest: {},
generateLibraryPreload: {
options: {
excludes: [], skipBundles: []
Expand Down Expand Up @@ -358,7 +358,7 @@ test("Custom bundles", async (t) => {
}
},
generateLibraryManifest: {},
transformManifest: {},
enrichManifest: {},
generateLibraryPreload: {
options: {
excludes: [],
Expand Down Expand Up @@ -686,7 +686,7 @@ test("Standard build: nulled taskFunction to skip tasks", (t) => {
}
},
generateLibraryManifest: {},
transformManifest: {},
enrichManifest: {},
generateLibraryPreload: {
options: {
excludes: [], skipBundles: []
Expand Down

0 comments on commit 27efc7c

Please sign in to comment.