I've recently started using ember and have set up a sandbox to experiment with it. An interesting issue arises when I run the ember s
command - an error pops up, but here's the strange part: the error only occurs when I have Sublime Text open (!?!). If I close Sublime Text and rerun the ember s
command in the terminal, everything works perfectly fine!
lykos@lykos-VirtualBox:~/My_Projects/ember_sandbox(master)$ ember s
Could not start watchman; falling back to NodeWatcher for file system events.
Visit http://ember-cli.com/user-guide/#watchman for more info.
File: /home/lykos/My_Projects/ember_sandbox/app
The Broccoli Plugin: [object Object] failed with:
Error: watch /home/lykos/My_Projects/ember_sandbox/app ENOSPC
at exports._errnoException (util.js:1026:11)
... (error details truncated for brevity) ...
Livereload server on http://localhost:49152
Serving on http://localhost:4200/
Additional information:
$ ember -v
Could not start watchman; falling back to NodeWatcher for file system events.
Visit http://ember-cli.com/user-guide/#watchman for more info.
ember-cli: 2.9.1
node: 6.9.1
os: linux x64
Contents of my package.json file:
{
"name": "ember_sandbox",
... (package.json contents omitted for brevity) ...
}
Any suggestions on how to resolve this peculiar issue?