1.1.0 • Published 3 years ago

@codedependant/release-config-core v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

semantic-release-tools

Monorepo containing various packages specific to semantic-release configurations and plugins

Installation

This project is managed with the pnpm package manager. It allows for local testing and development of local packages without having to publish them. It additionally allows for centralized dependency management while maintaining the strict isolation rules of a conceptual package. pnpm is only a development time dependency. Published packages do not required it to be used.

$ npm install -g pnpm@5

pnpm operates on the concept of workspaces. Most all commands can be passed the --recursive or -r flag to run the command against all packages in every workspace. To install all dependencies of all packages in this repo you can run a single install command

$ pnpm install -r

Packages

  • semantic-release-core - the baseline configuration for defining common release rules, changelog formatting, release commits, etc, that can be applied to all projects independent of their release workflow
  • release-config-npm - Configuration for publishing npm packages and associating a tarball to the final github release

Feature Sets

packagechangelog supportauto versioningnpm publishdocker publishgithub release
release-config-core:heavy_check_mark::heavy_check_mark::x::x::heavy_check_mark:
release-config-npm:heavy_check_mark::heavy_check_mark::heavy_check_mark::x::heavy_check_mark:

Testing

All testing is isolated in each respective package and run in isolation. All tests can be run in parallel with a recursive pnpm command

$ pnpm run -r test

Authors