加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hai2007_nodejs.config.js 879 Bytes
一键复制 编辑 原始数据 按行查看 历史
const fs = require('fs');
const path = require('path');
module.exports = {
// 当前配置文件的相对路径上下文
path: __dirname,
// package.json路径
pkg: '.',
// 定义任务
task(hai2007_nodejs, pkg, rootPath) {
[
'algorithm.js',
'algorithm.min.js'
].forEach(item => {
let filePath = path.join(rootPath, "./dist/" + item);
let banner =
`/*!
* 🔪 algorithm.js - ${pkg.description}
* ${pkg.repository.url}
*
* author ${pkg.author} < https://hai2007.gitee.io/sweethome >
*
* version ${pkg.version}
*
* Copyright (c) 2020-present hai2007 走一步,再走一步。
* Released under the ${pkg.license} license
*
* Date:${new Date()}
*/`;
fs.writeFileSync(filePath, banner + "\n" + fs.readFileSync(filePath));
});
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化