mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
no message
This commit is contained in:
parent
2d5a6d6e96
commit
27987a3e4e
@ -4,21 +4,21 @@
|
||||
* @Autor: 地虎降天龙
|
||||
* @Date: 2024-01-08 09:01:48
|
||||
* @LastEditors: 地虎降天龙
|
||||
* @LastEditTime: 2024-01-08 15:54:14
|
||||
* @LastEditTime: 2024-05-14 15:56:00
|
||||
*/
|
||||
const compressing = require('compressing')
|
||||
const fs = require('fs')
|
||||
var path = require('path')
|
||||
|
||||
// 示例代码
|
||||
const args = process.argv; // 包含了所有的命令行参数,第一个元素为 node 路径,第二个元素为脚本文件名
|
||||
const args = process.argv // 包含了所有的命令行参数,第一个元素为 node 路径,第二个元素为脚本文件名
|
||||
|
||||
if (!args[2]) {
|
||||
console.error('【类型:creat、package、install】 参数错误')
|
||||
return
|
||||
}
|
||||
|
||||
function fileExistsWithCaseSync (filepath) {
|
||||
function fileExistsWithCaseSync(filepath) {
|
||||
var dir = path.dirname(filepath)
|
||||
if (dir === path.dirname(dir)) {
|
||||
return true
|
||||
@ -43,7 +43,7 @@ const packagePlugins = (pluginName) => {
|
||||
const packagePath = `./pluginMaker/packages/${pluginName}.zip`
|
||||
// compressing.zip.compressDir(pluginPath, packagePath, { ignoreBase: false })
|
||||
// .then(() => {
|
||||
// console.log(`打包插件_:【 ${pluginName} 】 成功。地址:${packagePath}`)
|
||||
// console.log(`打包插件_:【 ${pluginName} 】 成功。 地址:${packagePath}`)
|
||||
// })
|
||||
// .catch(err => {
|
||||
// console.error(err)
|
||||
@ -52,13 +52,14 @@ const packagePlugins = (pluginName) => {
|
||||
zipStream.addEntry(pluginPath, { relativePath: pluginPath, ignoreBase: true })
|
||||
zipStream.addEntry(`./public/plugins/${pluginName}`, { relativePath: `./public/plugins/${pluginName}`, ignoreBase: true })
|
||||
const destStream = fs.createWriteStream(packagePath)
|
||||
zipStream.pipe(destStream)
|
||||
zipStream
|
||||
.pipe(destStream)
|
||||
.on('finish', () => {
|
||||
console.log(`打包插件_:【 ${pluginName} 】 成功。地址:${packagePath}`)
|
||||
})
|
||||
.on('error', (err) => {
|
||||
console.error(err)
|
||||
});
|
||||
})
|
||||
}
|
||||
const installPlugins = (pluginName) => {
|
||||
if (!pluginName) {
|
||||
@ -78,11 +79,12 @@ const installPlugins = (pluginName) => {
|
||||
return
|
||||
}
|
||||
// 解压插件 到 目录
|
||||
compressing.zip.uncompress(packagePath, './')
|
||||
compressing.zip
|
||||
.uncompress(packagePath, './')
|
||||
.then(() => {
|
||||
console.log(`安装插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。安装文件包请自行删除。`)
|
||||
})
|
||||
.catch(err => {
|
||||
.catch((err) => {
|
||||
console.error(err)
|
||||
})
|
||||
}
|
||||
@ -107,25 +109,26 @@ const createPlugins = (pluginName) => {
|
||||
})
|
||||
|
||||
// 解压对应的模版代码到对应的目录
|
||||
compressing.zip.uncompress('./pluginMaker/template.zip', pluginPath)
|
||||
compressing.zip
|
||||
.uncompress('./pluginMaker/template.zip', pluginPath)
|
||||
.then(() => {
|
||||
// 要替换的字符及其替换后的内容
|
||||
const configFile = pluginPath + '/config.js'
|
||||
|
||||
// 获得当前日期
|
||||
const currentDate = new Date()
|
||||
const year = currentDate.getFullYear()// 获取年份
|
||||
const year = currentDate.getFullYear() // 获取年份
|
||||
const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获取月份(注意月份是从 0 开始的,需要加 1)
|
||||
const day = String(currentDate.getDate()).padStart(2, '0') // 获取日期
|
||||
const formattedDate = `${year}-${month}-${day}`
|
||||
|
||||
const replaceCharacters = {
|
||||
'template': pluginName,
|
||||
template: pluginName,
|
||||
'2024-01-01': formattedDate,
|
||||
}
|
||||
// 读取原始文件内容
|
||||
fs.readFile(configFile, 'utf8', (err, data) => {
|
||||
if (err) throw err;
|
||||
if (err) throw err
|
||||
// 遍历需要替换的字符列表
|
||||
for (let oldChar in replaceCharacters) {
|
||||
const newChar = replaceCharacters[oldChar]
|
||||
@ -134,19 +137,18 @@ const createPlugins = (pluginName) => {
|
||||
}
|
||||
// 将修改后的内容写入新文件
|
||||
fs.writeFile(configFile, data, 'utf8', (err) => {
|
||||
if (err) throw err;
|
||||
if (err) throw err
|
||||
console.log(`新建插件_:【 ${configFile} 】config修改完毕`)
|
||||
})
|
||||
})
|
||||
|
||||
console.log(`新建插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。请自行更改config.js`)
|
||||
})
|
||||
.catch(err => {
|
||||
.catch((err) => {
|
||||
console.error(err)
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
let type = args[2]
|
||||
if (type === 'create') {
|
||||
createPlugins(args[3])
|
||||
|
Loading…
x
Reference in New Issue
Block a user