chore(demos): send demos to content/docs/demos/src not …/src/src

This commit is contained in:
perry
2017-04-05 13:49:12 -05:00
parent 55dfd254e5
commit 9316f73b81

View File

@ -76,7 +76,7 @@ function copyDemoPolyfills(outputDir: string) {
function copyDemoContent(outputDir: string) {
return new Promise((resolve, reject) => {
const stream = src([
`${DIST_DEMOS_ROOT}/**/*`
`${DIST_DEMOS_ROOT}/src/**/*`
]).pipe(dest(outputDir));
stream.on('end', () => {
resolve();