使用时出现以下错误grunt compass
:
“您必须从项目目录编译单个样式表。”
我用 grunt 3 种不同的方式尝试了它。更多内容如下。
我的文件夹结构:
test \
Gruntfile.js
package.json
\ node_modules \
\ _src \ (this is the root folder of my Jekyll site)
\ config.rb
\ index.html
\ static/
\ _sass \
\ css \
\ images \
\ js \
什么有效:
一切正常,无需使用grunt
和使用/_src/config.rb
:
#project_path = "_src/"
http_path = "/"
css_dir = "css"
css_path = "static/" + css_dir
sass_dir = "_sass"
sass_path = "static/" + sass_dir
images_dir = "images"
images_path = "static/" + images_dir
output_style = :expanded
relative_assets = true
line_comments = false
所以,在/src
我可以用compass watch
.
什么不起作用
无论如何,我决定放弃所有 GUI 应用程序并使用grunt
. 这就是问题开始的地方。
我也是最新的:
$ grunt --version
>> grunt-cli v0.1.13
$ npm -v
>> 1.4.3
$ node -v
>> v0.10.26
第一次尝试
我尝试的第一件事是尝试使用现有的config.rb
:
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Config
watch: {
compass: {
files: ['**/*.{scss,sass}'],
tasks: ['compass:dev']
},
js: {
// PLACEHOLDER HERE
}
},
compass: {
dev: {
// dev options
// ↓↓↓ HERE'S THE COMPASS CONFIG FILE ↓↓↓
options: { config: '_src/config.rb' }
},
prod: {
// prod options
},
},
jshint: {
options: { jshintrc: '.jshintrc' },
all: ['Gruntfile.js', '_src/static/js/*.js']
},
browserSync: {
files: {
src : [
'_src/static/css/*.css',
'_src/static/images/*',
'_src/static/js/*.js',
'_src/**/*.html'
],
},
options: {
watchTask: true
}
}
});
// Load the Grunt plugins.
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-browser-sync');
// Register the default tasks.
grunt.registerTask('default', ['compass:dev', 'browserSync', 'watch']);
grunt.registerTask('prod', ['compass:prod']);
};
grunt
从没有错误的工作中运行/test
,它甚至可以识别文件更改,但不会编译我的 sass。没有创建 css 文件。
我试过grunt compass watch --verbose
了,它中止了:
Running "compass:prod" (compass) task
Verifying property compass.prod exists in config...OK
File: [no files]
Options: cssDir=["_src/static/css"], sassDir=["_src/static/_sass"], imagesDir=["_src/static/images"], javascriptsDir=["_src/static/js"], fontsDir=["_src/static/fonts"], outputStyle="compressed", relativeAssets="true", noLineComments="true"
Options: cssDir=["_src/static/css"], sassDir=["_src/static/_sass"], imagesDir=["_src/static/images"], javascriptsDir=["_src/static/js"], fontsDir=["_src/static/fonts"], outputStyle="compressed", relativeAssets="true", noLineComments="true", time
You must compile individual stylesheets from the project directory.
Warning: ↑ Use --force to continue.
Aborted due to warnings.
......我根本不明白。
第二次尝试——首选尝试
由于无论如何我都不喜欢config.rb
坐在那里/_src/
,我将其删除并替换options: { config: '_src/config.rb' }
为Gruntfile.js
:
options: {
//config: '_src/config.rb'
cssDir: ['_src/static/css'],
sassDir: ['_src/static/_sass'],
imagesDir: ['_src/static/images'],
javascriptsDir: ['_src/static/js'],
fontsDir: ['_src/static/fonts'],
outputStyle: 'expanded',
relativeAssets: 'true',
noLineComments: 'false'
}
错误与前一个完全相同:
您必须从项目目录编译单独的样式表。
第三次尝试
作为最后的手段,我尝试将config.rb
根 ( /test
) 添加project_path = "_src"
到它并options: { config: 'config.rb' }
在 Gruntfile 中使用。这确实和我的其他试验一样糟糕。
我真的很喜欢 Gruntfile-only 版本的工作。我猜罗盘的基本路径不太好,但不知道该怎么做。
摘录我已经在 StackExchange 上阅读的内容以解决此问题
我已经读过:
- 构建自动化 - Grunt 指南针任务与此目录结构不兼容?- 堆栈溢出
- 试过
relativeAssets: 'false'
了
- 试过
- sass - “您必须从项目目录编译单个样式表”错误与指南针项目 - VoidCC
- 这里没有新的想法。对于 Sass、CSS、JS 等,我的目录都是不同的。
- 构建自动化 - Grunt 指南针任务与此目录结构不兼容?- 堆栈溢出
- 非常类似于我的问题。但是 OP 想要使用该
config.rb
文件,并希望将其放在他的文件夹结构中。
- 非常类似于我的问题。但是 OP 想要使用该
- sass - “您必须从项目目录编译单个样式表”错误与指南针项目 - VoidCC
- 作为解决方案的指南针问题
compass init
。尽管如此,我的指南针在没有咕噜声的情况下仍然有效。所以我驳回了这个。
- 作为解决方案的指南针问题
PS:我也使用 RVM 和 Git。但我想这些在这里无关紧要。
更新:
小步骤……一些进展(不是真的):
/Gruntfile.js
compass: {
dev: {
// dev options
options: {
config: 'config.rb',
cssDir: '_src/static/css',
sassDir: '_src/static/_sass'
}
},
我不明白为什么添加 config.rb (而不是像上面的“第二次尝试”那样把它全部写下来会改变一切,而 grunt 决定最终输出一个 css 文件。
/config.rb
http_path = "/"
css_dir = "static/css"
sass_dir = "static/_sass"
images_dir = "static/images"
javascript_dir = "static/js"
fonts_dir = "static/fonts"
relative_assets = false
萨斯:
.logo {
background-image: image-url($logo);
//width: image-width($logo);
//height: image-height($logo);
}
渲染的 CSS:
// relative_assets = true
// image still shows up, but it's not the sites root
// /test/_src/static/images ==> _src should be the root
background-image: url('../../../static/images/gaya-design-logo.png');
// relative_assets = false
background-image: url('/static/images/gaya-design-logo.png');
我也收到一个错误:
WARNING: 'gaya-design-logo.png' was not found (or cannot be read) in /Users/pattulus/Sites/test/static/images
这“很好”,因为我在使用常规时也得到了这个compass watch
。然而,随着咕噜声,当我取消注释 SASS 代码中的两行时,它会中止吐出:
Errno::ENOENT on line ["28"] of /Users/pattulus/.rvm/gems/ruby-2.0.0-p451@test/gems/compass-0.12.6/lib/compass/sass_extensions/functions/image_size.rb: No such file or directory - /Users/patte/Sites/test/static/images/gaya-design-logo.png
奇怪,因为“普通指南针”有效。我没有全局安装 compass,gem 只在这个项目文件夹中有效。所以排除了这种可能性。