Skip to content

Commit

Permalink
fix(build): fix release metadata generation
Browse files Browse the repository at this point in the history
  • Loading branch information
nnixaa committed Jun 12, 2018
1 parent 6959a9f commit 10111e2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/gulp/tasks/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ task(':build:table:inline', sequenceTask(
task(':inline-resources', () => inlineResources(TABLE_DIST_ROOT));

/** Generates metadata.json files for all of the components. */
task(':build:table:ngc',
sequenceTask(['build:table', ':build:table:metadata'])
task(':build:table:ngc',() => {
return sequenceTask(['build:table', ':build:table:metadata'])
}
);

task(':build:table:metadata', execNodeTask(
Expand Down

0 comments on commit 10111e2

Please sign in to comment.