]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Fix case-sensitive error in gulpfile 2313/head
authorZach Panzarino <zachary@panzarino.com>
Wed, 20 Apr 2016 23:42:07 +0000 (23:42 +0000)
committerZach Panzarino <zachary@panzarino.com>
Wed, 20 Apr 2016 23:42:07 +0000 (23:42 +0000)
gulpfile.js

index 5b64a19203243447f6f5bf5fca7896349aaf6b63..b8c1cf21c0b2f55c3091c24285916d5e65ddd878 100644 (file)
@@ -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'))