Package detail

@invisible/publish

invisible-tech13MIT2.0.4

Asserts a version bump and publishes your package to npm automatically

readme

@invisible/publish

CircleCI

Asserts a version bump and publishes your package to npm automatically.

Install

yarn add -D @invisible/publish
# or
npm install -D @invisible/publish

Usage

Programmatically

'use strict'

const {
  assertVersionBump,
  publish,
} = require('@invisible/publish')

const newRelease = async () => {
  {
    // fileName defaults to 'package.json' if no argument given.
    // This method return a promise of an object with pass and msg as keys.
    const { pass, msg } = await assertVersionBump({ fileName: 'package.json' })
    // You can process the results as you wish. As an example, you can consume it like below:
    if (msg) console.log(`assert-version-bump: ${msg}`)
    if (! pass) process.exit(1)
  }

  {
    const { NPM_TOKEN, NPMRC_DIR } = process.env

    // NPMRC_DIR defaults to 'process.env.HOME' if no argument given.
    // This method return an object with pass and msg as keys.
    const { pass, msg } = publish({ NPM_TOKEN, NPMRC_DIR })
    // You can process the results as you wish. As an example, you can consume it like below:
    if (msg) console.log(`publish: ${msg}`)
    if (pass) process.exit(0)
    process.exit(1)
  }
}
newRelease()

Hook Scripts

assert-version-bump

Add assert-version-bump to your package posttest script in package.json:

// It would look something like:
  "scripts": {
    "posttest": "assert-version-bump"
  }

You can also run it at any time from your CLI.

$ assert-version-bump # will output the change if found
$ assert-version-bump --quiet # will silently succeed, but output error if not found
  • OPTIONAL: you can pass the filename as argument to assert version bump. Defaults to package.json
    "scripts": {
      "posttest": "assert-version-bump manifest.json"
    }
    

publish

  • Add publish to the commands on deployment section of your package circle.yml:
    # It would look something like:
    deployment:
    release:
      branch: master
      commands:
        - publish
    
    NPM_TOKEN environmental variable is required for publishing. See Miscellaneous Information to know options on how to add it.

You can also run it at any time from your CLI. Just make sure you are on master branch and have a ~/.npmrc file with a valid token.

$ publish
$ publish --quiet # will silently succeed, but output error.

Miscellaneous Information

  • Add NPM_TOKEN environmental variable to your package on circleCI.

    To do this you will have to:

    • Go to https://circleci.com/gh/invisible-tech/<your-package-name>/edit#env-vars (replace \<your-package-name\>, e.g. merge-parsers)
    • Click on Import Variable(s).
    • Select NPM_TOKEN.
      • If you don't have permission to do that, ask your superior to do it!
  • You can add NPM_TOKEN to your .env file and install dotenv as dependency/devDependency.

Troubleshooting

If you are having problems, it probably is because you don't have your package .bin folder set on PATH.

machine:
  environment:
    # For yarn
    PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"

Known Issues

assert-version-bump does not work on the first PR because it asserts through diff of HEAD and last merge commit.

TODO

Make assert-version-bump work since first PR.

LICENSE

MIT

changelog

Changelog

All notable changes to this project will be documented in this file.

2.0.4 - 2018-12-25

Internal

  • Fix changelog file itself

2.0.3 - 2018-12-25

Internal

  • Fix circleci config

2.0.2 - 2018-12-25

Internal

  • Upgrade dependencies
  • Migrate from yarn to npm

2.0.1 - 2018-02-20

Internal

  • Update pacote dependency.
  • Add Known Issues to README

2.0.0 - 2017-10-24

Feat

  • Make assertVersionBump check current version on npm.
  • Refact: programatically usage.

Breaking Changes

  • Programatically assertVersionBump does not throw anymore, otherwise it returns a promise of an object with pass and msg as keys.
  • Programatically publish does not return a boolean anymore, otherwise it returns an object with pass and msg as keys.

1.3.1 - 2017-11-02

Chore

  • Check if .npmrc is present and if true, do not overwrite.

1.3.0 - 2017-10-26

Feat

  • Export assertVersionBump and publish for programatically usage.
  • Optionally loads dotenv if it is present.

1.2.0 - 2017-10-25

Feat

  • Add currentBranch method.
  • Removed unused file.

1.1.9 - 2017-10-18

Refact

  • Removed unused dependencies
  • Use changelog-update package.