From fdec3462064bf3ca6324b14d65e98edce2b8106b Mon Sep 17 00:00:00 2001 From: Zach Panzarino Date: Wed, 20 Apr 2016 23:42:07 +0000 Subject: [PATCH] Fix case-sensitive error in gulpfile --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5b64a1920..b8c1cf21c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -54,7 +54,7 @@ gulp.task('default', ['build', 'watch']); function buildTask() { - var bundled = browserify('./src/Chart.js') + var bundled = browserify('./src/chart.js') .bundle() .pipe(source('Chart.bundle.js')) .pipe(streamify(replace('{{ version }}', package.version))) @@ -65,7 +65,7 @@ function buildTask() { .pipe(streamify(concat('Chart.bundle.min.js'))) .pipe(gulp.dest(outDir)); - var nonBundled = browserify('./src/Chart.js') + var nonBundled = browserify('./src/chart.js') .ignore('moment') .bundle() .pipe(source('Chart.js')) -- 2.47.2