New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@xunserver/cli

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xunserver/cli

xs 前端脚手架工具,用于快速生成项目

latest
npmnpm
Version
0.1.17
Version published
Maintainers
1
Created
Source

介绍

xs具有创建项目脚手架、快速生成store、页面、request等的全功能命令行工具, 基于commander实现。参考git命令行实现,[]表示可选的参数,<>表示必填参数。选项支持缩写的形式,所有缩写的选型均是大写。

安装

npm i -g @xunserver/cli

使用

init

初始化项目,默认支持git仓库和npm仓库下载,详情参考命令行提示,-h 或者--help。git仓库默认从xunserver/xunserver-template-xxx 下载,npm 仓库从xunserver-template 下载。

add

lint

通过问询的方式添加项目lint规则,使用会在项目中添加响应的lint规则, 包括eslint、stylelint、prettier、commitlint和editorconfig规则。

build

支持配置文件配置打包细节

pub

通过获取当前目录下的配置文件

配置文件详解

仅支持cjs格式的配置文件,.xsrc.js 或者xs.config.js。 或者通过--config filename 指定配置文件

interface BuildFunction {
  (config: XsConfig): any;
}

interface XsConfig {
  type: 'vue' | 'vue2' | 'react' | 'common';  
  typescript: boolean; // default true
  build: Boolean  | BuildFunction | {  // 默认是webpack配置,会和默认配置合并,支持函数自定义打包和rollup打包
    [key: string]: any
  },
  pub: boolean | Function | {
    git: boolean |  {  // 是否支持自动提交git
      origin?: string;  // 需要上传的仓库名,默认origin
      branch?: string;  // 默认 main
      commitMsg?: string | ((package:any) => string)  // 默认当前 `${packageJson.name} pub ${packageJson.version} + 1`
    },
    npmToken?: string  // npm 发布秘钥,如果未配置,从APP_NPM_TOKEN获取
  },
  server: {  // 如果type是
    [key: string]: any
  }
}

Keywords

cli

FAQs

Package last updated on 29 Sep 2022

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