2025-07-02 11:32:06 -07:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
|
|
/**
|
2025-08-02 17:22:49 -07:00
|
|
|
* DEPRECATED: Script to build and publish both the main package and CLI package
|
2025-07-02 11:32:06 -07:00
|
|
|
*
|
2025-08-02 17:22:49 -07:00
|
|
|
* This script is no longer functional as the CLI package has been removed.
|
|
|
|
|
* Use 'npm publish' directly to publish the main package only.
|
2025-07-02 11:32:06 -07:00
|
|
|
*/
|
|
|
|
|
|
2025-08-02 17:22:49 -07:00
|
|
|
console.error('This script is deprecated. The CLI package has been removed.')
|
|
|
|
|
console.error('To publish the main package only, use: npm publish')
|
|
|
|
|
process.exit(1)
|