我正在尝试查看sass目录。我在ubuntu 16.4系统上使用以下命令创建了sass项目
compass create sass
得到了结果
directory sass/ directory sass/sass/ directory sass/stylesheets/ create sass/config.rb create sass/sass/screen.scss create sass/sass/print.scss create sass/sass/ie.scss
write sass/stylesheets/ie.css
write sass/stylesheets/print.css
write sass/stylesheets/screen.css
********************************************************************* Congratulations! Your compass project has been created.
You may now add and edit sass stylesheets in the sass subdirectory of your project.
Sass files beginning with an underscore are called partials and won't be compiled to CSS, but they can be imported into other sass stylesheets.
You can configure your project by editing the config.rb configuration file.
You must compile your sass stylesheets into CSS when they change. This can be done in one of the following ways:
1. To compile on demand:
compass compile [path/to/project]
2. To monitor your project for changes and automatically recompile:
compass watch [path/to/project]
More Resources: * Website: http://compass-style.org/ * Sass: http://sass-lang.com * Community: http://groups.google.com/group/compass-users/
To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage: <head> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> <!--[if IE]>
<link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" /> <![endif]--> </head>
我尝试使用compass watch
结果显示错误,如下所示
指南针正在关注变化。按Ctrl-C停止。致命错误:侦听错误:无法监视目录的更改。访问 https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers 有关如何解决此问题的信息。 bharathi @ bharathi-H81M-S:〜/股/ springwisev2 /可湿性粉剂内容/主题/ Springwise 2016 / library / sass $ compass watch
答案 0 :(得分:13)
尝试从您的控制台执行此操作:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
希望这对你有用
参考文献:click_here