diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..b512c09 --- /dev/null +++ b/.ignore @@ -0,0 +1 @@ +node_modules \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..b4ad34e --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,18 @@ +const gulp = require('gulp'), + concat = require('gulp-concat'), + uglify = require('gulp-uglify'), + rename = require('gulp-rename'), + connect = require('gulp-connect'); + +gulp.task('webserver', () => { + connect.server({ + livereload: true + }); +}); +gulp.watch([ + 'js/*.js', + 'lib/*.js' +]); +gulp.task('default', [ + 'webserver' +]); diff --git a/index.html b/index.html index 7a4cc09..8293230 100644 --- a/index.html +++ b/index.html @@ -14,9 +14,9 @@ - - - + + + @@ -233,4 +233,4 @@