1 Star 0 Fork 124

majie77/third_party_typescript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.gulp.js 629 Bytes
一键复制 编辑 原始数据 按行查看 历史
zju_wyx 提交于 2025-05-21 21:38 +08:00 . Convert codebase from namespace into module
const cp = require("child_process");
const path = require("path");
const chalk = require("chalk");
const argv = process.argv.slice(2);
// --tasks-simple is used by VS Code to infer a task list; try and keep that working.
if (!argv.includes("--tasks-simple")) {
console.error(chalk.yellowBright("Warning: using gulp shim; please consider running hereby directly."));
}
const args = [
...process.execArgv,
path.join(__dirname, "node_modules", "hereby", "bin", "hereby.js"),
...argv,
];
const { status } = cp.spawnSync(process.execPath, args, { stdio: "inherit" });
process.exit(status ?? 1);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/majie77/third_party_typescript.git
git@gitee.com:majie77/third_party_typescript.git
majie77
third_party_typescript
third_party_typescript
master

搜索帮助