fix(): corrected inclusion of bindings in e2e.prod process.

This commit is contained in:
Josh Thomas
2017-05-19 15:52:35 -05:00
parent abd6713baf
commit 4bd292722f
3 changed files with 7 additions and 4 deletions

View File

@ -67,10 +67,9 @@ export function createTempTsConfig(includeGlob: string[], target: string, module
'gesture'
];
config.exclude = componetsToExclude.map(cmp => path.join(PROJECT_ROOT, `src/components/${cmp}`) + `**/*`)
config.exclude = componetsToExclude.map(cmp => path.join(PROJECT_ROOT, `src/components/${cmp}`) + `/*.ts`)
.concat([
path.join(PROJECT_ROOT, 'src/components/index.ts'),
path.join(PROJECT_ROOT, 'src/bindings/**/*'),
]);
if (overrideCompileOptions) {