文件操作 - transform.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/unplugin/dist/webpack/loaders/transform.js
编辑文件内容
import "../../context-CyqyI0ug.js"; import { createBuildContext, createContext } from "../../context-DvA_cJ4P.js"; //#region src/webpack/loaders/transform.ts async function transform(source, map) { const callback = this.async(); const { plugin } = this.query; if (!plugin?.transform) return callback(null, source, map); const context = createContext(this); const res = await plugin.transform.call(Object.assign({}, createBuildContext({ addWatchFile: (file) => { this.addDependency(file); }, getWatchFiles: () => { return this.getDependencies(); } }, this._compiler, this._compilation, this), context), source, this.resource); if (res == null) callback(null, source, map); else if (typeof res !== "string") callback(null, res.code, map == null ? map : res.map || map); else callback(null, res, map); } //#endregion export { transform as default };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件