JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1789
  • Score
    100M100P100Q122308F
  • License MIT

A library for code common to my various NodeJS/Browser projects.

Package Exports

  • @dan-schel/js-utils

Readme

My JS Utils

codecov

A library for code common to my various NodeJS/Browser projects.

Bump check

This package includes a bump-check script which is useful if you're writing an NPM package and you want your CI to ensure the feature branch bumps the version in package.json before being merged.

To use it, include the following in your package.json:

"scripts": {
  "bump-check": "bump-check"
}

You can also configure it to ignore branches based on regex, e.g.:

"scripts": {
  "bump-check": "bump-check --ignore \"^renovate\\/\""
}