Code Monkey home page Code Monkey logo

specified-package-version-check's Introduction

specified-package-version-check

[ENGLISH] | 中文

Introduce

specified-package-version-check is a script which can check the specified package version is outdated or not, if outdated, develop env process will be exist.

For some case, e.g. our team develop ourselves eslint rules as a npm package, if we update the npm package version, we hope all of our team member must use the latest npm version.

Usage

// Run this script first, e.g. { "start": node check && webpack-dev-server --open --history-api-fallback -d --colors}
//check.js
const checkDependenceVersion = require('specified-package-version-check');

async function func() {
  await checkDependenceVersion({
    dependenceArr: ['axios', 'eslint-config-ts-base'],
    useDepCheck: true,
    ignoreCheck: false,
    onlyWarn: false,
    checkAllLocalDependencies: false,
    ignoreSelf: false,
    remoteUrl: '',
  });

  console.log('end');
}

func();

API

Property Description Type Default required Version
dependenceArr dependence need to be checked string[] [] true 1.0.0
ignoreCheck skip check boolean undefined false 1.0.0
onlyWarn only warn when specified package outdated boolean false false 1.0.0
checkAllLocalDependencies check all packages version in package.json boolean undefined false 1.0.0
ignoreSelf ignore check @shuyun-ep-team/specified-package-version-check boolean undefined false 1.0.0
remoteUrl check specified npm global cli version string https://api-track.kylin.shuyun.com/monitor-service/static/global-package-info.json false 1.0.0
uploadPackageInfoUrl upload package info string https://api-track.kylin.shuyun.com/monitor-service/upload-package-info false 1.2.1
useDepCheck use depcheck to check useless dependencies and miss dependencies boolean undefined false 1.2.1
depcheckOptions refer to https://github.com/depcheck/depcheck#api object {} false 1.2.1
autoFixOutdateDep auto fix outdate specified package boolean true false 1.3.0
silent hide output boolean false false 1.6.0
enableGlobalCliCheck check specified global npm package cli version boolean true false 1.6.0

关于配置文件

Insert the following into script in package.json

{
  "prestart": "npx specified-package-version-check"
}

Command will read current folder's .spvrc.js where package.json is, if not found that file, console would happen an error

//.spvrc.js like as follows
module.exports = {
  dependenceArr: ['eslint-config-ts-base', 'put your deps here...'],
  ignoreCheck: false,
  onlyWarn: false,
  checkAllLocalDependencies: false,
  useDepCheck: true,
  autoFixOutdateDep: true,
};

something about remoteUrl json

json content construct must be as following

{
  "info": [
    {
      "command": "show version command", //e.g. yarn -v
      "name": "package name" //e.g. yarn
    }
  ]
}

specified-package-version-check's People

Contributors

zhoushoujian avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.