Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce gulp watch script #125

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const useref = require('gulp-useref');
const replace = require('gulp-replace');
const cachebust = require('gulp-cache-bust');
const minify = require('gulp-minify');
const browserSync = require("browser-sync");

const server = browserSync.create();

gulp.task('css', function () {
return gulp.src('src/css/*.css')
Expand Down Expand Up @@ -78,4 +81,32 @@ gulp.task('build',
'shapelib',
'canvg'
)
);
);

gulp.task('serve', function () {
server.init({
server: {
baseDir: './dist',
},
});
});

gulp.task('reload', function (done) {
server.reload();
done();
});

gulp.task('watch', function () {
gulp.watch('src/css/*.css', gulp.series('css', 'reload'));
gulp.watch(['src/js/*.js', 'src/lib/*.js'], gulp.series('js', 'reload'));
gulp.watch('src/js/loading.js', gulp.series('loading', 'reload'));
gulp.watch('src/*.html', gulp.series('index', 'reload'));
gulp.watch('src/site.webmanifest', gulp.series('manifest', 'reload'));
gulp.watch('src/images/**/*', gulp.series('images', 'reload'));
gulp.watch('src/font-files/**/*', gulp.series('fonts', 'reload'));
gulp.watch('src/extensions/**/*', gulp.series('extensions', 'reload'));
gulp.watch('src/shapelib/**/*', gulp.series('shapelib', 'reload'));
gulp.watch(['src/js/lib/canvg.js', 'src/js/lib/rgbcolor.js'], gulp.series('canvg', 'reload'));
});

gulp.task('dev', gulp.series('build', gulp.parallel('watch', 'serve')));
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"test": "test"
},
"scripts": {
"build": "gulp build",
"dev": "gulp dev",
"test": "test"
},
"repository": {
Expand All @@ -26,6 +28,7 @@
},
"homepage": "https://github.com/methodofaction/Method-Draw#readme",
"devDependencies": {
"browser-sync": "2.27.4",
"gulp": "^4.0.2",
"gulp-cache-bust": "^1.4.1",
"gulp-concat": "^2.6.1",
Expand Down
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ cd src
python -m http.server 8000
```

or using npm:

```sh
npm run dev
```

## Build

Install dev dependencies:
Expand All @@ -36,7 +42,7 @@ Install dev dependencies:

Then you can build into `dist` by running:

`gulp build`
`npm run build`

Deploy `dist` to your static file server of choice.

Expand Down