| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // WARN 该文件只是方便我将当前项目同步到开源仓库,其他人不需要管这个文件~
- import { execSync } from 'node:child_process';
- import fs from 'node:fs';
- import path from 'node:path';
- import trash from 'trash';
- let allFile = [];
- const proDir = '/Users/huangshuisheng/Desktop/hss/billd-project/billd-live-pro';
- const freeDir = '/Users/huangshuisheng/Desktop/hss/galaxy-s10/billd-live';
- const ignoreRootDir = ['.DS_Store', '.git', 'node_modules', 'dist'];
- const ignoreIndexOf = [
- path.resolve(proDir, 'src/hooks'),
- path.resolve(proDir, 'src/store'),
- path.resolve(proDir, 'src/types'),
- path.resolve(proDir, 'src/utils'),
- path.resolve(proDir, 'src/views/pull'),
- path.resolve(proDir, 'src/views/push'),
- path.resolve(proDir, 'src/views/h5'),
- ];
- const dir = fs.readdirSync(proDir).filter((item) => {
- if (ignoreRootDir.includes(item)) {
- return false;
- }
- return true;
- });
- function findFile(inputDir) {
- for (let i = 0; i < inputDir.length; i += 1) {
- const file = inputDir[i];
- const filePath = `${proDir}/${file}`;
- const stat = fs.statSync(filePath);
- const isDir = stat.isDirectory();
- if (!isDir) {
- allFile.push(filePath);
- } else {
- findFile(fs.readdirSync(filePath).map((key) => `${file}/${key}`));
- }
- }
- }
- function putFile() {
- for (let i = 0; i < allFile.length; i += 1) {
- const file = allFile[i];
- const arr = [];
- const githubFile = file.replace(proDir, '');
- const githubFileArr = githubFile.split('/').filter((item) => item !== '');
- githubFileArr.forEach((item) => {
- if (arr.length) {
- arr.push(path.resolve(arr[arr.length - 1], item));
- } else {
- arr.push(path.resolve(freeDir, item));
- }
- });
- arr.forEach((item, index) => {
- // 数组的最后一个一定是文件,因此不需要判断它是不是目录
- if (index !== arr.length - 1) {
- const flag = fs.existsSync(item);
- !flag && fs.mkdirSync(item);
- }
- });
- fs.copyFileSync(file, path.join(freeDir, './', file.replace(proDir, '')));
- }
- }
- async function clearOld() {
- const freeDirAllFile = fs.readdirSync(freeDir);
- const queue = [];
- freeDirAllFile.forEach((url) => {
- const fullurl = `${freeDir}/${url}`;
- if (!['node_modules', '.git'].includes(url)) {
- queue.push(trash(fullurl));
- }
- });
- await Promise.all(queue);
- }
- if (process.cwd().indexOf('galaxy-s10') !== -1) {
- console.log('当前目录错误');
- } else {
- clearOld().then(() => {
- findFile(dir);
- allFile = allFile.filter((x) => {
- let flag = true;
- ignoreIndexOf.forEach((y) => {
- if (x.indexOf(y) === 0) {
- flag = false;
- }
- });
- return flag;
- });
- console.log(JSON.stringify(allFile));
- putFile();
- const currentPkgStr = fs.readFileSync(
- path.resolve(proDir, 'package.json'),
- 'utf-8'
- );
- const newPkg = JSON.parse(currentPkgStr);
- delete newPkg['private'];
- newPkg['name'] = 'billd-live';
- newPkg['repository']['url'] = 'https://github.com/galaxy-s10/billd-live';
- newPkg['bugs']['url'] = 'https://github.com/galaxy-s10/billd-live/issues';
- newPkg['devDependencies'] = {};
- newPkg['dependencies'] = {};
- fs.writeFileSync(
- path.resolve(freeDir, 'package.json'),
- // @ts-ignore
- JSON.stringify({ ...newPkg }, {}, 2)
- );
- execSync(`git rm -r --cached .`, { cwd: freeDir });
- execSync(`pnpm i`, { cwd: freeDir });
- execSync(`git add .`, { cwd: freeDir });
- execSync(`git commit -m 'feat: 优化-${new Date().toLocaleString()}'`, {
- cwd: freeDir,
- });
- execSync(`git push`, { cwd: freeDir });
- });
- }
|