0 Star 2 Fork 1

PASSER-BY/relationship

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gulpfile.js 727 Bytes
一键复制 编辑 原始数据 按行查看 历史
PASSER-BY 提交于 2024-08-02 20:05 . 繁体字 “岳”字的处理
const gulp = require('gulp');
const rename = require("gulp-rename");
const cht = require('gulp-cht');
const replace = require('gulp-replace');
gulp.task('localization', () => {
// gulp.src('./index.html')
// .pipe(cht())
// .pipe(rename("zh-HK.html"))
// .pipe(gulp.dest("./"));
return gulp.src([
'dist/relationship.min.js',
'dist/relationship.min.mjs',
'dist/relationship-mode.min.js',
'dist/relationship-mode.min.mjs',
]).pipe(cht())
.pipe(replace('',''))
.pipe(rename(function(path) {
path.basename = path.basename.replace('.min','.zh-HK.min');
}))
.pipe(gulp.dest('dist/lang/'))
});
gulp.task('default', gulp.series(['localization']))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/passer-by/relationship.git
git@gitee.com:passer-by/relationship.git
passer-by
relationship
relationship
master

搜索帮助