super-productivity/packages/plugin-api/publish.sh
Johannes Millan d4d81bf511 feat(plugin-api): create foundational plugin API package
- Add @super-productivity/plugin-api package with TypeScript definitions
- Define core plugin interfaces, types, and manifest structure
- Add plugin hooks system for event-driven architecture
- Create plugin API type definitions and constants
- Add documentation and development guidelines
2025-06-27 18:13:19 +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"