使用grunt compass
时出现以下错误:
"您必须从项目目录中编译单个样式表。"
我用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"
并在Gruntfile中使用options: { config: 'config.rb' }
。这确实和我的其他试验一样差。
我真的很喜欢Gruntfile-only版本。我想罗盘的基本路径并不是很好,但无法弄清楚要做什么。
我已经读过:
relativeAssets: 'false'
技巧config.rb
文件,并希望将其置于其文件夹结构中。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(而不是像#34中那样写下来;第二次尝试"上面更改了所有内容并且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
SASS:
.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
时我也会得到这个。然而,随着grunt,当我取消注释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
奇怪的是"正常指南针"作品。我没有全局安装指南针,gem只在此项目文件夹中处于活动状态。所以排除了这种可能性。
答案 0 :(得分:5)
最后(在经过一天的试验和错误之后),归结为将relativeAssets设置为false。
我错误的第二次尝试"将布尔值设置为relativeAssets: 'false',
而不是relativeAssets: false,
。
那个和一些调整basePath
和"更多"。
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Config
watch: {
compass: {
files: ['**/*.{scss,sass}'],
tasks: ['compass:dev']
},
},
compass: {
dev: {
// dev options
options: {
httpPath: '/',
basePath: '_src',
cssDir: 'static/css',
sassDir: 'static/_sass',
imagesDir: 'static/images',
javascriptsDir: 'static/js',
fontsDir: 'static/fonts',
outputStyle: 'expanded',
relativeAssets: false,
noLineComments: false
}
},
},
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']);
};
这肯定是漫长的一天......事实上我自从星期五以来一直试图让这个运行完全像这样(使用browserSync和整个战利品)。希望能帮助下一个人。