From 340d230b7c4d4eac65dc00e1dfd6a63931fbd367 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 22 Apr 2014 07:04:37 -0400 Subject: [PATCH] feature(gulp) add server dir --- gulpfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 5beae2ca..99167bac 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -9,11 +9,13 @@ test = require('./test/test.js'), LIB = './lib/', - LIB_CLIENT = LIB + 'client/', + LIB_CLIENT = LIB + 'client/', + LIB_SERVER = LIB + 'server/', Src = [ './*.js', - LIB + '*/*.js', + LIB + '*.js', LIB_CLIENT + 'storage/*.js', + LIB_SERVER + '/*.js', '!' + LIB + 'diff/diff-match-patch.js', '!' + LIB_CLIENT + 'jquery.js' ];