Skip to content

Commit 10e7552

Browse files
committed
Address comments
1 parent 280f2af commit 10e7552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/gulp/packaging/build-tasks-gulp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {SOURCE_ROOT, DIST_ROOT, HTML_MINIFIER_OPTIONS} from '../build-config';
55
import {sequenceTask, sassBuildTask, copyTask, triggerLivereload} from '../util/task_helpers';
66
import {composeRelease} from './build-release';
77
import {buildPackageBundles} from './build-bundles';
8-
import {inlineResourcesFolder} from './inline-resources';
8+
import {inlineResourcesForDirectory} from './inline-resources';
99

1010
// There are no type definitions available for these imports.
1111
const htmlmin = require('gulp-htmlmin');
@@ -84,7 +84,7 @@ export function createPackageBuildTasks(packageName: string, requiredPackages: s
8484
return src(htmlGlob).pipe(htmlmin(HTML_MINIFIER_OPTIONS)).pipe(dest(packageOut));
8585
});
8686

87-
task(`${packageName}:assets:inline`, () => inlineResourcesFolder(packageOut));
87+
task(`${packageName}:assets:inline`, () => inlineResourcesForDirectory(packageOut));
8888

8989
/**
9090
* Watch tasks, that will rebuild the package whenever TS, SCSS, or HTML files change.

0 commit comments

Comments
 (0)