不要使用“json”对象来查找/替换,而是使用下面 gulpfile.js 中的 RegEx 语法。您最终会build/php/templates/header.php
得到包含替换文本的内容:
<?php
$color = "blue";
?>
<head>
<link rel="stylesheet" src="style.css">
</head>
<body>
Your color is <?php echo $color; ?>
<body>
gulpfile.js
var gulp = require('gulp')
var replace = require('gulp-replace-task')
var config = {
src : 'src/php/**/*',
build: 'build/php'
}
gulp.task('build', function(cb) {
gulp.src(config.src)
.pipe(replace({
patterns: [
{
match: /COLOR/,
replacement: 'blue'
},
{
match: /main.css/,
replacement: 'style.css'
}
]
}))
.pipe(gulp.dest(config.build))
cb()
})
gulp.task('watch', function(cb) {
gulp.watch(config.src, ['build'])
})
gulp.task('default', ['build', 'watch'])
头文件.php
<?php
$color = "COLOR";
?>
<head>
<link rel="stylesheet" src="main.css">
</head>
<body>
Your color is <?php echo $color; ?>
<body>
项目文件结构
$ tree -I node_modules
.
├── build
│ └── php
│ └── templates
│ └── header.php
├── gulpfile.js
├── package.json
└── src
└── php
└── templates
└── header.php
6 directories, 4 files