gpt4 book ai didi

wordpress - grunt sass 向输出文件添加注释

转载 作者:行者123 更新时间:2023-12-05 09:22:40 25 4
gpt4 key购买 nike

我正在使用 grunt sass 在 Wordpress 主题中输出我的 css。

我通常会将我的 css 输出到 thestyles.css 并在 style.css 中使用 @import(thestyles.css)

我正在使用 respond.js,所以我不能在 style.css 文件中使用 @import。

我想将我的 css 直接输出到 style.css,但我需要 Wordpress 顶部的注释。

*/
Theme Name: Forum
Theme URI:
Description:
Author:
Author URI:
Version: 1.0
Tags:
/*

我可以使用横幅添加评论吗

sass: {
dist: {
options: {
banner:
'
*/
Theme Name: Forum
Theme URI:
Description:
Author:
Author URI:
Version: 1.0
Tags:
/*
'
},
files: {
"src/php/wp-content/themes/forum/style.css": "src/sass/forum/output.scss"
}
}
},

最佳答案

你应该放一个!所以横幅不会被缩小器删除。

您也可以像这样从 package.json 中提取您的信息:

在 Gruntfile.js 中

pkg: pkg: grunt.file.readJSON('package.json'),
sass: {
dist: {
options: {
banner: '/*!\n' +
' * Theme Name: Forum\n' +
' * Theme URI: <%= pkg.url %>\n' +
' * Description: <%= pkg.description %>\n' +
' * Author: <%= pkg.author.name %>\n' +
' * Author URI: <%= pkg.author.email %>\n' +
' * Version: <%= pkg.version %>\n' +
' * Tags:\n' +
' */\n'

关于wordpress - grunt sass 向输出文件添加注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25227538/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com