super-productivity/packages/plugin-api/publish.sh
2025-06-19 14:25:42 +02:00

15 lines
No EOL
351 B
Bash
Executable file

#!/bin/bash
# Script to build and publish the plugin API package
set -e
echo "Building @super-productivity/plugin-api..."
npm run build
echo "Testing the package..."
npm pack --dry-run
echo "Ready to publish!"
echo "To publish to npm, run: npm publish --access public"
echo "To publish a beta version, run: npm publish --tag beta --access public"