Skip to content

Commit 937b256

Browse files
committed
fix deployment script
1 parent 8df1d77 commit 937b256

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/gulp/tasks/development.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const appVendors = [
3535
'web-animations-js',
3636
'moment',
3737
'tslib',
38+
'document-register-element',
3839
];
3940

4041
/** Glob that matches all required vendors for the demo-app. */
@@ -102,8 +103,10 @@ task('stage-deploy:devapp', ['build:devapp'], () => {
102103
join(outDir, 'dist/packages/cdk-experimental'));
103104
copyFiles(materialPackage.outputDir, '**/prebuilt/*.+(css|map)',
104105
join(outDir, 'dist/packages/material'));
105-
copyFiles(materialExperimentalPackage.outputDir, '**/*.+(js|map)',
106+
copyFiles(examplesPackage.outputDir, '**/*.+(js|map)',
106107
join(outDir, 'dist/packages/material-examples'));
108+
copyFiles(momentAdapterPackage.outputDir, '**/*.+(js|map)',
109+
join(outDir, 'dist/packages/material-moment-adapter'));
107110
});
108111

109112
/**

0 commit comments

Comments
 (0)