Skip to content

Commit

Permalink
chore(gulp): add default task that runs server
Browse files Browse the repository at this point in the history
  • Loading branch information
dtinth committed Jul 19, 2015
1 parent 3cdbac3 commit 159b54d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions tasks/default.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

import gulp from 'gulp'

gulp.task('default', ['server'])
4 changes: 2 additions & 2 deletions tasks/server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import gulp from 'gulp'
import gulp from 'gulp'

import * as server from './support/dev-server'
import * as server from './support/dev-server'

gulp.task('server', function(_callback) {
void _callback
Expand Down

0 comments on commit 159b54d

Please sign in to comment.