From: Zach Panzarino Date: Wed, 20 Apr 2016 23:42:07 +0000 (+0000) Subject: Fix case-sensitive error in gulpfile X-Git-Tag: 2.1.0~60^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2313%2Fhead;p=thirdparty%2FChart.js.git Fix case-sensitive error in gulpfile --- 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'))