2016-08-09 19 views
7

Xin chào, tôi đang gặp lỗi này khi đang chạy đồng hồ gulp. im sử dụng vueify trong dự án laravel. Tại sao chuyện này đang xảy ra. nó đã làm việc tốt tất cả những ngày này và điều này đến trong ngày hôm nay.Lỗi Gulp: xem ENOSPC

$ gulp watch 
[12:56:01] Using gulpfile ~/Documents/web_projects/next-home/gulpfile.js 
[12:56:01] Starting 'watch'... 
[12:56:01] Starting 'browserify'... 
Fetching Browserify Source Files... 
    - resources/assets/js/app.js 
Saving To... 
    - public/js/app.js 
[12:56:02] Finished 'browserify' after 707 ms 
[12:56:02] 'watch' errored after 722 ms 
[12:56:02] Error: watch /home/bazi/Documents/web_projects/next-home/resources/assets/less/ ENOSPC 
    at exports._errnoException (util.js:893:11) 
    at FSWatcher.start (fs.js:1313:19) 
    at Object.fs.watch (fs.js:1341:11) 
    at Gaze._watchDir (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/gaze.js:289:30) 
    at /home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/gaze.js:358:10 
    at iterate (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/helper.js:52:5) 
    at Object.forEachSeries (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/helper.js:66:3) 
    at Gaze._initWatched (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/gaze.js:354:10) 
    at Gaze.add (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/gaze.js:177:8) 
    at new Gaze (/home/bazi/Documents/web_projects/next-home/node_modules/gaze/lib/gaze.js:74:10) 
events.js:154 
     throw er; // Unhandled 'error' event 
    ^ 
Error: watch /home/bazi/Documents/web_projects/next-home/package.json ENOSPC 
    at exports._errnoException (util.js:893:11) 
    at FSWatcher.start (fs.js:1313:19) 
    at Object.fs.watch (fs.js:1341:11) 
    at createFsWatchInstance (/home/bazi/Documents/web_projects/next-home/node_modules/chokidar/lib/nodefs-handler.js:37:15) 
    at setFsWatchListener (/home/bazi/Documents/web_projects/next-home/node_modules/chokidar/lib/nodefs-handler.js:80:15) 
    at FSWatcher.NodeFsHandler._watchWithNodeFs (/home/bazi/Documents/web_projects/next-home/node_modules/chokidar/lib/nodefs-handler.js:228:14) 
    at FSWatcher.NodeFsHandler._handleFile (/home/bazi/Documents/web_projects/next-home/node_modules/chokidar/lib/nodefs-handler.js:255:21) 
    at FSWatcher.<anonymous> (/home/bazi/Documents/web_projects/next-home/node_modules/chokidar/lib/nodefs-handler.js:473:21) 
    at FSReqWrap.oncomplete (fs.js:82:15) 

và đây là gulpfile.js tôi

var elixir = require('laravel-elixir'); 
require('laravel-elixir-vueify'); 
elixir(function(mix) { 
    mix.less('app.less'); 
    mix.browserify('app.js'); 
}); 
+0

Có thể trùng lặp với [Lỗi xem Grunt - Đang đợi ... Lỗi nghiêm trọng: xem ENOSPC] (http://stackoverflow.com/questions/16748737/grunt-watch-error-waiting-fatal-error-watch-enospc) –

Trả lời

13

Từ http://www.samundra.com.np/solved-gulp-watch-error-enospc/1386 Hãy thử điều này: Tại sao vấn đề này xảy ra? Có giới hạn về số lượng tệp có thể được xem trong hệ thống. Chúng ta phải tăng số lượng này. Lệnh dưới đây có thể được sử dụng để tăng số này.

$ echo fs.inotify.max_user_watches=582222 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p 

Related Links https://github.com/gulpjs/gulp/issues/217

Nó làm việc cho tôi. Hoặc giảm số lượng tệp mà người xem của bạn cần xem.

Các vấn đề liên quan