Skip to content

Commit 0a5dee5

Browse files
committed
fix(cd): correctly mark build-all-assets script as prepare phase for semantic-release
1 parent dbaaf1b commit 0a5dee5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/build-all-assets.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import { execSync } from 'node:child_process'
22

3-
console.log('🔨 Running DXT build as part of semantic-release prepare step...');
4-
execSync('npm run build:dxt', { stdio: 'inherit' });
3+
export const prepare = async () => {
4+
console.log('🔨 Running DXT build as part of semantic-release prepare step...');
5+
return execSync('npm run build:dxt', { stdio: 'inherit' });
6+
}

0 commit comments

Comments
 (0)