-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrename-to-mjs-v7.js
145 lines (126 loc) · 3.96 KB
/
rename-to-mjs-v7.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// rename-to-mjs.js (7 ver.)
// rename-to-mjs - renames .js to .mjs and updates imports to support the JavaScript module stack.
// rename-to-mjs - переименовывает .js в .mjs и обновляет импорты для поддержки модульного стека JavaScript.
import { promises as fs } from "fs"
import path from "path"
async function loadMessages() {
const data = await fs.readFile("./messages.json", "utf-8")
return JSON.parse(data)
}
const messages = await loadMessages()
const directory = "dist"
const importPathCache = new Map()
const language = process.argv.includes("--ru") ? "ru" : "en"
function getMessage(key, placeholders = {}) {
let message = messages[language][key]
Object.keys(placeholders).forEach((placeholder) => {
message = message.replace(`{${placeholder}}`, placeholders[placeholder])
})
return message
}
async function updateImportPath(importPath, currentFilePath) {
if (importPath.startsWith("@/")) {
importPath = importPath.slice(2) // Удаляем '@/'
}
const builtInModules = [
"fs",
"path",
"os",
"http",
"https",
"url",
"querystring",
"stream",
"util",
"crypto",
"puppeteer",
"axios",
"stream",
"process",
"net",
"module",
"buffer",
"zlib",
]
if (builtInModules.includes(importPath)) {
return importPath
}
let updatedPath = importPath
if (importPath.startsWith("./") || importPath.startsWith("../")) {
const dir = path.dirname(currentFilePath)
updatedPath = path.resolve(dir, importPath)
updatedPath = path.relative(directory, updatedPath)
updatedPath = updatedPath.replace(/\\/g, "/")
if (!updatedPath.startsWith("./") && !updatedPath.startsWith("../")) {
updatedPath = "./" + updatedPath
}
updatedPath += updatedPath.endsWith(".mjs") ? "" : ".mjs"
} else {
updatedPath = `./${importPath}.mjs`
}
importPathCache.set(importPath, updatedPath)
return updatedPath
}
async function updateImports(content, filePath) {
const importRegex = /from ["'](\.?\/?.*?)["']/g
let matches = [...content.matchAll(importRegex)]
for (const match of matches) {
const oldImport = match[0]
const importPath = match[1]
const newImportPath = await updateImportPath(importPath, filePath)
const newImport = `from "${newImportPath}"`
content = content.replace(oldImport, newImport)
console.log(
getMessage("fileChanged", {
filePath: filePath,
oldImport: oldImport,
newImport: newImport,
}),
)
}
return content
}
async function processFile(fullPath) {
try {
let content = await fs.readFile(fullPath, "utf8")
content = await updateImports(content, fullPath)
const newPath = fullPath.replace(/\.js$/, ".mjs")
await fs.writeFile(newPath, content, "utf8")
await fs.unlink(fullPath)
console.log(getMessage("fileRenamed", { fullPath, newPath }))
} catch (error) {
console.error(getMessage("fileProcessingError", { fullPath, error }))
}
}
async function renameFilesInDirectory(dir) {
const files = await fs.readdir(dir, { withFileTypes: true })
const tasks = files.map((file) => {
const fullPath = path.join(dir, file.name)
if (file.isDirectory()) {
return renameFilesInDirectory(fullPath)
} else if (
file.name.endsWith(".js") &&
!file.name.endsWith(".d.ts") &&
!file.name.endsWith(".js.map")
) {
return processFile(fullPath)
}
})
await Promise.all(tasks)
}
async function main() {
try {
await fs.access(directory)
await renameFilesInDirectory(directory)
console.log(getMessage("allFilesRenamed"))
} catch (error) {
console.error(getMessage("genericError", { error }))
throw new Error(`Ошибка: ${error.message}`)
}
}
main()
.then(() => console.log(getMessage("scriptCompleted")))
.catch((error) => {
console.error(getMessage("scriptExecutionError", { error: error.message }))
throw new Error(`Ошибка: ${error.message}`)
})