我的Gruntfile在相同任务的两个目标"files"
和dist
之间共享了dev
个重复内容。以下是仅包含Stylus问题的示例:
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
grunt.initConfig({
stylus: {
dist: {
files: { "www/bundle.css": ["stylus/*.styl"] },
options: { compress: true, linenos: false }
},
dev: {
files: { "www/bundle.css": ["stylus/*.styl"] },
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
有没有办法将文件配置移动到一个级别,所以我不必在两个目标中重复它?
答案 0 :(得分:11)
Domenic,您可以使用POJS变量:
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
var stylusFiles = { "www/bundle.css": ["stylus/*.styl"] };
grunt.initConfig({
stylus: {
dist: {
files: stylusFiles,
options: { compress: true, linenos: false }
},
dev: {
files: stylusFiles,
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
或者您可以按照Grunt "Configuring Tasks" Guide使用模板。
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
grunt.initConfig({
stylus: {
dist: {
files: { "www/bundle.css": ["stylus/*.styl"] },
options: { compress: true, linenos: false }
},
dev: {
files: "<%= stylus.dist.files %>",
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
答案 1 :(得分:5)
查看模板:http://gruntjs.com/configuring-tasks#templates
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
grunt.initConfig({
stylus: {
dist: {
files: {
"www/bundle.css": ["stylus/*.styl"],
},
options: { compress: true, linenos: false }
},
dev: {
files: "<%= stylus.dist.files %>",
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
答案 2 :(得分:1)
你可以将配置文件传递给grunt,我没有测试下面的代码,但它应该可行。我之前没有使用配置键,只有值。希望它至少是一个开始。
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
var buildConfig = {
output: "www/bundle.css",
files: ["stylus/*.styl"],
};
grunt.initConfig({
config: buildConfig,
stylus: {
dist: {
files: {<%= config.output%>: <%= config.files %>},
options: { compress: true, linenos: false }
},
dev: {
files: {<%= config.output%>: <%= config.files %>},
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
答案 3 :(得分:1)
我过去曾采用过几种不同的方法。一种方法是利用环境变量并使用环境变量来切换触笔之类的简单标志。扩展此方法,您甚至可以注册为您设置标志的任务。 E.g。
"use strict";
var env = 'DEV';
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
grunt.initConfig({
stylus: {
dist: {
files: { "www/bundle.css": ["stylus/*.styl"] },
options: { compress: env === 'PROD', linenos: env === 'DEV' }
}
}
});
grunt.registerTask('production', function () {
env = 'PROD';
});
grunt.registerTask("dev", ["stylus"]);
grunt.registerTask("prod", ["production", "dev"]);
};
您也可以使用模板路由或扩展基础对象,但我通常会发现标记很简单,可以使用。
答案 4 :(得分:0)
您可以在grunt配置中将其添加为订单项:
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
grunt.initConfig({
cssFiles: ["stylus/*.styl"],
stylus: {
dist: {
files: { "www/bundle.css": '<%= cssFiles %>' },
options: { compress: true, linenos: false }
},
dev: {
files: { "www/bundle.css": '<%= cssFiles %>' },
options: { compress: false, linenos: true }
}
}
});
grunt.registerTask("dev", ["stylus:dev"]);
grunt.registerTask("prod", ["stylus:prod"]);
};
如果您需要更多示例,请查看我在我的某个项目中使用的文件: https://github.com/sugendran/cheatsheet.js/blob/master/Gruntfile.js
答案 5 :(得分:0)
非常确定这样的作品......
"use strict";
module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-stylus");
var files = { "www/bundle.css": ["stylus/*.styl"] };
var options;
grunt.registerTask("config", function() {
grunt.initConfig({
stylus: {
main: {
files: files,
options: options
}
}
});
});
grunt.registerTask("setup-prod", function () {
options = { compress: false, linenos: true };
});
grunt.registerTask("setup-dev", function () {
options: { compress: true, linenos: false };
});
grunt.registerTask("dev", ["setup-dev", "config", "stylus"]);
grunt.registerTask("prod", ["setup-prod", "config", "stylus"]);
};
看起来您也可以通过直接编辑grunt.config.data来重新调用initConfig()来更改配置。