npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@futureverse/nx-semantic-release-sync

v0.12.1

Published

[nx](https://nx.dev/) plugin for automated releases, powered by [semantic-release](https://github.com/semantic-release/semantic-release)

Downloads

598

Readme

@futureverse/nx-semantic-release-sync

nx plugin for automated releases, powered by semantic-release

How it works

Under the hood, it uses project graph from nx to analyze commits for every configured project and filters out these commits that doesn't affect given project or it's dependencies.

Installation

Run:

npm install -D @futureverse/nx-semantic-release-sync

Usage

In order to release your projects, add this executor to your configuration file (ex. project.json) in the workspace level, for those who want multiple projects with the same version number, the configuration will looks like this:

{
  "semantic-release": {
    "executor": "@futureverse/nx-semantic-release-sync:semantic-release",
    "options": {
      "projects": [
        {
          "name": "app1",
          "outputPath": "dist/libs/app1",
          "importPath": "@futureverse/app1"
        },
        {
          "name": "app2",
          "outputPath": "dist/libs/app2",
          "importPath": "@futureverse/app2"
        }
      ],
      "github": true,
      "changelog": true,
      "npm": true,
      "changelogFile": "./CHANGELOG.md",
      "tagFormat": "apps-v${VERSION}"
    }
  }
}

If you want to manage the projects independently, the configuration will looks like this:

{
  "semantic-release-app1": {
    "executor": "@futureverse/nx-semantic-release-sync:semantic-release",
    "options": {
      "projects": [
        {
          "name": "app1",
          "outputPath": "dist/libs/app1",
          "importPath": "@futureverse/app1"
        }
      ],
      "github": true,
      "changelog": true,
      "npm": true,
      "changelogFile": "./CHANGELOG.md",
      "tagFormat": "apps-v${VERSION}"
    }
  },
  "semantic-release-app2": {
    "executor": "@futureverse/nx-semantic-release-sync:semantic-release",
    "options": {
      "projects": [
        {
          "name": "app2",
          "outputPath": "dist/libs/app2",
          "importPath": "@futureverse/app2"
        }
      ],
      "github": true,
      "changelog": true,
      "npm": true,
      "changelogFile": "./CHANGELOG.md",
      "tagFormat": "apps-v${VERSION}"
    }
  }
}

After running this, the executor will do the following:

  • Filter commits retrieved by semantic-release in order to find only these that affects selected project or it's dependencies.
  • Perform semantic-release using following plugins (in this order:)
    • @semantic-release/commit-analyzer
    • @semantic-release/release-notes-generator
    • @semantic-release/changelog
    • @semantic-release/npm
    • @semantic-release/git
    • @semantic-release/github
  • The result will be a fully versioned project. If you are releasing it as npm package, the package will be built, version in package.json will be updated and package itself will be published.

Configuration

Options can be configured in 3 ways:

  1. cli: Passing them on the cli command
  2. config file: Including them in a global nxrelease config file in the root of your monorepo (see below)
  3. project: Within the options section of the executor for each project (project.json)

Multiple configurations are fully supported, allowing for global configuration options in the config file and then project specific overrides in the project.json. Options merged in the following order of precedence:

cli flags > project > config file > defaults

Note: Object/Array type options are shallowly merged. For example, if gitAssets is set in both the config file and the project options, the whole of the project options version will be used and the config file option will be discarded.

Configuration file

nx-semantic-release's options can be set globally via either:

  • a nxrelease key in the project's package.json file
  • a .nxreleaserc file, written in YAML or JSON, with optional extensions: .yaml/.yml/.json/.js
  • a nxrelease.config.js file that exports an object

The following examples are all the same.

  • Via nxrelease key in the monorepo package.json file:
{
  "nxrelease": {
    "repositoryUrl": "https://github.com/futureverse/nx-semantic-release-sync"
  }
}
  • Via .nxreleaserc YAML file:
---
repositoryUrl: 'https://github.com/futureverse/nx-semantic-release-sync'
  • Via nxrelease.config.js file:
module.exports = {
  repositoryUrl: 'https://github.com/futureverse/nx-semantic-release-sync',
}
  • Via CLI arguments:
$ nx semantic-release app-c --repositoryUrl "https://github.com/futureverse/nx-semantic-release-sync"

Available Options

| name | type | default | required | description | | -------------- | ------------------ | ----------------------------------------------------------------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | dryRun | boolean | false | no | See what commands would be run, without committing to git or updating files | | projects | object | {} | yes | define which projects should be shared the same version | | ci | boolean | true | no | Set to false to skip CI checks. | | changelog | boolean | true | no | Whether to generate changelog. | | changelogFile | string | ${PROJECT_DIR}/CHANGELOG.md | yes | Path to changelog file. | | repositoryUrl | string | repositoryUrl | no | The URL of the repository to release from. | | tagFormat | string | ${PROJECT_NAME}-v${version} | no | Tag format to use. You can refer to semantic-release configuration | | npm | boolean | true | no | Whether to bump package.json version and publish to registry (if package is public). | | git | boolean | true | no | Whether to create git commit and tag. See more in @semantic-release/git. | | github | boolean | true | no | Whether to create github release. | | githubOptions | object | {} | no | Options for @semantic-release/github plugin | | buildTarget | string | | no | The target of the build command. If your package is public and you want to release it to npm as part of release, you have to provide it. Plugin will use it to build your package and set version in package.json before releasing it to npm registry. | | outputPath | string | ${WORKSPACE_DIR}/<outputPath from options of the specified buildTarget> | no | The path to the output directory. Provide that if your package is public and you want to publish it into npm. | | commitMessage | string | chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes} | no | The commit message to use when committing the release. You can refer to @semantic-release/git. | | gitAssets | string[] | | no | Path to additional assets that will be commited to git with current release. | | plugins | PluginSpec[] | | no | Additional plugins for semantic-release. Note: these plugins will be added before @semantic-release/git, which means that you can assets generated by them to git as well. Supports the same format as semantic-release | | branches | BranchSpec[] | | no | Branches configuration for workflow release. Supports the same format as semantic-release | | packageJsonDir | string | ${PROJECT_DIR} | no | Path to package.json file (usable only if npm is true). Note: it should point to directory in which package.json can be found, not to file itself. | | parserOpts | object | | no | Parser options used by commit-analyzer and @semantic-release/release-notes-generator and @semantic-release/changelog | | writerOpts | object | | no | Writer options used by commit-analyzer and @semantic-release/release-notes-generator | | linkCompare | boolean | true | no | Whether to include a link to compare changes since previous release in the release note. | | linkReferences | boolean | true | no | Whether to include a link to issues and commits in the release note. | | releaseRules | string or object[] | | no | Release rules are used when deciding if the commits since the last release warrant a new release. Supports the same format as @semantic-release/commit-analyzer |

