Skip to content

A library for use on Modern Tribe service projects

License

Notifications You must be signed in to change notification settings

the-events-calendar/tribe-libs

 
 

Repository files navigation

Tribe Libs is a collection of libraries created by Modern Tribe for use with Square One-based WordPress projects. It is required by the Square One core plugin.

Installation

composer require moderntribe/tribe-libs

Usage

All usage documentation lives in the Square One repository.

Support

Usage of Tribe Libs is not actively supported by Modern Tribe outside of client contracts. Pull requests and suggestions are welcome and will be addressed based on business need.

Release Process

This library comprises a large collection of smaller libraries that can be included in whole or in part on Square One projects. These libraries are developed following the monorepo model. All changes are committed to this, the parent project. Maintenance of the individual packages is managed using the Monorepo Builder utility.

Releasing a new version

  1. Ensure that all code for the release is merged to master
  2. Ensure that all updates for the release are logged in CHANGELOG.md
  3. Run the release script, with the version number for the release (format: v<major>.<minor>.<patch>):
    ./monorepo.sh release v3.0.0
    
  4. The script will handle several steps for you automatically:
    1. Set any package interdependencies to the new version
    2. Update CHANGELOG.md with the appropriate version number
    3. Create the git tag and push it to GitHub
    4. Bump the master branch version to the next minor version number
  5. When the tag is pushed to GitHub, an Action there will automatically split the monorepo and deploy the tag to all of the package repos. (Note: The GH Action will run as a bot user with appropriate permissions to write to all of the package repositories. Those repositories are read-only for normal usage.)

Adding Packages

  1. Create a new directory for the package in src. Create your code there, include an independent composer.json for the package (you can copy the sample), and commit it to tribe-libs.
  2. Create an empty public GitHub repository for the package (you probably need to be an org admin to complete this step). Follow the naming convention moderntribe/square1-*. Ensure that the user tr1b0t has write access to the repo. Use the script dev/monorepo/scripts/create-package-repo.sh to create the repo and add the tr1b0t user automatically.
    ./dev/monorepo/scripts/create-package-repo.sh square1-my-new-repo
    
  3. Add the directory and repo to the directories_to_repositories map in monorepo-builder.yml.
  4. Run the script to merge the package composer.json files to the root composer.json file:
    ./monorepo.sh merge
    
  5. After the next release, Register the package on Packagist.

Adding Composer Dependencies

  1. Add the dependency to composer.json in the package(s) that needs it.
  2. Run the merge command to merge dependencies up to the root composer.json
    ./monorepo.sh merge
    

Update the development version

You will rarely need to do this, but it is documented here just in case.

  1. Set the master branch alias for all packages
    ./monorepo.sh set-alias 3.0
    
  2. Bump the interdependencies among the packages to the same version.
    ./monorepo.sh bump-interdependency "^3.0"
    

Run a release without GitHub Actions

A release should be automatically deployed to all package repos by GitHub Actions whenever a tag is pushed to GitHub. That is really just running this command (but with appropriate permissions to push to all repos):

./monorepo.sh split --tag="v3.0.0"

Your GitHub user must have write access to all of the square1-* repositories to complete this successfully (this is why we have the GitHub Action).

About

A library for use on Modern Tribe service projects

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 98.9%
  • Other 1.1%