ソースを参照

Update gulpfile.js

Nicolas Giard 8 年 前
コミット
5bc56d9192
1 ファイル変更5 行追加3 行削除
  1. 5 3
      gulpfile.js

+ 5 - 3
gulpfile.js

@@ -63,15 +63,17 @@ var paths = {
 		'./assets/**/*',
 		'./client/content/**/*',
 		'./controllers/**/*',
+		'./lib/**/*',
 		'./locales/**/*',
 		'./middlewares/**/*',
 		'./models/**/*',
 		'./views/**/*',
 		'./LICENSE',
 		'./agent.js',
-		'./server.js',
-		'./package.json',
 		'./config.sample.yml'
+		'./package.json',
+		'./server.js',
+		'./ws-server.js',
 	]
 };
 
@@ -194,4 +196,4 @@ gulp.task('deploy', ['scripts', 'css', 'fonts'], function() {
 		.pipe(gulp.dest('dist'));
 
 	return merge(zipStream, targzStream);
-});
+});