Ai
2 Star 9 Fork 6

tencentcloud/tencentcloud-sdk-nodejs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_slim.js 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
tczzz 提交于 2025-03-24 16:56 +08:00 . feat: add build slim script (#272)
const esbuild = require("esbuild");
const path = require("path");
const fs = require("fs");
const root = path.join(__dirname, "..");
const buildOptions = {
platform: 'node',
target: ["node10"],
bundle: true,
format: "cjs",
mainFields: ["main"],
allowOverwrite: true,
entryPoints: [path.join(root, "src", "index.ts")],
supported: {
"dynamic-import": false,
},
outfile: path.join(root, "tencentcloud", "index.js"),
keepNames: true,
packages: "external",
external: ["node_modules/*"],
minify: true,
};
(async () => {
await esbuild.build(buildOptions);
})();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs.git
git@gitee.com:tencentcloud/tencentcloud-sdk-nodejs.git
tencentcloud
tencentcloud-sdk-nodejs
tencentcloud-sdk-nodejs
4.1.43

搜索帮助