We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9052474 commit 7d1588dCopy full SHA for 7d1588d
prebuild.js
@@ -8,6 +8,7 @@ function copyIcon(src, dst) {
8
console.warn(`Icon path for ${dst} is not defined in your environment variables`)
9
return
10
}
11
+ console.log(`Replacing icon ${dst} by ${src}`)
12
if (!fs.existsSync(src)) {
13
console.warn(`Icon file ${src} does not exist.`)
14
@@ -30,6 +31,7 @@ function updatePackageJson() {
30
31
ASSISTANT_NAME_EN: process.env.ASSISTANT_NAME_EN || "DevChat",
32
ASSISTANT_NAME_ZH: process.env.ASSISTANT_NAME_ZH || "DevChat"
33
34
+ console.log(`Updating package.json, env: ${JSON.stringify(placeholders)}`)
35
36
let packageJson = fs.readFileSync('package.json', 'utf8');
37
0 commit comments