@lite-v3/locky

1.0.1 • Public • Published

@lite-v3/locky

A handy engine version validator. Tiny and has no dependencies.

By TokopediaVersion

Install

pnpm install @lite-v3/locky --dev

Usage

CLI

@lite-v3/locky is suitable to apply at preinstall script. Safely runs your installation script by validating your engine version requirements.

// <root>/package.json
{
    ...
    "scripts" : {
       "preinstall": "npx @lite-v3/locky --quite"
    },
    ...
    "engines": {
        "node": ">=14.17 <15",
        "pnpm": ">=4"
    }
}

Behind the scene, locky will compare your installed node and pnpm version with the specified version in root package.json. If the requirement is not satisfied, rather than logging with warnings, locky will throw the error. The purpose is we make a pre-validation process to isolate the depenencies of your specific version.

The script also ensure you are correctly using pnpm rather than other package managers.

API

    const checkEngine = require('@lite-v3/locky');

    try {
        checkEngine();
        // requirement is satisfied
    } catch {
        // requirement is not satisfied
    }

Code By WPE Team @Tokopedia

Readme

Keywords

none

Package Sidebar

Install

npm i @lite-v3/locky

Weekly Downloads

642

Version

1.0.1

License

none

Unpacked Size

10.6 kB

Total Files

4

Last publish

Collaborators

  • miqdadfwz
  • maafaishal-tkpd
  • 1nd
  • skipper.team