{"id":26282377,"url":"https://github.com/deeeed/publisher","last_synced_at":"2026-04-27T17:31:12.531Z","repository":{"id":277778666,"uuid":"933463839","full_name":"deeeed/publisher","owner":"deeeed","description":"Flexible release management tool for JavaScript/TypeScript monorepos","archived":false,"fork":false,"pushed_at":"2025-07-15T11:16:25.000Z","size":198,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-16T01:19:00.245Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deeeed.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-16T02:35:03.000Z","updated_at":"2025-07-15T11:16:29.000Z","dependencies_parsed_at":"2025-02-16T03:23:57.084Z","dependency_job_id":"c69a0060-9c00-4ea9-b2fc-5c5cc1daec97","html_url":"https://github.com/deeeed/publisher","commit_stats":null,"previous_names":["deeeed/publisher"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/deeeed/publisher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeeed%2Fpublisher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeeed%2Fpublisher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeeed%2Fpublisher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeeed%2Fpublisher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deeeed","download_url":"https://codeload.github.com/deeeed/publisher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deeeed%2Fpublisher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32348000,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T17:12:42.749Z","status":"ssl_error","status_checked_at":"2026-04-27T17:12:41.658Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-14T16:50:00.390Z","updated_at":"2026-04-27T17:31:12.513Z","avatar_url":"https://github.com/deeeed.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e ⚠️ **WARNING: DEVELOPMENT IN PROGRESS** ⚠️\n\u003e \n\u003e This package is currently under active development and is **NOT** ready for production use.\n\u003e The API is unstable and subject to breaking changes. Please check back later for the stable release.\n\n# @siteed/publisher\n\nA flexible and powerful release management tool designed for JavaScript/TypeScript monorepos. Automates version management, changelog generation, and package publishing with support for various package managers and CI/CD workflows.\n\n## Features\n\n- 🎯 **Monorepo-aware**: Handles dependencies and versioning across workspace packages\n- 🔄 **Flexible Workflows**: Supports different release strategies (independent/fixed/custom)\n- 📦 **Package Manager Agnostic**: Works with npm, and Yarn\n- 🔧 **Highly Configurable**: Customize every aspect of your release process\n- 🤖 **CI/CD Ready**: Automate releases in your CI/CD pipeline\n- 📝 **Smart Changelog**: Generates and maintains changelogs automatically\n- 🪝 **Hooks**: Pre and post-release hooks for custom tasks\n- 🔍 **Validation**: Ensures releases are safe and consistent\n\n## Installation\n\n```bash\n# yarn\nyarn add -D @siteed/publisher\n```\n\n## Quick Start\n\n1. Initialize release configuration in your package:\n```bash\nnpx publisher init\n```\n\n2. Configure publisher.config.ts:\n```typescript\nimport { ReleaseConfig } from '@siteed/publisher';\n\nexport default {\n  packageManager: 'yarn',\n  changelogFile: 'CHANGELOG.md',\n  git: {\n    tagPrefix: 'v',\n    requireCleanWorkingDirectory: true,\n    commit: true,\n    push: true\n  },\n  hooks: {\n    preRelease: async () =\u003e {\n      await exec('yarn test');\n      await exec('yarn build');\n    },\n    postRelease: async () =\u003e {\n      await exec('yarn deploy:docs');\n    }\n  }\n} satisfies ReleaseConfig;\n```\n\n3. Release your package:\n```bash\nnpx publisher publish\n```\n\n## Configuration\n\n### Global Configuration\nCreate a `.publisher.config.ts` in your root directory for monorepo-wide settings:\n\n```typescript\nimport { MonorepoConfig } from '@siteed/publisher';\n\nexport default {\n  versionStrategy: 'independent',\n  conventionalCommits: true,\n  packageManager: 'yarn',\n  gitFlow: false,\n  packages: {\n    'packages/*': {\n      // Default package configuration\n    }\n  }\n} satisfies MonorepoConfig;\n```\n\n### Package-specific Configuration\nEach package can have its own `publisher.config.ts`:\n\n```typescript\nexport default {\n  tagPrefix: 'my-package-v',\n  npm: {\n    publish: true,\n    registry: 'https://registry.npmjs.org'\n  },\n  hooks: {\n    // Package-specific hooks\n  }\n};\n```\n\n## Usage\n\n```bash\n# Show available commands\npublisher --help\n\n# Initialize configuration\npublisher init [package]\n\n# Release a specific package\npublisher publish my-package\n\n# Release multiple packages\npublisher publish pkg1 pkg2\n\n# Release all packages that have changes\npublisher publish --all\n\n# Dry run\npublisher publish --dry-run\n\n# Custom version\npublisher publish --version 1.2.3\n```\n\n## Advanced Features\n\n- **Version Strategies**\n  - Independent: Each package versioned independently\n  - Fixed: All packages share the same version\n  - Custom: Define your own versioning logic\n\n- **Changelog Generation**\n  - Conventional commits support\n  - Custom templates\n  - Multi-package changelogs\n\n- **Git Integration**\n  - Smart tagging\n  - Branch protection\n  - Custom commit messages\n\n- **CI/CD Integration**\n  - Non-interactive mode\n  - Environment variable support\n  - Custom authentication\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for development setup and contribution guidelines.\n\n## License\n\nMIT © Arthur Breton\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeeed%2Fpublisher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeeeed%2Fpublisher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeeeed%2Fpublisher/lists"}