Available Tokens

| Token | Expands into | | ----------------------- | -------------------------------------------------------------------------------------------------- | | ${RELATIVE_PROJECT_DIR} | Resolves to the current project relative directory within the current workspace (ex. apps/app-a) | | ${PROJECT_DIR} | Resolves to the current project directory (ex. /Users/futureverse/nx-monorepo/apps/app-a) | | ${PROJECT_NAME} | Resolves to the current project name (ex. app-a) | | ${WORKSPACE_DIR} | Resolves to the current workspace directory (ex. /Users/futureverse/nx-monorepo) |

Every available option support tokens - this included nested objects and arrays.

You may see other tokens like ${nextRelease.version}, those are tokens that are replaced by semantic-release itself.

*: The replacement of tokens in plugins only occurs for plugins which are specified with options, using semantic-release's syntax For example:

plugins: [
            '@fake/plugin-without-options1',
            [
              '@semantic-release/exec',
              {
                prepareCmd: 'cp LICENSE dist/packages/${PROJECT_NAME} && cp README.md dist/packages/${PROJECT_NAME}',
                execCwd: '${WORKSPACE_DIR}',
                fakeStringArrayOption: ['${WORKSPACE_DIR}/src', '${WORKSPACE_DIR}/dist'],
                fakeBooleanOption: true,
                fakeNumberOption: 10
              }
            ],
            '@fake/plugin-without-options2',
        ]

In above example, tokens will be replaced only for @semantic-release/exec plugin, and only for its string|string[] options, others will be left untouched.

Build target

By setting buildTarget option plugin will run your build executor as part of the release, which is useful if ex. you want to publish released package to npm registry.

Skipping commits

You can skip commits for given projects using [skip $PROJECT_NAME] in its body. Ex:

  feat: update something

  [skip my-app1]
  [skip my-app2]

During analysis this commit will be skipped for release pipeline for my-app1, my-app2. You can also use [skip all] to skip commit for all projects or one single [skip my-app1, my-app2] to skip commits related to my-app1, my-app2 at once.


Alternatively you can include only particular projects in given commit by using [only $PROJECT_NAME]. Ex:

  feat: update something

  [only my-app1]
  [only my-app2]

During analysis this commit will be included only for release pipeline for my-app, my-app2. You can also use one single [skip my-app1, my-app2] to skip commits related to my-app1, my-app2 at once.

Releasing multiple apps/libraries at once

You can release multiple apps/libraries at once by using nx run-many:

npx nx run-many --target=semantic-release --parallel=false

Note: --parallel=false is required to run tasks sequentially, otherwise nx run-many will run tasks in parallel and semantic-release will fail.

Gitlab support

In order to use this plugin on Gitlab, install @semantic-release/[email protected] (>= 10.0.0 is not supported for now due to ES format) and set the following in your configuration file:

{
  "plugins": ["@semantic-release/gitlab"],
  "github": false
}

CI/CD

Example of GitHub actions workflow:

name: default

on:
  push:
    branches:
      - 'master'

jobs:
  release:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: configure git
        run: |
          git config user.name "${GITHUB_ACTOR}"
          git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"

      - run: npm ci

      - run: npx nx run my-app:semantic-release
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}