npm run build打包jquery项目

build.js 文件代码如下

const fs = require('fs');
const path = require('path');
  
// 指定要打包的HTML文件路径和输出目录路径
var pathName = "./";
const outputDir = 'dist';


// 匹配html文件
var ipReg = /\.(htm|html|js|version)$/i;

// 创建输出目录(如果不存在)
if (!fs.existsSync(outputDir)) {
  fs.mkdirSync(outputDir);
}  

// 遍历源文件夹中的所有文件和子文件夹
function xunhuan(subTargetPath,subSourcePath) {
  fs.mkdirSync(subTargetPath, { recursive: true });
  // 递归复制子文件夹里的文件和子文件夹
  fs.readdirSync(subSourcePath).forEach((fileOrDir) => {
    const subSubSourcePath = path.join(subSourcePath, fileOrDir);
    const subSubTargetPath = path.join(subTargetPath, fileOrDir);
    if (fs.lstatSync(subSubSourcePath).isFile()) {
      fs.copyFileSync(subSubSourcePath, subSubTargetPath);
    } else if (fs.lstatSync(subSubSourcePath).isDirectory()) {
      xunhuan(subSubTargetPath,subSubSourcePath)
    }
  });
}
// 遍历源文件夹中的所有文件和子文件夹
fs.readdirSync(pathName).forEach((fileOrDir) => {
  // 源文件或文件夹的完整路径  
  const sourcePath = path.join(pathName, fileOrDir);
  // 目标文件或文件夹的完整路径  
  const targetPath = path.join(outputDir, fileOrDir);

  // 判断是文件还是文件夹
  if (fs.lstatSync(sourcePath).isFile()) {
    if (ipReg.test(fileOrDir) && fileOrDir.indexOf('proxy') < 0 && fileOrDir.indexOf('build') < 0 && fileOrDir.indexOf('server') < 0) {
      // 如果是文件,则直接复制
      fs.copyFileSync(sourcePath, targetPath);
    }
  } else if (fileOrDir != 'dist' && fileOrDir != '.git' && fileOrDir!="node_modules" && fs.lstatSync(sourcePath).isDirectory()) {
    xunhuan(targetPath,sourcePath);
  }
});

主要是用node代码 读取文件内容判断文件还是文件夹,文件夹就继续循环判断,将目录结构保留,一起打包到dist文件

写这个的原因 也是因为同事不知道发给运维哪些文件,有些文件只是我们开发要,并不部署的所以就过滤掉。

相关推荐
景天科技苑7 分钟前
【vue3+vite】新一代vue脚手架工具vite,助力前端开发更快捷更高效
前端·javascript·vue.js·vite·vue项目·脚手架工具
小行星12518 分钟前
前端预览pdf文件流
前端·javascript·vue.js
小行星12525 分钟前
前端把dom页面转为pdf文件下载和弹窗预览
前端·javascript·vue.js·pdf
Lysun00134 分钟前
[less] Operation on an invalid type
前端·vue·less·sass·scss
J总裁的小芒果1 小时前
Vue3 el-table 默认选中 传入的数组
前端·javascript·elementui·typescript
Lei_zhen961 小时前
记录一次electron-builder报错ENOENT: no such file or directory, rename xxxx的问题
前端·javascript·electron
咖喱鱼蛋1 小时前
Electron一些概念理解
前端·javascript·electron
yqcoder1 小时前
Vue3 + Vite + Electron + TS 项目构建
前端·javascript·vue.js
鑫宝Code1 小时前
【React】React Router:深入理解前端路由的工作原理
前端·react.js·前端框架
Mr_Xuhhh2 小时前
重生之我在学环境变量
linux·运维·服务器·前端·chrome·算法