mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
- 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
15 lines
No EOL
351 B
Bash
Executable file
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" |