1 Star 18 Fork 7

孑孓/wx-qr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gulpfile.js 601 Bytes
一键复制 编辑 原始数据 按行查看 历史
孑孓 提交于 2021-12-28 15:48 . feat: 完善md,增加接口
const gulp = require("gulp");
const path = require("path");
const util = require("util");
const exec = util.promisify(require("child_process").exec);
const exampleDir = path.resolve(__dirname, "./example/miniprogram/wx-qr");
const outputDir = path.resolve(__dirname, "./dist");
function copy(exts) {
const srcPath = exts.map((ext) => `${exampleDir}/**/*.${ext}`);
return gulp.src(srcPath).pipe(gulp.dest(outputDir));
}
async function tsCompiler() {
await exec(`npx tsc --declaration`);
}
gulp.task("default", async (cb) => {
await tsCompiler();
copy(["wxss", "wxml", "json"]);
cb();
});
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/liu_di/wx-qr.git
git@gitee.com:liu_di/wx-qr.git
liu_di
wx-qr
wx-qr
master

搜索帮助