From 9316f73b816d474364abaf3a7d21a1e8fb943f98 Mon Sep 17 00:00:00 2001 From: perry Date: Wed, 5 Apr 2017 13:49:12 -0500 Subject: [PATCH] =?UTF-8?q?chore(demos):=20send=20demos=20to=20`content/do?= =?UTF-8?q?cs/demos/src`=20not=20`=E2=80=A6/src/src`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/gulp/tasks/docs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gulp/tasks/docs.ts b/scripts/gulp/tasks/docs.ts index b1a5c49318..18d97c9d92 100644 --- a/scripts/gulp/tasks/docs.ts +++ b/scripts/gulp/tasks/docs.ts @@ -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();