File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ echo ""
1010export ELECTRON_MODE=true
1111export NODE_ENV=production
1212
13+ # Add Python to PATH (required for electron-builder DMG creation on macOS)
14+ export PATH=" /opt/homebrew/opt/python@3.14/libexec/bin:$PATH "
15+
1316# Install dependencies
1417echo " 📦 Installing dependencies..."
1518npm install
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ export ELECTRON_MODE=true
1111export ELECTRON_START_URL=http://localhost:5173
1212export NODE_ENV=development
1313
14+ # Add Python to PATH (required for electron-builder on macOS)
15+ export PATH=" /opt/homebrew/opt/python@3.14/libexec/bin:$PATH "
16+
1417# Check if Figma Desktop is running
1518if ! curl -s http://localhost:3845/mcp > /dev/null 2>&1 ; then
1619 echo " ⚠️ Warning: Figma Desktop MCP server not detected on port 3845"
Original file line number Diff line number Diff line change 5757
5858# DMG configuration
5959dmg :
60- title : " ${productName} ${version}"
60+ title : " MCP-Figma-to-Code- ${version}"
6161 icon : build/Collections.icns
6262 background : build/background.png
6363 contents :
You can’t perform that action at this time.
0 commit comments