Skip to content

Instantly share code, notes, and snippets.

@sawadays0118
Last active February 17, 2016 09:23
Show Gist options
  • Save sawadays0118/d264cb08457ea139fbfa to your computer and use it in GitHub Desktop.
Save sawadays0118/d264cb08457ea139fbfa 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