feat(components): add core avatar and button components

This commit is contained in:
Brandy Carney
2017-06-13 15:22:30 -04:00
parent e5b658c36b
commit 5571c8ff8a
14 changed files with 365 additions and 32 deletions

View File

@ -57,16 +57,18 @@ export function createTempTsConfig(includeGlob: string[], target: string, module
}
config.include = includeGlob;
const componentsToExclude = [
'avatar',
'badge',
'button',
'card',
'card-content',
'card-header',
'card-title',
'gesture',
'icon',
'scroll',
'slides',
'toggle',
'gesture'
'toggle'
];
config.exclude = componentsToExclude.map(cmp => path.join(PROJECT_ROOT, `src/components/${cmp}`) + `/*.ts`)