- **Codebase Cleanup**:
- Removed `cli.ts` and `textEncoding.ts` from `cli-package/src`:
- Deleted outdated CLI logic and text encoding utilities no longer actively used or maintained.
- **Purpose**:
- Simplify the repository by eliminating unused and redundant code, reducing maintenance overhead.
12 lines
417 B
JavaScript
Executable file
12 lines
417 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/**
|
|
* DEPRECATED: Script to build and publish both the main package and CLI package
|
|
*
|
|
* This script is no longer functional as the CLI package has been removed.
|
|
* Use 'npm publish' directly to publish the main package only.
|
|
*/
|
|
|
|
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)
|