ci-mp-wx
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

ci-mp-wx

微信小程序 CI 工具。

npm

安装

yarn add ci-mp-wx -D

配置

项目根目录创建配置文件:ci-mp-wx.config.ts

import { CIMpWXConfig } from 'ci-mp-wx';

// 详细配置项含义参考 https://www.npmjs.com/package/miniprogram-ci
const config: CIMpWXConfig = {
  project: {
    appid: '',
    type: 'miniProgram', // 项目类型
    projectPath: 'dist/build/mp-weixin', // 生产环境代码路径
    privateKeyPath: 'private.key', // 代码上传密钥文件路径
    ignores: ['node_modules/**/*'],
  },
  upload: {
    setting: {
      es6: true,
      es7: true,
      minify: true,
      minifyJS: true,
      minifyWXML: true,
      minifyWXSS: true,
      autoPrefixWXSS: true,
    },
    onProgressUpdate: console.log,
  },
};

export default config;

用法

构建之后执行 ci-mp-wx 脚本。

"scripts": {
    "build:mp-weixin": "uni build -p mp-weixin && ci-mp-wx",
}

Package Sidebar

Install

npm i ci-mp-wx

Weekly Downloads

3

Version

1.0.1

License

MIT

Unpacked Size

6.88 kB

Total Files

5

Last publish

Collaborators

  • bit2byte