作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Gruntfile.js
包含 Compass 的任务:
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// FILE PATHS (custom)
dir: {
css: 'resources/styles/css',
fonts: 'resources/fonts',
html: 'resources/html',
images: 'resources/images',
includes: 'resources/includes',
node_modules: 'node_modules',
prototypes: 'resources/html/prototypes',
resources: 'resources',
scripts: 'resources/scripts',
scss: 'resources/styles/scss',
styles: 'resources/styles',
styleguide: 'resources/styleguide',
vendor: 'resources/vendor',
user: {
htdocs: '/Volumes/VR\ Mini\ Backup/Backups/Web/Active/myproject/htdocs'
}
},
// COMPASS
compass: {
dist: {
options: {
...
importPath: [
'<%= dir.user.htdocs %>/<%= dir.resources %>/vendor',
'<%= dir.user.htdocs %>/<%= dir.resources %>/fonts'
]
importPath
.这需要一个绝对/系统路径。一个例子
importPath
是
/system/path/to/htdocs/resources/vendor
.
/system/path/to/htdocs
动态的。
Gruntfile.js
的路径吗?从这个文件中?
最佳答案
您可以利用 Node's path module .
在 gruntfile 的顶部,添加 var path = require('path');
.path.resolve()
会给你绝对路径。
关于compass-sass - 如何在 Gruntfile 中访问 Gruntfile 的绝对路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18904729/
我是一名优秀的程序员,十分优秀!