lightercollective

a basic postinstall only binary based on package.json collective info

ISC 8 个版本
安装
npm install lightercollective
yarn add lightercollective
pnpm add lightercollective
bun add lightercollective
README

lightercollective

donate

A lighter opencollective postinstall alternative.

Project Goal

Show all necessary info to help contributing to relative Open Collective projects, without bringing in the entirety of the opencollective CLI as dependency (an overhead of 24MB vs 4K in total for this package).

How To

If your package.json contains, as example, these entries:

{
  "name": "hyperhtml",
  "scripts": {
    "postinstall": "opencollective postinstall"
  },
  "dependencies": {
    "opencollective": "^1.0.3"
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/hyperhtml",
    "logo": "https://opencollective.com/hyperhtml/logo.txt"
  }
}

all you need to do is to replace postinstall and dependencies with lightercollective.

{
  "name": "hyperhtml",
  "scripts": {
    "postinstall": "lightercollective"
  },
  "dependencies": {
    "lightercollective": "^0.0.0"
  },
  "collective": {
    "type": "opencollective",
    "url": "https://opencollective.com/hyperhtml",
    "logo": "https://opencollective.com/hyperhtml/logo.txt"
  }
}

Disabling this message

In some places (e.g. CI) you may want to disable this output. You can do this by setting the environment variable DISABLE_OPENCOLLECTIVE=true, where true could also be 1, yes, or y.

This message will not be shown if npm's log level is set to silent (--silent), warn (--quiet), or error (--loglevel error).

版本列表
0.3.1 2021-07-02
0.3.0 2019-04-18
0.2.0 2019-01-09
0.1.0 2018-07-12
0.0.3 2018-02-05
0.0.2 2018-01-26
0.0.1 2018-01-26
0.0.0 2018-01-26