New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

astore-builder

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astore-builder

astore构建基础服务

  • 0.1.9
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-88%
Maintainers
3
Weekly downloads
 
Created
Source

pegasus-builder

构建器依赖的相关基础服务

模块 seed 依赖计算

const { seed } = require('@ali/pegasus-builder');

const packages = {
  '@ali/universal-env': '^1.1.10',
  'rax-text': '*',
  'rax-view': '^0.6.5',
  '@ali/mui-zepto': '5.0.x',
  '@ali/pmod-fedata': '5.0.9999',
  '@ali/pcom-page-error': '*',
  '@ali/pi-kissy-pc': '*'
};
seed(packages).then(res => {
  //{seed:{}, unpublished:[]}
  console.log(res);
});

模块预发发布版本计算服务

const { beta } = require('@ali/pegasus-builder');

const name = '@ali/tnpm-beta-test';
const version = '1.1.0';
const notfound = '1.2.0';

beta(name, version).then(betaVersion => {
  // 1.1.0-beta.2
  console.log(betaVersion);
});

beta(name, notfound).then(betaVersion => {
  // 1.2.0-beta.0
  console.log(betaVersion);
});

FAQs

Package last updated on 27 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc