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 dbaaf1b commit 0a5dee5Copy full SHA for 0a5dee5
scripts/build-all-assets.js
@@ -1,4 +1,6 @@
1
import { execSync } from 'node:child_process'
2
3
-console.log('🔨 Running DXT build as part of semantic-release prepare step...');
4
-execSync('npm run build:dxt', { stdio: 'inherit' });
+export const prepare = async () => {
+ 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