我生成了 css 文件的副本,将副本的扩展名从 更改为.css
,.html
还添加了<style>
元素来环绕 css 规则。以下是结果...我知道这一切听起来不合理,但这是我针对特定 Google 应用程序所需的“有意”格式。
以下是复制的文件,现在是一个名为 page-css.html 的 HTML 文件
<style>
html body {
border: solid 1rem blue;
}
html body .form-row {
margin-bottom: 15px;
}
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInBhZ2UtY3NzLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0k7RUFDSTs7QUFFQTtFQUNJIiwiZmlsZSI6InBhZ2UtY3NzLmNzcyIsInNvdXJjZXNDb250ZW50IjpbImh0bWwge1xyXG4gICAgYm9keSB7XHJcbiAgICAgICAgYm9yZGVyOiBzb2xpZCAxcmVtIGJsdWU7XHJcblxyXG4gICAgICAgIC5mb3JtLXJvdyB7XHJcbiAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IDE1cHg7XHJcbiAgICAgICAgfVxyXG4gICAgfVxyXG59Il19 */
</style>
如何使用 Gulp 从该文件中删除整个源映射字符串以使其消失?
我努力了...
- gulp-decomment
- gulp 字符串替换
- 吞下条评论
都以相似的方式...
const htmlmin = require('gulp-htmlmin');
const decomment = require('gulp-decomment');
const replace = require('gulp-string-replace');
const strip = require('gulp-strip-comments');
...
//example 1
.pipe(decomment({trim: true}))
//example 2
.pipe(htmlmin({ removeComments: true }))
//example 3
.pipe(strip())
...但是这些包都无法用于替换/删除整个源映射行...
我考虑过使用gulp-string-replace
,但我找不到任何关于如何删除特殊字符及其之间的任何内容的学习点。(例如/*#, *, */, ' '
)。
以下是我通过 gulp 尝试完成此过程的尝试。但即使使用gulp-replace
(greplace
如下所示),它也不会删除源映射行......
完整的 Gulp 代码示例
function genCSS(done) {
return (
src(paths.styles.src)
.pipe(gulpif(!GPREP, sourcemaps.init({})))
.pipe(sass().on("error", sass.logError))
.pipe(
gulpif(
!GPREP, sourcemaps.write({
addComment: true,
})
)
)
//CSS FILE WITH ITS SOURCEMAP IS READY FOR LOCAL DEV PURPOSES
.pipe(dest(paths.styles.dest))
//BEGIN THE COPIED/CONVERTED HTML FILE FOR GOOGLE APP PURPOSES
.pipe(
rename(function (path) {
if (path.basename === "page-css") {
path.extname = ".html";
}
})
)
.pipe(header("<style>\n"))
.pipe(footer("</style>\n"))
//ATTEMPTING TO REMOVE THE SOURCEMAP - BUT IT DOES NOT WORK...
.pipe(greplace(/\/\*# sourceMappingURL[^\n]+\n/gm,''))
//STORE THE FILE IN A CLASP LOCATION TO PUSH UP TO GOOGLE
.pipe(dest(paths.styles.apps))
.pipe(msync.stream())
);
done();
}
非常感谢这个学习过程!
如果您确信格式一致,则可以使用gulp-replace和 RegEx。