Skip to content

Instantly share code, notes, and snippets.

@m4tlch
Forked from sawadays0118/gulpfile.js
Created February 17, 2016 09:23
Show Gist options
  • Select an option

  • Save m4tlch/9554460db0fa3d064308 to your computer and use it in GitHub Desktop.

Select an option

Save m4tlch/9554460db0fa3d064308 to your computer and use it in GitHub Desktop.
【gulp】livereloadxを実行する ref: http://qiita.com/sawadays0118/items/7e953244a9543d5b6be1
var gulp = require('gulp'),
exec = require('child_process').exec;
gulp.task('livereloadx', function(){
exec('livereloadx -s -p 8000');
});
gulp.task('livereloadx', ['livereloadx']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment