feat: update icons for extension and website, automate responsive logo sizes in build pipeline

This commit is contained in:
Timo
2026-06-04 14:46:55 +02:00
parent 886550408a
commit 6d5661ea45
42 changed files with 87 additions and 8 deletions
+2 -1
View File
@@ -32,7 +32,8 @@ function runCheck([label, command, args, options = {}]) {
const child = spawn(command, args, {
cwd: options.cwd || repoRoot,
env: { ...process.env, ...(options.env || {}) },
stdio: 'inherit'
stdio: 'inherit',
shell: process.platform === 'win32'
});
child.on('error', reject);
child.on('exit', (code) => {